diff --git a/Account/Group.php b/Account/Group.php
index 62e8a9600..aff3c45d2 100644
--- a/Account/Group.php
+++ b/Account/Group.php
@@ -120,6 +120,8 @@ class Group implements ArrayableInterface, \JsonSerializable
* Set group name.
*
* @param string $name Group name
+ *
+ * @return void
*
* @since 1.0.0
*/
@@ -144,6 +146,8 @@ class Group implements ArrayableInterface, \JsonSerializable
* Set group description.
*
* @param string $description Group description
+ *
+ * @return void
*
* @since 1.0.0
*/
@@ -168,12 +172,19 @@ class Group implements ArrayableInterface, \JsonSerializable
* Set group status.
*
* @param int $status Group status
+ *
+ * @return void
+ *
+ * @throws InvalidEnumValue
*
* @since 1.0.0
*/
public function setStatus(int $status) /* : void */
{
- // todo: check valid
+ if (!GroupStatus::isValidValue($status)) {
+ throw new InvalidEnumValue($status);
+ }
+
$this->status = $status;
}
diff --git a/ApplicationAbstract.php b/ApplicationAbstract.php
index f83918380..b0851a686 100644
--- a/ApplicationAbstract.php
+++ b/ApplicationAbstract.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -16,6 +16,10 @@ namespace phpOMS;
/**
* Application class.
+ *
+ * This class contains all necessary application members. Access to them
+ * is restricted to write once in order to prevent manipulation
+ * and afterwards read only.
*
* @property mixed orgId
* @property string appName
@@ -31,7 +35,7 @@ namespace phpOMS;
* @property \phpOMS\Account\AccountManager accountManager
* @property \phpOMS\Log\FileLogger logger
*
- * @package Framework
+ * @package phpOMS
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
diff --git a/AutoloadException.php b/AutoloadException.php
index 9f600c372..d11571527 100644
--- a/AutoloadException.php
+++ b/AutoloadException.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -15,9 +15,11 @@ declare(strict_types = 1);
namespace phpOMS;
/**
- * Permission exception class.
+ * Autoloader exception
+ *
+ * This exception is thrown if a file couldn't be autoloaded
*
- * @package Framework
+ * @package phpOMS
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
diff --git a/Autoloader.php b/Autoloader.php
index 6ed4d7baf..8bb33c460 100644
--- a/Autoloader.php
+++ b/Autoloader.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -19,7 +19,7 @@ spl_autoload_register('\phpOMS\Autoloader::default_autoloader');
/**
* Autoloader class.
*
- * @package Framework
+ * @package phpOMS
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
diff --git a/Uri/Http.php b/Uri/Http.php
index fbf21cc64..0da3010c8 100644
--- a/Uri/Http.php
+++ b/Uri/Http.php
@@ -335,7 +335,8 @@ class Http implements UriInterface
*/
public function getAuthority() : string
{
- return ($this->getUser() !== '' ? $this->getUser() . '@' : '') . $this->host . (isset($this->port) && $this->port !== 0 ? ':' . $this->port : '');
+ return ($this->getUser() !== '' ? $this->getUser() . '@' : '') . $this->host
+ . (isset($this->port) && $this->port !== 0 ? ':' . $this->port : '');
}
/**
diff --git a/Utils/ArrayUtils.php b/Utils/ArrayUtils.php
index 74a93fd6c..ab93a4a6e 100644
--- a/Utils/ArrayUtils.php
+++ b/Utils/ArrayUtils.php
@@ -264,7 +264,7 @@ class ArrayUtils
*
* @since 1.0.0
*/
- public static function arrayToCSV(array $data, string $delimiter = ';', string $enclosure = '"', string $escape = '\\') : string
+ public static function arrayToCsv(array $data, string $delimiter = ';', string $enclosure = '"', string $escape = '\\') : string
{
$outstream = fopen('php://memory', 'r+');
/** @noinspection PhpMethodParametersCountMismatchInspection */
diff --git a/Utils/Barcode/C128Abstract.php b/Utils/Barcode/C128Abstract.php
index cfe4f3303..316c47152 100644
--- a/Utils/Barcode/C128Abstract.php
+++ b/Utils/Barcode/C128Abstract.php
@@ -308,9 +308,23 @@ abstract class C128Abstract
$cur_size = $location + (int) (substr($codeString, ($position - 1), 1));
if ($this->orientation === OrientationType::HORIZONTAL) {
- imagefilledrectangle($image, $location + $this->margin, 0 + $this->margin, $cur_size + $this->margin, $dimensions['height'] - $this->margin, ($position % 2 == 0 ? $white : $black));
+ imagefilledrectangle(
+ $image,
+ $location + $this->margin,
+ 0 + $this->margin,
+ $cur_size + $this->margin,
+ $dimensions['height'] - $this->margin,
+ ($position % 2 == 0 ? $white : $black)
+ );
} else {
- imagefilledrectangle($image, 0 + $this->margin, $location + $this->margin, $dimensions['width'] - $this->margin, $cur_size + $this->margin, ($position % 2 == 0 ? $white : $black));
+ imagefilledrectangle(
+ $image,
+ 0 + $this->margin,
+ $location + $this->margin,
+ $dimensions['width'] - $this->margin,
+ $cur_size + $this->margin,
+ ($position % 2 == 0 ? $white : $black)
+ );
}
$location = $cur_size;
diff --git a/Utils/Barcode/C128c.php b/Utils/Barcode/C128c.php
index ceda8f8fa..0a48f7070 100644
--- a/Utils/Barcode/C128c.php
+++ b/Utils/Barcode/C128c.php
@@ -100,7 +100,7 @@ class C128c extends C128Abstract
}
$codeString .= self::$CODEARRAY[$activeKey];
- $checksum += $values[$activeKey] * $checkPos;
+ $checksum += $values[$activeKey] * $checkPos;
$checkPos++;
}
diff --git a/Utils/Barcode/HIBCC.php b/Utils/Barcode/HIBCC.php
index 9a7d8ec63..b02443524 100644
--- a/Utils/Barcode/HIBCC.php
+++ b/Utils/Barcode/HIBCC.php
@@ -25,12 +25,19 @@ namespace phpOMS\Utils\Barcode;
class HIBCC
{
private $identifier = '';
+
private $productId = '';
+
private $measureOfUnit = 0;
+
private $dateFormat = '';
+
private $expirationDate = null;
+
private $productionDate = null;
+
private $lot = '';
+
private $checkValue = 0;
public function __construct()
@@ -98,12 +105,12 @@ class HIBCC
return $this->productionDate;
}
- public function setLOT(string $lot) /* : void */
+ public function setLot(string $lot) /* : void */
{
$this->lot = $lot;
}
- public function getLOT() : string
+ public function getLot() : string
{
return $this->lot;
}
@@ -113,14 +120,13 @@ class HIBCC
return $this->checkValue;
}
- public function getPrimaryDI() : string
+ public function getPrimaryDi() : string
{
return '';
}
- public function getSecondaryDI() : string
+ public function getSecondaryDi() : string
{
return '';
}
-
}
diff --git a/Utils/Barcode/OrientationType.php b/Utils/Barcode/OrientationType.php
index 32f6f41bb..e4a083105 100644
--- a/Utils/Barcode/OrientationType.php
+++ b/Utils/Barcode/OrientationType.php
@@ -27,5 +27,5 @@ use phpOMS\Stdlib\Base\Enum;
abstract class OrientationType extends Enum
{
/* public */ const HORIZONTAL = 0;
- /* public */ const VERTICAL = 1;
+ /* public */ const VERTICAL = 1;
}
diff --git a/Utils/ColorUtils.php b/Utils/ColorUtils.php
index 59aef46bc..608604816 100644
--- a/Utils/ColorUtils.php
+++ b/Utils/ColorUtils.php
@@ -56,7 +56,7 @@ class ColorUtils
*/
public static function rgbToInt(array $rgb) : int
{
- $i = (255 & $rgb['r']) << 16;
+ $i = (255 & $rgb['r']) << 16;
$i += (255 & $rgb['g']) << 8;
$i += (255 & $rgb['b']);
diff --git a/Utils/Compression/CompressionInterface.php b/Utils/Compression/CompressionInterface.php
index bf6d3fc28..d67d2c2ae 100644
--- a/Utils/Compression/CompressionInterface.php
+++ b/Utils/Compression/CompressionInterface.php
@@ -45,4 +45,4 @@ interface CompressionInterface
* @since 1.0.0
*/
public function decompress(string $compressed) : string;
-}
\ No newline at end of file
+}
diff --git a/Utils/Compression/LZW.php b/Utils/Compression/LZW.php
index 1030b8fee..80e58b98f 100644
--- a/Utils/Compression/LZW.php
+++ b/Utils/Compression/LZW.php
@@ -83,19 +83,17 @@ class LZW implements CompressionInterface
if ($dictionary[$k]) {
$entry = $dictionary[$k];
- } else {
- if ($k !== $dictSize) {
- throw new \Exception('Wrong dictionary size!' . $k . '.' . $dictSize);
- }
-
+ } elseif ($k === $dictSize) {
$entry = $w . $w[0];
+ } else {
+ throw new \Exception('Wrong dictionary size!' . $k . '.' . $dictSize);
}
- $result .= $entry;
+ $result .= $entry;
$dictionary[$dictSize++] = $w . $entry[0];
$w = $entry;
}
return $result;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Converter/AngleType.php b/Utils/Converter/AngleType.php
index 7be463e0f..49f353a13 100644
--- a/Utils/Converter/AngleType.php
+++ b/Utils/Converter/AngleType.php
@@ -26,14 +26,14 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class AngleType extends Enum
{
- /* public */ const DEGREE = 'deg';
- /* public */ const RADIAN = 'rad';
- /* public */ const SECOND = 'arcsec';
- /* public */ const MINUTE = 'arcmin';
- /* public */ const MILLIRADIAN_US = 'mil (us ww2)';
- /* public */ const MILLIRADIAN_UK = 'mil (uk)';
+ /* public */ const DEGREE = 'deg';
+ /* public */ const RADIAN = 'rad';
+ /* public */ const SECOND = 'arcsec';
+ /* public */ const MINUTE = 'arcmin';
+ /* public */ const MILLIRADIAN_US = 'mil (us ww2)';
+ /* public */ const MILLIRADIAN_UK = 'mil (uk)';
/* public */ const MILLIRADIAN_USSR = 'mil (ussr)';
/* public */ const MILLIRADIAN_NATO = 'mil (nato)';
- /* public */ const GRADIAN = 'g';
- /* public */ const CENTRAD = 'crad';
+ /* public */ const GRADIAN = 'g';
+ /* public */ const CENTRAD = 'crad';
}
diff --git a/Utils/Converter/AreaType.php b/Utils/Converter/AreaType.php
index 938c22502..c8cac87d2 100644
--- a/Utils/Converter/AreaType.php
+++ b/Utils/Converter/AreaType.php
@@ -26,17 +26,17 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class AreaType extends Enum
{
- /* public */ const SQUARE_FEET = 'ft';
- /* public */ const SQUARE_METERS = 'm';
- /* public */ const SQUARE_KILOMETERS = 'km';
- /* public */ const SQUARE_MILES = 'mi';
- /* public */ const SQUARE_YARDS = 'yd';
- /* public */ const SQUARE_INCHES = 'in';
+ /* public */ const SQUARE_FEET = 'ft';
+ /* public */ const SQUARE_METERS = 'm';
+ /* public */ const SQUARE_KILOMETERS = 'km';
+ /* public */ const SQUARE_MILES = 'mi';
+ /* public */ const SQUARE_YARDS = 'yd';
+ /* public */ const SQUARE_INCHES = 'in';
/* public */ const SQUARE_MICROINCHES = 'muin';
/* public */ const SQUARE_CENTIMETERS = 'cm';
- /* public */ const SQUARE_MILIMETERS = 'mm';
+ /* public */ const SQUARE_MILIMETERS = 'mm';
/* public */ const SQUARE_MICROMETERS = 'micron';
- /* public */ const SQUARE_DECIMETERS = 'dm';
- /* public */ const HECTARES = 'ha';
- /* public */ const ACRES = 'ac';
+ /* public */ const SQUARE_DECIMETERS = 'dm';
+ /* public */ const HECTARES = 'ha';
+ /* public */ const ACRES = 'ac';
}
diff --git a/Utils/Converter/Currency.php b/Utils/Converter/Currency.php
index a4e1939c6..cd6217982 100644
--- a/Utils/Converter/Currency.php
+++ b/Utils/Converter/Currency.php
@@ -105,7 +105,7 @@ class Currency
}
- $node = $xml->Cube->Cube->Cube;
+ $node = $xml->Cube->Cube->Cube;
self::$ecbCurrencies = [];
foreach ($node as $key => $value) {
diff --git a/Utils/Converter/EnergyPowerType.php b/Utils/Converter/EnergyPowerType.php
index 5fd6cb7a0..3768f3fe9 100644
--- a/Utils/Converter/EnergyPowerType.php
+++ b/Utils/Converter/EnergyPowerType.php
@@ -28,11 +28,11 @@ abstract class EnergyPowerType extends Enum
{
/* public */ const KILOWATT_HOUERS = 'kWh';
/* public */ const MEGAWATT_HOUERS = 'MWh';
- /* public */ const KILOTONS = 'kt';
- /* public */ const JOULS = 'J';
- /* public */ const CALORIES = 'Cal';
- /* public */ const BTU = 'BTU';
- /* public */ const KILOJOULS = 'kJ';
- /* public */ const THERMEC = 'thmEC';
- /* public */ const NEWTON_METERS = 'Nm';
+ /* public */ const KILOTONS = 'kt';
+ /* public */ const JOULS = 'J';
+ /* public */ const CALORIES = 'Cal';
+ /* public */ const BTU = 'BTU';
+ /* public */ const KILOJOULS = 'kJ';
+ /* public */ const THERMEC = 'thmEC';
+ /* public */ const NEWTON_METERS = 'Nm';
}
diff --git a/Utils/Converter/FileSizeType.php b/Utils/Converter/FileSizeType.php
index bd0fcfb07..c937336c0 100644
--- a/Utils/Converter/FileSizeType.php
+++ b/Utils/Converter/FileSizeType.php
@@ -27,13 +27,13 @@ use phpOMS\Stdlib\Base\Enum;
abstract class FileSizeType extends Enum
{
/* public */ const TERRABYTE = 'TB';
- /* public */ const GIGABYTE = 'GB';
- /* public */ const MEGABYTE = 'MB';
- /* public */ const KILOBYTE = 'KB';
- /* public */ const BYTE = 'B';
- /* public */ const TERRABIT = 'tbit';
- /* public */ const GIGABIT = 'gbit';
- /* public */ const MEGABIT = 'mbit';
- /* public */ const KILOBIT = 'kbit';
- /* public */ const BIT = 'bit';
+ /* public */ const GIGABYTE = 'GB';
+ /* public */ const MEGABYTE = 'MB';
+ /* public */ const KILOBYTE = 'KB';
+ /* public */ const BYTE = 'B';
+ /* public */ const TERRABIT = 'tbit';
+ /* public */ const GIGABIT = 'gbit';
+ /* public */ const MEGABIT = 'mbit';
+ /* public */ const KILOBIT = 'kbit';
+ /* public */ const BIT = 'bit';
}
diff --git a/Utils/Converter/Ip.php b/Utils/Converter/Ip.php
index 1ca6560f1..25c5cb9bf 100644
--- a/Utils/Converter/Ip.php
+++ b/Utils/Converter/Ip.php
@@ -36,10 +36,17 @@ class Ip
{
}
+ /**
+ * Convert ip to float
+ *
+ * @param string $ip IP
+ *
+ * @since 1.0.0
+ */
public static function ip2Float(string $ip) : float
{
$split = explode('.', $ip);
return $split[0] * (256 ** 3) + $split[1] * (256 ** 2) + $split[2] * (256 ** 1) + $split[3];
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Converter/LengthType.php b/Utils/Converter/LengthType.php
index 1c3032d31..a36dc2e29 100644
--- a/Utils/Converter/LengthType.php
+++ b/Utils/Converter/LengthType.php
@@ -26,25 +26,25 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class LengthType extends Enum
{
- /* public */ const MILES = 'mi';
- /* public */ const METERS = 'm';
- /* public */ const MICROMETER = 'micron';
- /* public */ const CENTIMETERS = 'cm';
- /* public */ const MILLIMETERS = 'mm';
- /* public */ const KILOMETERS = 'km';
- /* public */ const CHAINS = 'ch';
- /* public */ const FEET = 'ft';
- /* public */ const FURLONGS = 'fur';
- /* public */ const MICROINCH = 'muin';
- /* public */ const INCHES = 'in';
- /* public */ const YARDS = 'yd';
- /* public */ const PARSECS = 'pc';
- /* public */ const UK_NAUTICAL_MILES = 'uk nmi';
- /* public */ const US_NAUTICAL_MILES = 'us nmi';
+ /* public */ const MILES = 'mi';
+ /* public */ const METERS = 'm';
+ /* public */ const MICROMETER = 'micron';
+ /* public */ const CENTIMETERS = 'cm';
+ /* public */ const MILLIMETERS = 'mm';
+ /* public */ const KILOMETERS = 'km';
+ /* public */ const CHAINS = 'ch';
+ /* public */ const FEET = 'ft';
+ /* public */ const FURLONGS = 'fur';
+ /* public */ const MICROINCH = 'muin';
+ /* public */ const INCHES = 'in';
+ /* public */ const YARDS = 'yd';
+ /* public */ const PARSECS = 'pc';
+ /* public */ const UK_NAUTICAL_MILES = 'uk nmi';
+ /* public */ const US_NAUTICAL_MILES = 'us nmi';
/* public */ const UK_NAUTICAL_LEAGUES = 'uk nl';
- /* public */ const NAUTICAL_LEAGUES = 'nl';
- /* public */ const UK_LEAGUES = 'uk lg';
- /* public */ const US_LEAGUES = 'us lg';
- /* public */ const LIGHTYEARS = 'ly';
- /* public */ const DECIMETERS = 'dm';
+ /* public */ const NAUTICAL_LEAGUES = 'nl';
+ /* public */ const UK_LEAGUES = 'uk lg';
+ /* public */ const US_LEAGUES = 'us lg';
+ /* public */ const LIGHTYEARS = 'ly';
+ /* public */ const DECIMETERS = 'dm';
}
diff --git a/Utils/Converter/Numeric.php b/Utils/Converter/Numeric.php
index 6714d4f1e..20b206f54 100644
--- a/Utils/Converter/Numeric.php
+++ b/Utils/Converter/Numeric.php
@@ -31,7 +31,11 @@ class Numeric
* @var array
* @since 1.0.0
*/
- /* public */ const ROMANS = ['M' => 1000, 'CM' => 900, 'D' => 500, 'CD' => 400, 'C' => 100, 'XC' => 90, 'L' => 50, 'XL' => 40, 'X' => 10, 'IX' => 9, 'V' => 5, 'IV' => 4, 'I' => 1];
+ /* public */ const ROMANS = [
+ 'M' => 1000, 'CM' => 900, 'D' => 500, 'CD' => 400, 'C' => 100,
+ 'XC' => 90, 'L' => 50, 'XL' => 40, 'X' => 10,
+ 'IX' => 9, 'V' => 5, 'IV' => 4, 'I' => 1
+ ];
/**
* Constructor.
@@ -72,7 +76,13 @@ class Numeric
$newOutput = 0;
for ($i = 1; $i <= $numberLen; $i++) {
- $newOutput = bcadd((string) $newOutput, bcmul((string) array_search($number[$i - 1], $fromBase), bcpow((string) $fromLen, (string) ($numberLen - $i))));
+ $newOutput = bcadd(
+ (string) $newOutput,
+ bcmul(
+ (string) array_search($number[$i - 1], $fromBase),
+ bcpow((string) $fromLen, (string) ($numberLen - $i))
+ )
+ );
}
return $newOutput;
@@ -136,7 +146,7 @@ class Numeric
foreach (self::ROMANS as $key => $value) {
while (strpos($roman, $key) === 0) {
$result += $value;
- $roman = substr($roman, strlen($key));
+ $roman = substr($roman, strlen($key));
}
}
@@ -159,7 +169,7 @@ class Numeric
$alpha = '';
for ($i = 1; $number >= 0 && $i < 10; $i++) {
- $alpha = chr(0x41 + ($number % pow(26, $i) / pow(26, $i - 1))) . $alpha;
+ $alpha = chr(0x41 + ($number % pow(26, $i) / pow(26, $i - 1))) . $alpha;
$number -= pow(26, $i);
}
diff --git a/Utils/Converter/PressureType.php b/Utils/Converter/PressureType.php
index 63db405fb..911467236 100644
--- a/Utils/Converter/PressureType.php
+++ b/Utils/Converter/PressureType.php
@@ -26,17 +26,17 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class PressureType extends Enum
{
- /* public */ const PASCALS = 'Pa';
- /* public */ const BAR = 'bar';
- /* public */ const POUND_PER_SQUARE_INCH = 'psi';
- /* public */ const ATMOSPHERES = 'atm';
- /* public */ const INCHES_OF_MERCURY = 'inHg';
- /* public */ const INCHES_OF_WATER = 'inH20';
- /* public */ const MILLIMETERS_OF_WATER = 'mmH20';
- /* public */ const MILLIMETERS_OF_MERCURY = 'mmHg';
- /* public */ const MILLIBAR = 'mbar';
+ /* public */ const PASCALS = 'Pa';
+ /* public */ const BAR = 'bar';
+ /* public */ const POUND_PER_SQUARE_INCH = 'psi';
+ /* public */ const ATMOSPHERES = 'atm';
+ /* public */ const INCHES_OF_MERCURY = 'inHg';
+ /* public */ const INCHES_OF_WATER = 'inH20';
+ /* public */ const MILLIMETERS_OF_WATER = 'mmH20';
+ /* public */ const MILLIMETERS_OF_MERCURY = 'mmHg';
+ /* public */ const MILLIBAR = 'mbar';
/* public */ const KILOGRAM_PER_SQUARE_METER = 'kg/m2';
/* public */ const NEWTONS_PER_METER_SQUARED = 'N/m2';
- /* public */ const POUNDS_PER_SQUARE_FOOT = 'psf';
- /* public */ const TORRS = 'Torr';
+ /* public */ const POUNDS_PER_SQUARE_FOOT = 'psf';
+ /* public */ const TORRS = 'Torr';
}
diff --git a/Utils/Converter/SpeedType.php b/Utils/Converter/SpeedType.php
index c1e9776ec..6ef6d81db 100644
--- a/Utils/Converter/SpeedType.php
+++ b/Utils/Converter/SpeedType.php
@@ -26,38 +26,38 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class SpeedType extends Enum
{
- /* public */ const MILES_PER_DAY = 'mpd';
- /* public */ const MILES_PER_HOUR = 'mph';
- /* public */ const MILES_PER_MINUTE = 'mpm';
- /* public */ const MILES_PER_SECOND = 'mps';
- /* public */ const KILOMETERS_PER_DAY = 'kpd';
- /* public */ const KILOMETERS_PER_HOUR = 'kph';
- /* public */ const KILOMETERS_PER_MINUTE = 'kpm';
- /* public */ const KILOMETERS_PER_SECOND = 'kps';
- /* public */ const METERS_PER_DAY = 'md';
- /* public */ const METERS_PER_HOUR = 'mh';
- /* public */ const METERS_PER_MINUTE = 'mm';
- /* public */ const METERS_PER_SECOND = 'ms';
- /* public */ const CENTIMETERS_PER_DAY = 'cpd';
- /* public */ const CENTIMETERS_PER_HOUR = 'cph';
+ /* public */ const MILES_PER_DAY = 'mpd';
+ /* public */ const MILES_PER_HOUR = 'mph';
+ /* public */ const MILES_PER_MINUTE = 'mpm';
+ /* public */ const MILES_PER_SECOND = 'mps';
+ /* public */ const KILOMETERS_PER_DAY = 'kpd';
+ /* public */ const KILOMETERS_PER_HOUR = 'kph';
+ /* public */ const KILOMETERS_PER_MINUTE = 'kpm';
+ /* public */ const KILOMETERS_PER_SECOND = 'kps';
+ /* public */ const METERS_PER_DAY = 'md';
+ /* public */ const METERS_PER_HOUR = 'mh';
+ /* public */ const METERS_PER_MINUTE = 'mm';
+ /* public */ const METERS_PER_SECOND = 'ms';
+ /* public */ const CENTIMETERS_PER_DAY = 'cpd';
+ /* public */ const CENTIMETERS_PER_HOUR = 'cph';
/* public */ const CENTIMETERS_PER_MINUTES = 'cpm';
- /* public */ const CENTIMETERS_PER_SECOND = 'cps';
- /* public */ const MILLIMETERS_PER_DAY = 'mmpd';
- /* public */ const MILLIMETERS_PER_HOUR = 'mmph';
- /* public */ const MILLIMETERS_PER_MINUTE = 'mmpm';
- /* public */ const MILLIMETERS_PER_SECOND = 'mmps';
- /* public */ const YARDS_PER_DAY = 'ypd';
- /* public */ const YARDS_PER_HOUR = 'yph';
- /* public */ const YARDS_PER_MINUTE = 'ypm';
- /* public */ const YARDS_PER_SECOND = 'yps';
- /* public */ const INCHES_PER_DAY = 'ind';
- /* public */ const INCHES_PER_HOUR = 'inh';
- /* public */ const INCHES_PER_MINUTE = 'inm';
- /* public */ const INCHES_PER_SECOND = 'ins';
- /* public */ const FEET_PER_DAY = 'ftd';
- /* public */ const FEET_PER_HOUR = 'fth';
- /* public */ const FEET_PER_MINUTE = 'ftm';
- /* public */ const FEET_PER_SECOND = 'fts';
- /* public */ const MACH = 'mach';
- /* public */ const KNOTS = 'knots';
+ /* public */ const CENTIMETERS_PER_SECOND = 'cps';
+ /* public */ const MILLIMETERS_PER_DAY = 'mmpd';
+ /* public */ const MILLIMETERS_PER_HOUR = 'mmph';
+ /* public */ const MILLIMETERS_PER_MINUTE = 'mmpm';
+ /* public */ const MILLIMETERS_PER_SECOND = 'mmps';
+ /* public */ const YARDS_PER_DAY = 'ypd';
+ /* public */ const YARDS_PER_HOUR = 'yph';
+ /* public */ const YARDS_PER_MINUTE = 'ypm';
+ /* public */ const YARDS_PER_SECOND = 'yps';
+ /* public */ const INCHES_PER_DAY = 'ind';
+ /* public */ const INCHES_PER_HOUR = 'inh';
+ /* public */ const INCHES_PER_MINUTE = 'inm';
+ /* public */ const INCHES_PER_SECOND = 'ins';
+ /* public */ const FEET_PER_DAY = 'ftd';
+ /* public */ const FEET_PER_HOUR = 'fth';
+ /* public */ const FEET_PER_MINUTE = 'ftm';
+ /* public */ const FEET_PER_SECOND = 'fts';
+ /* public */ const MACH = 'mach';
+ /* public */ const KNOTS = 'knots';
}
diff --git a/Utils/Converter/TemperatureType.php b/Utils/Converter/TemperatureType.php
index bf82bd7de..310123028 100644
--- a/Utils/Converter/TemperatureType.php
+++ b/Utils/Converter/TemperatureType.php
@@ -26,12 +26,12 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class TemperatureType extends Enum
{
- /* public */ const CELSIUS = 'celsius';
+ /* public */ const CELSIUS = 'celsius';
/* public */ const FAHRENHEIT = 'fahrenheit';
- /* public */ const KELVIN = 'kelvin';
- /* public */ const REAUMUR = 'reaumur';
- /* public */ const RANKINE = 'rankine';
- /* public */ const DELISLE = 'delisle';
- /* public */ const NEWTON = 'newton';
- /* public */ const ROMER = 'romer';
+ /* public */ const KELVIN = 'kelvin';
+ /* public */ const REAUMUR = 'reaumur';
+ /* public */ const RANKINE = 'rankine';
+ /* public */ const DELISLE = 'delisle';
+ /* public */ const NEWTON = 'newton';
+ /* public */ const ROMER = 'romer';
}
diff --git a/Utils/Converter/TimeType.php b/Utils/Converter/TimeType.php
index ecb6b45c2..2bd2ecb78 100644
--- a/Utils/Converter/TimeType.php
+++ b/Utils/Converter/TimeType.php
@@ -27,12 +27,12 @@ use phpOMS\Stdlib\Base\Enum;
abstract class TimeType extends Enum
{
/* public */ const MILLISECONDS = 'ms';
- /* public */ const SECONDS = 's';
- /* public */ const MINUTES = 'i';
- /* public */ const HOURS = 'h';
- /* public */ const DAYS = 'd';
- /* public */ const WEEKS = 'w';
- /* public */ const MONTH = 'm';
- /* public */ const QUARTER = 'q';
- /* public */ const YEAR = 'y';
+ /* public */ const SECONDS = 's';
+ /* public */ const MINUTES = 'i';
+ /* public */ const HOURS = 'h';
+ /* public */ const DAYS = 'd';
+ /* public */ const WEEKS = 'w';
+ /* public */ const MONTH = 'm';
+ /* public */ const QUARTER = 'q';
+ /* public */ const YEAR = 'y';
}
diff --git a/Utils/Converter/VolumeType.php b/Utils/Converter/VolumeType.php
index 3c8cbd75a..7e1e39eba 100644
--- a/Utils/Converter/VolumeType.php
+++ b/Utils/Converter/VolumeType.php
@@ -26,42 +26,42 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class VolumeType extends Enum
{
- /* public */ const UK_GALLON = 'UK gal';
- /* public */ const US_GALLON_LIQUID = 'US gal lqd';
- /* public */ const US_GALLON_DRY = 'US gal dry';
- /* public */ const UK_PINT = 'pt';
- /* public */ const US_PINT_LIQUID = 'US pt lqd';
- /* public */ const US_PINT_DRY = 'US pt dry';
- /* public */ const US_QUARTS_LIQUID = 'US qt lqd';
- /* public */ const US_QUARTS_DRY = 'US qt dry';
- /* public */ const UK_QUARTS = 'UK qt dry';
- /* public */ const US_GILL = 'US gi';
- /* public */ const UK_GILL = 'UK gi';
- /* public */ const LITER = 'L';
- /* public */ const MICROLITER = 'mul';
- /* public */ const MILLILITER = 'mL';
- /* public */ const CENTILITER = 'cl';
- /* public */ const KILOLITER = 'kl';
- /* public */ const UK_BARREL = 'UK bbl';
- /* public */ const US_BARREL_DRY = 'US bbl dry';
- /* public */ const US_BARREL_LIQUID = 'US bbl lqd';
- /* public */ const US_BARREL_OIL = 'US bbl oil';
+ /* public */ const UK_GALLON = 'UK gal';
+ /* public */ const US_GALLON_LIQUID = 'US gal lqd';
+ /* public */ const US_GALLON_DRY = 'US gal dry';
+ /* public */ const UK_PINT = 'pt';
+ /* public */ const US_PINT_LIQUID = 'US pt lqd';
+ /* public */ const US_PINT_DRY = 'US pt dry';
+ /* public */ const US_QUARTS_LIQUID = 'US qt lqd';
+ /* public */ const US_QUARTS_DRY = 'US qt dry';
+ /* public */ const UK_QUARTS = 'UK qt dry';
+ /* public */ const US_GILL = 'US gi';
+ /* public */ const UK_GILL = 'UK gi';
+ /* public */ const LITER = 'L';
+ /* public */ const MICROLITER = 'mul';
+ /* public */ const MILLILITER = 'mL';
+ /* public */ const CENTILITER = 'cl';
+ /* public */ const KILOLITER = 'kl';
+ /* public */ const UK_BARREL = 'UK bbl';
+ /* public */ const US_BARREL_DRY = 'US bbl dry';
+ /* public */ const US_BARREL_LIQUID = 'US bbl lqd';
+ /* public */ const US_BARREL_OIL = 'US bbl oil';
/* public */ const US_BARREL_FEDERAL = 'US bbl fed';
- /* public */ const US_OUNCES = 'us fl oz';
- /* public */ const UK_OUNCES = 'uk fl oz';
- /* public */ const US_TEASPOON = 'US tsp';
- /* public */ const UK_TEASPOON = 'UK tsp';
- /* public */ const METRIC_TEASPOON = 'Metric tsp';
- /* public */ const US_TABLESPOON = 'US tblsp';
- /* public */ const UK_TABLESPOON = 'UK tblsp';
+ /* public */ const US_OUNCES = 'us fl oz';
+ /* public */ const UK_OUNCES = 'uk fl oz';
+ /* public */ const US_TEASPOON = 'US tsp';
+ /* public */ const UK_TEASPOON = 'UK tsp';
+ /* public */ const METRIC_TEASPOON = 'Metric tsp';
+ /* public */ const US_TABLESPOON = 'US tblsp';
+ /* public */ const UK_TABLESPOON = 'UK tblsp';
/* public */ const METRIC_TABLESPOON = 'Metric tblsp';
- /* public */ const US_CUP = 'US cup';
- /* public */ const CAN_CUP = 'Can cup';
- /* public */ const METRIC_CUP = 'Metric cup';
- /* public */ const CUBIC_CENTIMETER = 'cm';
- /* public */ const CUBIC_MILLIMETER = 'mm';
- /* public */ const CUBIC_METER = 'm';
- /* public */ const CUBIC_INCH = 'in';
- /* public */ const CUBIC_FEET = 'ft';
- /* public */ const CUBIC_YARD = 'yd';
+ /* public */ const US_CUP = 'US cup';
+ /* public */ const CAN_CUP = 'Can cup';
+ /* public */ const METRIC_CUP = 'Metric cup';
+ /* public */ const CUBIC_CENTIMETER = 'cm';
+ /* public */ const CUBIC_MILLIMETER = 'mm';
+ /* public */ const CUBIC_METER = 'm';
+ /* public */ const CUBIC_INCH = 'in';
+ /* public */ const CUBIC_FEET = 'ft';
+ /* public */ const CUBIC_YARD = 'yd';
}
diff --git a/Utils/Converter/WeightType.php b/Utils/Converter/WeightType.php
index efbf5e41f..748131069 100644
--- a/Utils/Converter/WeightType.php
+++ b/Utils/Converter/WeightType.php
@@ -26,18 +26,18 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class WeightType extends Enum
{
- /* public */ const MICROGRAM = 'mg';
- /* public */ const MILLIGRAM = 'mug';
- /* public */ const GRAM = 'g';
- /* public */ const KILOGRAM = 'kg';
+ /* public */ const MICROGRAM = 'mg';
+ /* public */ const MILLIGRAM = 'mug';
+ /* public */ const GRAM = 'g';
+ /* public */ const KILOGRAM = 'kg';
/* public */ const METRIC_TONS = 't';
- /* public */ const POUNDS = 'lb';
- /* public */ const OUNCES = 'oz';
- /* public */ const STONES = 'st';
- /* public */ const GRAIN = 'gr';
- /* public */ const CARAT = 'ct';
- /* public */ const LONG_TONS = 'uk t';
- /* public */ const SHORT_TONS = 'us ton';
+ /* public */ const POUNDS = 'lb';
+ /* public */ const OUNCES = 'oz';
+ /* public */ const STONES = 'st';
+ /* public */ const GRAIN = 'gr';
+ /* public */ const CARAT = 'ct';
+ /* public */ const LONG_TONS = 'uk t';
+ /* public */ const SHORT_TONS = 'us ton';
/* public */ const TROY_POUNDS = 't lb';
/* public */ const TROY_OUNCES = 't oz';
}
diff --git a/Utils/Encoding/Caesar.php b/Utils/Encoding/Caesar.php
index 06486b6a6..52e995ac2 100644
--- a/Utils/Encoding/Caesar.php
+++ b/Utils/Encoding/Caesar.php
@@ -91,4 +91,4 @@ class Caesar
return $result;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Encoding/EncodingInterface.php b/Utils/Encoding/EncodingInterface.php
index ff27bb850..ea1c5b534 100644
--- a/Utils/Encoding/EncodingInterface.php
+++ b/Utils/Encoding/EncodingInterface.php
@@ -45,4 +45,4 @@ interface EncodingInterface
* @since 1.0.0
*/
public static function decode($decoded);
-}
\ No newline at end of file
+}
diff --git a/Utils/Encoding/Gray.php b/Utils/Encoding/Gray.php
index 12e236824..a1055bc8e 100644
--- a/Utils/Encoding/Gray.php
+++ b/Utils/Encoding/Gray.php
@@ -45,4 +45,4 @@ final class Gray
return $source;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Encoding/Huffman/Dictionary.php b/Utils/Encoding/Huffman/Dictionary.php
index 5fd8f4ec6..76b8b73c0 100644
--- a/Utils/Encoding/Huffman/Dictionary.php
+++ b/Utils/Encoding/Huffman/Dictionary.php
@@ -215,4 +215,4 @@ final class Dictionary
return null;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Encoding/Huffman/Huffman.php b/Utils/Encoding/Huffman/Huffman.php
index 0febe270d..21a56d1c1 100644
--- a/Utils/Encoding/Huffman/Huffman.php
+++ b/Utils/Encoding/Huffman/Huffman.php
@@ -147,4 +147,4 @@ final class Huffman
return $source;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Encoding/XorEncoding.php b/Utils/Encoding/XorEncoding.php
index 8fb1abead..a9b80e173 100644
--- a/Utils/Encoding/XorEncoding.php
+++ b/Utils/Encoding/XorEncoding.php
@@ -47,10 +47,10 @@ final class XorEncoding
$j = 0;
}
- $ascii = ord($source[$i]) ^ ord($key[$j]);
+ $ascii = ord($source[$i]) ^ ord($key[$j]);
$result .= chr($ascii);
}
return $result;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Git/Author.php b/Utils/Git/Author.php
index ed8be0cf5..3ad752009 100644
--- a/Utils/Git/Author.php
+++ b/Utils/Git/Author.php
@@ -179,4 +179,4 @@ class Author
{
return $this->removalsCount;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Git/Branch.php b/Utils/Git/Branch.php
index 83ce596c4..706a12b30 100644
--- a/Utils/Git/Branch.php
+++ b/Utils/Git/Branch.php
@@ -67,4 +67,4 @@ class Branch
{
$this->name = $name;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Git/Commit.php b/Utils/Git/Commit.php
index 9641be123..f9e4a84d8 100644
--- a/Utils/Git/Commit.php
+++ b/Utils/Git/Commit.php
@@ -97,10 +97,10 @@ class Commit
*/
public function __construct(string $id = '')
{
- $this->id = $id;
- $this->author = new Author();
- $this->branch = new Branch();
- $this->tag = new Tag();
+ $this->id = $id;
+ $this->author = new Author();
+ $this->branch = new Branch();
+ $this->tag = new Tag();
$this->repository = new Repository(realpath(__DIR__ . '/../../../../../'));
}
diff --git a/Utils/Git/Repository.php b/Utils/Git/Repository.php
index 16ef207a8..49164a72c 100644
--- a/Utils/Git/Repository.php
+++ b/Utils/Git/Repository.php
@@ -157,9 +157,14 @@ class Repository
private function run(string $cmd) : array
{
if (strtolower(substr(PHP_OS, 0, 3)) == 'win') {
- $cmd = 'cd ' . escapeshellarg(dirname(Git::getBin())) . ' && ' . basename(Git::getBin()) . ' -C ' . escapeshellarg($this->path) . ' ' . $cmd;
+ $cmd = 'cd ' . escapeshellarg(dirname(Git::getBin()))
+ . ' && ' . basename(Git::getBin())
+ . ' -C ' . escapeshellarg($this->path) . ' '
+ . $cmd;
} else {
- $cmd = escapeshellarg(Git::getBin()) . ' -C ' . escapeshellarg($this->path) . ' ' . $cmd;
+ $cmd = escapeshellarg(Git::getBin())
+ . ' -C ' . escapeshellarg($this->path) . ' '
+ . $cmd;
}
$pipes = [];
@@ -626,7 +631,7 @@ class Repository
*
* @since 1.0.0
*/
- public function getLOC(array $extensions = ['*']) : int
+ public function getLoc(array $extensions = ['*']) : int
{
$lines = $this->run('ls-files');
$loc = 0;
@@ -750,12 +755,17 @@ class Repository
}
$addremove = ['added' => 0, 'removed' => 0];
- $lines = $this->run('log --author=' . escapeshellarg($author->getName()) . ' --since="' . $start->format('Y-m-d') . '" --before="' . $end->format('Y-m-d') . '" --pretty=tformat: --numstat');
+ $lines = $this->run(
+ 'log --author=' . escapeshellarg($author->getName())
+ . ' --since="' . $start->format('Y-m-d')
+ . '" --before="' . $end->format('Y-m-d')
+ . '" --pretty=tformat: --numstat'
+ );
foreach ($lines as $line) {
$nums = explode(' ', $line);
- $addremove['added'] += $nums[0];
+ $addremove['added'] += $nums[0];
$addremove['removed'] += $nums[1];
}
@@ -801,7 +811,11 @@ class Repository
$author = ' --author=' . escapeshellarg($author->getName()) . '';
}
- $lines = $this->run('git log --before="' . $end->format('Y-m-d') . '" --after="' . $start->format('Y-m-d') . '"' . $author . ' --reverse --date=short');
+ $lines = $this->run(
+ 'git log --before="' . $end->format('Y-m-d')
+ . '" --after="' . $start->format('Y-m-d') . '"'
+ . $author . ' --reverse --date=short');
+
$count = count($lines);
$commits = [];
diff --git a/Utils/Git/Tag.php b/Utils/Git/Tag.php
index caa8154cc..6f401c623 100644
--- a/Utils/Git/Tag.php
+++ b/Utils/Git/Tag.php
@@ -87,5 +87,4 @@ class Tag
{
return $this->name;
}
-
-}
\ No newline at end of file
+}
diff --git a/Utils/IO/Csv/CsvDatabaseMapper.php b/Utils/IO/Csv/CsvDatabaseMapper.php
index 632e83a2b..ec539abd1 100644
--- a/Utils/IO/Csv/CsvDatabaseMapper.php
+++ b/Utils/IO/Csv/CsvDatabaseMapper.php
@@ -25,7 +25,9 @@ class CsvDatabaseMapper implements IODatabaseMapper
private $sources = [];
private $delimiter = ';';
+
private $enclosure = '"';
+
private $lineBuffer = 500;
private $autoIdentifyCsvSettings = false;
diff --git a/Utils/IO/Excel/ExcelDatabaseMapper.php b/Utils/IO/Excel/ExcelDatabaseMapper.php
index c71ae198f..a7ebbea74 100644
--- a/Utils/IO/Excel/ExcelDatabaseMapper.php
+++ b/Utils/IO/Excel/ExcelDatabaseMapper.php
@@ -19,6 +19,7 @@ use phpOMS\Utils\IO\IODatabaseMapper;
class ExcelDatabaseMapper implements IODatabaseMapper
{
private $sources = [];
+
private $lineBuffer = 500;
public function addSource(string $source)
@@ -40,4 +41,3 @@ class ExcelDatabaseMapper implements IODatabaseMapper
{
}
}
-
diff --git a/Utils/IO/Zip/ArchiveInterface.php b/Utils/IO/Zip/ArchiveInterface.php
index 6fa26bc60..74181d394 100644
--- a/Utils/IO/Zip/ArchiveInterface.php
+++ b/Utils/IO/Zip/ArchiveInterface.php
@@ -11,7 +11,9 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
+
namespace phpOMS\Utils\IO\Zip;
+
/**
* Archive interface
*
diff --git a/Utils/IO/Zip/Gz.php b/Utils/IO/Zip/Gz.php
index c4e2f0451..57336af02 100644
--- a/Utils/IO/Zip/Gz.php
+++ b/Utils/IO/Zip/Gz.php
@@ -11,7 +11,9 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
+
namespace phpOMS\Utils\IO\Zip;
+
/**
* Zip class for handling zip files.
*
diff --git a/Utils/IO/Zip/Tar.php b/Utils/IO/Zip/Tar.php
index 6831dd7d9..05d00a484 100644
--- a/Utils/IO/Zip/Tar.php
+++ b/Utils/IO/Zip/Tar.php
@@ -11,7 +11,9 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
+
namespace phpOMS\Utils\IO\Zip;
+
/**
* Zip class for handling zip files.
*
@@ -44,7 +46,10 @@ class Tar implements ArchiveInterface
}
if (is_dir($source)) {
- $files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($source), \RecursiveIteratorIterator::SELF_FIRST);
+ $files = new \RecursiveIteratorIterator(
+ new \RecursiveDirectoryIterator($source),
+ \RecursiveIteratorIterator::SELF_FIRST
+ );
foreach ($files as $file) {
$file = str_replace('\\', '/', $file);
diff --git a/Utils/IO/Zip/TarGz.php b/Utils/IO/Zip/TarGz.php
index 6846efa2c..df335d38b 100644
--- a/Utils/IO/Zip/TarGz.php
+++ b/Utils/IO/Zip/TarGz.php
@@ -11,7 +11,9 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
+
namespace phpOMS\Utils\IO\Zip;
+
/**
* Zip class for handling zip files.
*
diff --git a/Utils/IO/Zip/Zip.php b/Utils/IO/Zip/Zip.php
index d73b21750..73e696b3a 100644
--- a/Utils/IO/Zip/Zip.php
+++ b/Utils/IO/Zip/Zip.php
@@ -66,7 +66,7 @@ class Zip implements ArchiveInterface
$absolute = realpath($file);
$absolute = str_replace('\\', '/', $absolute);
- $dir = str_replace($source . '/', '', $relative . '/' . $absolute);
+ $dir = str_replace($source . '/', '', $relative . '/' . $absolute);
if (is_dir($absolute)) {
$zip->addEmptyDir($dir . '/');
diff --git a/Utils/JobQueue/Job.php b/Utils/JobQueue/Job.php
index 4feaf0405..e3dcdae97 100644
--- a/Utils/JobQueue/Job.php
+++ b/Utils/JobQueue/Job.php
@@ -48,4 +48,4 @@ class Job
{
$this->priority = $priority;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/JobQueue/JobQueue.php b/Utils/JobQueue/JobQueue.php
index 8f75aae38..81d13a753 100644
--- a/Utils/JobQueue/JobQueue.php
+++ b/Utils/JobQueue/JobQueue.php
@@ -27,9 +27,13 @@ use phpOMS\Stdlib\Queue\PriorityQueue;
class JobQueue
{
private $queue = null;
+
private $run = true;
+
private $suspended = false;
+
private $isTerminating = true;
+
private $isDeamonized;
public function __construct()
@@ -139,4 +143,4 @@ class JobQueue
{
// todo: save pid somewhere for kill
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Parser/Markdown/Markdown.php b/Utils/Parser/Markdown/Markdown.php
index 0c9e88cad..afb5eefab 100644
--- a/Utils/Parser/Markdown/Markdown.php
+++ b/Utils/Parser/Markdown/Markdown.php
@@ -123,9 +123,10 @@ class Markdown
public static function parse(string $text) : string
{
self::$definitionData = [];
- $text = str_replace(["\r\n", "\r"], "\n", $text);
- $text = trim($text, "\n");
- $lines = explode("\n", $text);
+
+ $text = str_replace(["\r\n", "\r"], "\n", $text);
+ $text = trim($text, "\n");
+ $lines = explode("\n", $text);
$markup = self::lines($lines);
return trim($markup, "\n");
@@ -146,7 +147,7 @@ class Markdown
if (strpos($line, "\t") !== false) {
$parts = explode("\t", $line);
- $line = $parts[0];
+ $line = $parts[0];
unset($parts[0]);
@@ -163,7 +164,7 @@ class Markdown
$indent ++;
}
- $text = $indent > 0 ? substr($line, $indent) : $line;
+ $text = $indent > 0 ? substr($line, $indent) : $line;
$lineArray = ['body' => $line, 'indent' => $indent, 'text' => $text];
if (isset($currentBlock['continuable'])) {
@@ -178,7 +179,7 @@ class Markdown
}
}
- $marker = $text[0];
+ $marker = $text[0];
$blockTypes = self::$unmarkedBlockTypes;
if (isset(self::$blockTypes[$marker])) {
@@ -212,8 +213,8 @@ class Markdown
if (isset($currentBlock) && !isset($currentBlock['type']) && !isset($currentBlock['interrupted'])) {
$currentBlock['element']['text'] .= "\n" . $text;
} else {
- $blocks[] = $currentBlock;
- $currentBlock = self::paragraph($lineArray);
+ $blocks[] = $currentBlock;
+ $currentBlock = self::paragraph($lineArray);
$currentBlock['identified'] = true;
}
}
@@ -250,15 +251,13 @@ class Markdown
return;
}
- $text = substr($lineArray['body'], 4);
-
return [
'element' => [
'name' => 'pre',
'handler' => 'element',
'text' => [
'name' => 'code',
- 'text' => $text,
+ 'text' => substr($lineArray['body'], 4),
],
],
];
@@ -277,17 +276,13 @@ class Markdown
}
$block['element']['text']['text'] .= "\n";
- $text = substr($lineArray['body'], 4);
- $block['element']['text']['text'] .= $text;
+ $block['element']['text']['text'] .= substr($lineArray['body'], 4);
return $block;
}
protected static function blockCodeComplete(array $block) : array
{
- $text = $block['element']['text']['text'];
- $block['element']['text']['text'] = $text;
-
return $block;
}
@@ -332,7 +327,7 @@ class Markdown
if (preg_match('/^' . $block['char'] . '{3,}[ ]*$/', $lineArray['text'])) {
$block['element']['text']['text'] = substr($block['element']['text']['text'], 1);
- $block['complete'] = true;
+ $block['complete'] = true;
return $block;
}
@@ -344,9 +339,6 @@ class Markdown
protected static function blockFencedCodeComplete(array $block) : array
{
- $text = $block['element']['text']['text'];
- $block['element']['text']['text'] = $text;
-
return $block;
}
@@ -365,12 +357,10 @@ class Markdown
return;
}
- $text = trim($lineArray['text'], '# ');
-
return [
'element' => [
'name' => 'h' . min(6, $level),
- 'text' => $text,
+ 'text' => trim($lineArray['text'], '# '),
'handler' => 'line',
],
];
@@ -393,8 +383,12 @@ class Markdown
],
];
- if($name === 'ol') {
+ if ($name === 'ol') {
$listStart = stristr($matches[0], '.', true);
+
+ if ($listStart !== '1') {
+ $block['element']['attributes'] = ['start' => $listStart];
+ }
}
$block['li'] = [
@@ -421,16 +415,15 @@ class Markdown
unset($block['li']);
- $text = isset($matches[1]) ? $matches[1] : '';
$block['li'] = [
'name' => 'li',
'handler' => 'li',
'text' => [
- $text,
+ isset($matches[1]) ? $matches[1] : '',
],
];
- $block['element']['text'][] = & $block['li'];
+ $block['element']['text'][] = &$block['li'];
return $block;
}
@@ -440,16 +433,14 @@ class Markdown
}
if (!isset($block['interrupted'])) {
- $text = preg_replace('/^[ ]{0,4}/', '', $lineArray['body']);
- $block['li']['text'][] = $text;
+ $block['li']['text'][] = preg_replace('/^[ ]{0,4}/', '', $lineArray['body']);
return $block;
}
if ($lineArray['indent'] > 0) {
$block['li']['text'][] = '';
- $text = preg_replace('/^[ ]{0,4}/', '', $lineArray['body']);
- $block['li']['text'][] = $text;
+ $block['li']['text'][] = preg_replace('/^[ ]{0,4}/', '', $lineArray['body']);
unset($block['interrupted']);
@@ -527,13 +518,12 @@ class Markdown
return;
}
- $id = strtolower($matches[1]);
$data = [
'url' => $matches[2],
'title' => $matches[3] ?? null,
];
- self::$definitionData['Reference'][$id] = $data;
+ self::$definitionData['Reference'][strtolower($matches[1])] = $data;
return ['hidden' => true];
}
@@ -545,10 +535,10 @@ class Markdown
}
if (strpos($block['element']['text'], '|') !== false && chop($lineArray['text'], ' -:|') === '') {
- $alignments = [];
- $divider = $lineArray['text'];
- $divider = trim($divider);
- $divider = trim($divider, '|');
+ $alignments = [];
+ $divider = $lineArray['text'];
+ $divider = trim($divider);
+ $divider = trim($divider, '|');
$dividerCells = explode('|', $divider);
foreach ($dividerCells as $dividerCell) {
@@ -572,23 +562,21 @@ class Markdown
}
$headerElements = [];
- $header = $block['element']['text'];
- $header = trim($header);
- $header = trim($header, '|');
- $headerCells = explode('|', $header);
+ $header = $block['element']['text'];
+ $header = trim($header);
+ $header = trim($header, '|');
+ $headerCells = explode('|', $header);
foreach ($headerCells as $index => $headerCell) {
- $headerCell = trim($headerCell);
$headerElement = [
'name' => 'th',
- 'text' => $headerCell,
+ 'text' => trim($headerCell),
'handler' => 'line',
];
if (isset($alignments[$index])) {
- $alignment = $alignments[$index];
$headerElement['attributes'] = [
- 'style' => 'text-align: ' . $alignment . ';',
+ 'style' => 'text-align: ' . $alignments[$index] . ';',
];
}
@@ -633,18 +621,17 @@ class Markdown
if ($lineArray['text'][0] === '|' || strpos($lineArray['text'], '|')) {
$elements = [];
- $row = $lineArray['text'];
- $row = trim($row);
- $row = trim($row, '|');
+ $row = $lineArray['text'];
+ $row = trim($row);
+ $row = trim($row, '|');
preg_match_all('/(?:(\\\\[|])|[^|`]|`[^`]+`|`)+/', $row, $matches);
foreach ($matches[0] as $index => $cell) {
- $cell = trim($cell);
$element = [
'name' => 'td',
'handler' => 'line',
- 'text' => $cell,
+ 'text' => trim($cell),
];
if (isset($block['alignments'][$index])) {
@@ -656,12 +643,11 @@ class Markdown
$elements[] = $element;
}
- $element = [
+ $block['element']['text'][1]['text'][] = [
'name' => 'tr',
'handler' => 'elements',
'text' => $elements,
];
- $block['element']['text'][1]['text'][] = $element;
return $block;
}
@@ -683,9 +669,9 @@ class Markdown
$markup = '';
while ($excerpt = strpbrk($text, self::$inlineMarkerList)) {
- $marker = $excerpt[0];
+ $marker = $excerpt[0];
$markerPosition = strpos($text, $marker);
- $excerptArray = ['text' => $excerpt, 'context' => $text];
+ $excerptArray = ['text' => $excerpt, 'context' => $text];
foreach (self::$inlineTypes[$marker] as $inlineType) {
$inline = self::{'inline' . $inlineType}($excerptArray);
@@ -703,16 +689,16 @@ class Markdown
}
$unmarkedText = substr($text, 0, $inline['position']);
- $markup .= self::unmarkedText($unmarkedText);
- $markup .= isset($inline['markup']) ? $inline['markup'] : self::element($inline['element']);
- $text = substr($text, $inline['position'] + $inline['extent']);
+ $markup .= self::unmarkedText($unmarkedText);
+ $markup .= isset($inline['markup']) ? $inline['markup'] : self::element($inline['element']);
+ $text = substr($text, $inline['position'] + $inline['extent']);
continue 2;
}
$unmarkedText = substr($text, 0, $markerPosition + 1);
- $markup .= self::unmarkedText($unmarkedText);
- $text = substr($text, $markerPosition + 1);
+ $markup .= self::unmarkedText($unmarkedText);
+ $text = substr($text, $markerPosition + 1);
}
$markup .= self::unmarkedText($text);
@@ -728,13 +714,11 @@ class Markdown
return;
}
- $text = preg_replace("/[ ]*\n/", ' ', $matches[2]);
-
return [
'extent' => strlen($matches[0]),
'element' => [
'name' => 'code',
- 'text' => $text,
+ 'text' => preg_replace("/[ ]*\n/", ' ', $matches[2]),
],
];
}
@@ -808,7 +792,7 @@ class Markdown
}
$excerpt['text'] = substr($excerpt['text'], 1);
- $link = self::inlineLink($excerpt);
+ $link = self::inlineLink($excerpt);
if (!isset($link)) {
return;
@@ -843,7 +827,8 @@ class Markdown
'title' => null,
],
];
- $extent = 0;
+
+ $extent = 0;
$remainder = $excerpt['text'];
if (!preg_match('/\[((?:[^][]++|(?R))*+)\]/', $remainder, $matches)) {
@@ -851,8 +836,8 @@ class Markdown
}
$element['text'] = $matches[1];
- $extent += strlen($matches[0]);
- $remainder = substr($remainder, $extent);
+ $extent += strlen($matches[0]);
+ $remainder = substr($remainder, $extent);
if (preg_match('/^[(]\s*+((?:[^ ()]++|[(][^ )]+[)])++)(?:[ ]+("[^"]*"|\'[^\']*\'))?\s*[)]/', $remainder, $matches)) {
$element['attributes']['href'] = $matches[1];
@@ -866,6 +851,7 @@ class Markdown
if (preg_match('/^\s*\[(.*?)\]/', $remainder, $matches)) {
$definition = strlen($matches[1]) ? $matches[1] : $element['text'];
$definition = strtolower($definition);
+
$extent += strlen($matches[0]);
} else {
$definition = strtolower($element['text']);
@@ -876,7 +862,8 @@ class Markdown
}
$def = self::$definitionData['Reference'][$definition];
- $element['attributes']['href'] = $def['url'];
+
+ $element['attributes']['href'] = $def['url'];
$element['attributes']['title'] = $def['title'];
}
@@ -954,15 +941,13 @@ class Markdown
return;
}
- $url = $matches[1];
-
return [
'extent' => strlen($matches[0]),
'element' => [
'name' => 'a',
- 'text' => $url,
+ 'text' => $matches[1],
'attributes' => [
- 'href' => $url,
+ 'href' => $matches[1],
],
],
];
@@ -979,7 +964,7 @@ class Markdown
protected static function element(array $element) : string
{
$element = self::sanitizeElement($element);
- $markup = '<' . $element['name'];
+ $markup = '<' . $element['name'];
if (isset($element['attributes'])) {
foreach ($element['attributes'] as $name => $value) {
@@ -1017,14 +1002,14 @@ class Markdown
protected static function li(array $lines) : string
{
- $markup = self::lines($lines);
+ $markup = self::lines($lines);
$trimmedMarkup = trim($markup);
if (!in_array('', $lines) && substr($trimmedMarkup, 0, 3) === '
') {
- $markup = $trimmedMarkup;
- $markup = substr($markup, 3);
+ $markup = $trimmedMarkup;
+ $markup = substr($markup, 3);
$position = strpos($markup, '
');
- $markup = substr_replace($markup, '', $position, 4);
+ $markup = substr_replace($markup, '', $position, 4);
}
return $markup;
@@ -1082,4 +1067,4 @@ class Markdown
return strtolower(substr($string, 0, $length)) === strtolower($needle);
}
-}
\ No newline at end of file
+}
diff --git a/Utils/Permutation.php b/Utils/Permutation.php
index 55cb3a3a6..25c08d065 100644
--- a/Utils/Permutation.php
+++ b/Utils/Permutation.php
@@ -121,4 +121,4 @@ class Permutation
return $toPermute;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/RnG/ArrayRandomize.php b/Utils/RnG/ArrayRandomize.php
index 177939472..152b8821c 100644
--- a/Utils/RnG/ArrayRandomize.php
+++ b/Utils/RnG/ArrayRandomize.php
@@ -67,4 +67,4 @@ class ArrayRandomize
return $shuffled;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/RnG/DistributionType.php b/Utils/RnG/DistributionType.php
index c39682509..6ceaa11a6 100644
--- a/Utils/RnG/DistributionType.php
+++ b/Utils/RnG/DistributionType.php
@@ -27,5 +27,5 @@ use phpOMS\Stdlib\Base\Enum;
abstract class DistributionType extends Enum
{
/* public */ const UNIFORM = 0;
- /* public */ const NORMAL = 1;
+ /* public */ const NORMAL = 1;
}
diff --git a/Utils/RnG/LinearCongruentialGenerator.php b/Utils/RnG/LinearCongruentialGenerator.php
index 0220c7292..e3fca8a9e 100644
--- a/Utils/RnG/LinearCongruentialGenerator.php
+++ b/Utils/RnG/LinearCongruentialGenerator.php
@@ -24,7 +24,20 @@ namespace phpOMS\Utils\RnG;
*/
class LinearCongruentialGenerator
{
+ /**
+ * BSD seed value.
+ *
+ * @var int
+ * @since 1.0.0
+ */
private static $bsdSeed = 0;
+
+ /**
+ * MSVCRT seed value.
+ *
+ * @var int
+ * @since 1.0.0
+ */
private static $msvcrtSeed = 0;
/**
diff --git a/Utils/RnG/Name.php b/Utils/RnG/Name.php
index ce997542e..b4a25ac54 100644
--- a/Utils/RnG/Name.php
+++ b/Utils/RnG/Name.php
@@ -469,17 +469,18 @@ class Name
'female' => ['none'],
'male' => ['none'],
'family' => [
- 'Հովհաննիսյան', 'Հարությունյան', 'Սարգսյան', 'Խաչատրյան', 'Գրիգորյան',
- 'আহমেদ', 'আলী', 'আক্তার', 'বন্দ্যোপাধ্যায়', 'নিক', 'ব্যাপারী', 'বড়ুয়া', 'বিশ্বাস', 'ভৌমিক', 'বসু',
- '王', '李', '张', '刘', '陈', '杨', '黄', '赵', '吴', '周', '徐', '孙', '马', '朱', '胡', '郭', '何', '高', '林', '罗',
- 'כהן', 'לוי', 'מזרחי', 'פרץ', 'ביטון', 'דהן', 'אברהם', 'פרידמן', 'מלכה', 'אזולאי', 'כץ', 'יוסף', 'דוד', 'עמר', 'אוחיון',
- '김', '리', '박', '최', '정', '강', '조', '윤', '장', '림', '한', '신', '서', '권', '황', '안', '송', '홍', '고', '문', '손', '량',
- 'Yılmaz', 'Kaya', 'Demir', 'Şahin', 'Çelik', 'Yıldız', 'Yıldırım', 'Öztürk', 'Aydın', 'Özdemir', 'Arslan', 'Doğan', 'Kılıç', 'Aslan', 'Çetin', 'Kara', 'Koç', 'Kurt', 'Özkan', 'Şimşek',
+ 'Հովհաննիսյան', 'Հարությունյան', 'Սարգսյան', 'Խաչատրյան', 'Գրիգորյան', 'আহমেদ', 'আলী', 'আক্তার',
+ 'বন্দ্যোপাধ্যায়', 'নিক', 'ব্যাপারী', 'বড়ুয়া', 'বিশ্বাস', 'ভৌমিক', 'বসু', '王', '李', '张', '刘', '陈', '杨',
+ '黄', '赵', '吴', '周', '徐', '孙', '马', '朱', '胡', '郭', '何', '高', '林', '罗', 'כהן', 'לוי',
+ 'מזרחי', 'פרץ', 'ביטון', 'דהן', 'אברהם', 'פרידמן', 'מלכה', 'אזולאי', 'כץ', 'יוסף', 'דוד', 'עמר',
+ 'אוחיון', '김', '리', '박', '최', '정', '강', '조', '윤', '장', '림', '한', '신', '서', '권', '황',
+ '안', '송', '홍', '고', '문', '손', '량', 'Yılmaz', 'Kaya', 'Demir', 'Şahin', 'Çelik', 'Yıldız',
+ 'Yıldırım', 'Öztürk', 'Aydın', 'Özdemir', 'Arslan', 'Doğan', 'Kılıç', 'Aslan', 'Çetin', 'Kara',
+ 'Koç', 'Kurt', 'Özkan', 'Şimşek',
],
]
];
-
/**
* Get a random string.
*
diff --git a/Utils/RnG/Phone.php b/Utils/RnG/Phone.php
index f56ca129f..945154b05 100644
--- a/Utils/RnG/Phone.php
+++ b/Utils/RnG/Phone.php
@@ -55,7 +55,10 @@ class Phone
$numberParts = substr_count($layout['struct'], '$');
for ($i = ($isInt ? 2 : 1); $i < $numberParts; $i++) {
- $numberString = str_replace('$' . $i, StringUtils::generateString($layout['size'][$i - 1][0], $layout['size'][$i - 1][1], '0123456789'), $numberString);
+ $numberString = str_replace(
+ '$' . $i, StringUtils::generateString($layout['size'][$i - 1][0], $layout['size'][$i - 1][1], '0123456789'),
+ $numberString
+ );
}
return $numberString;
diff --git a/Utils/RnG/StringUtils.php b/Utils/RnG/StringUtils.php
index 636e54f46..225334a74 100644
--- a/Utils/RnG/StringUtils.php
+++ b/Utils/RnG/StringUtils.php
@@ -36,7 +36,9 @@ class StringUtils
*
* @since 1.0.0
*/
- public static function generateString(int $min = 10, int $max = 10, string $charset = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') : string
+ public static function generateString(int $min = 10, int $max = 10,
+ string $charset = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+ ) : string
{
$length = mt_rand($min, $max);
$charactersLength = strlen($charset);
diff --git a/Utils/RnG/Text.php b/Utils/RnG/Text.php
index 504e1a1ad..0636f3e5a 100644
--- a/Utils/RnG/Text.php
+++ b/Utils/RnG/Text.php
@@ -31,7 +31,7 @@ class Text
* @var string[]
* @since 1.0.0
*/
- private static $words_west = [
+ private static $wordsWest = [
'lorem', 'ipsum', 'dolor', 'sit', 'amet', 'consectetur', 'adipiscing', 'elit', 'curabitur', 'vel', 'hendrerit', 'libero',
'eleifend', 'blandit', 'nunc', 'ornare', 'odio', 'ut', 'orci', 'gravida', 'imperdiet', 'nullam', 'purus', 'lacinia', 'a',
'pretium', 'quis', 'congue', 'praesent', 'sagittis', 'laoreet', 'auctor', 'mauris', 'non', 'velit', 'eros', 'dictum',
@@ -131,7 +131,7 @@ class Text
}
if ($words === null) {
- $words = self::$words_west;
+ $words = self::$wordsWest;
}
$punctuation = $this->generatePunctuation($length);
@@ -294,7 +294,7 @@ class Text
$paragraphLength = $length - $i;
}
- $i += $paragraphLength;
+ $i += $paragraphLength;
$paragraph[] = $i;
}
diff --git a/Utils/StringCompare.php b/Utils/StringCompare.php
index 559b8fd5b..dcee3e45f 100644
--- a/Utils/StringCompare.php
+++ b/Utils/StringCompare.php
@@ -100,7 +100,7 @@ class StringCompare
{
$words1 = preg_split('/[ _-]/', $s1);
$words2 = preg_split('/[ _-]/', $s2);
- $total = 0;
+ $total = 0;
foreach ($words1 as $word1) {
$best = strlen($s2);
@@ -156,19 +156,24 @@ class StringCompare
/**
* Calculate fuzzy match score.
*
- * @param string $s1 Word 1
- * @param string $s2 Word 2
+ * @param string $s1 Word 1
+ * @param string $s2 Word 2
* @param float $phraseWeight Weighting for phrase score
- * @param float $wordWeight Weighting for word score
- * @param float $minWeight Min weight
- * @param float $maxWeight Max weight
+ * @param float $wordWeight Weighting for word score
+ * @param float $minWeight Min weight
+ * @param float $maxWeight Max weight
* @param float $lengthWeight Weighting for word length
*
* @return float
*
* @since 1.0.0
*/
- public static function fuzzyMatch(string $s1, string $s2, float $phraseWeight = 0.5, float $wordWeight = 1, float $minWeight = 10, float $maxWeight = 1, float $lengthWeight = -0.3) : float
+ public static function fuzzyMatch(
+ string $s1, string $s2,
+ float $phraseWeight = 0.5, float $wordWeight = 1,
+ float $minWeight = 10, float $maxWeight = 1,
+ float $lengthWeight = -0.3
+ ) : float
{
$phraseValue = self::valuePhrase($s1, $s2);
$wordValue = self::valueWords($s1, $s2);
@@ -178,4 +183,4 @@ class StringCompare
+ max($phraseValue * $phraseWeight, $wordValue * $wordWeight) * $maxWeight
+ $lengthValue * $lengthWeight;
}
-}
\ No newline at end of file
+}
diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php
index c96ae55dc..9104f5335 100644
--- a/Utils/StringUtils.php
+++ b/Utils/StringUtils.php
@@ -356,12 +356,12 @@ class StringUtils
*/
public static function getEntropy(string $value) : float
{
- $entroy = 0.0;
- $size = mb_strlen($value);
+ $entroy = 0.0;
+ $size = mb_strlen($value);
$countChars = self::mb_count_chars($value);
foreach ($countChars as $v) {
- $p = $v / $size;
+ $p = $v / $size;
$entroy -= $p * log($p) / log(2);
}
diff --git a/Utils/TaskSchedule/Cron.php b/Utils/TaskSchedule/Cron.php
index 3fc518c71..f78d28e62 100644
--- a/Utils/TaskSchedule/Cron.php
+++ b/Utils/TaskSchedule/Cron.php
@@ -88,7 +88,7 @@ class Cron extends SchedulerAbstract
$jobs = [];
foreach ($lines as $line) {
- if($line !== '' && strrpos($line, '#', -strlen($line)) === false) {
+ if ($line !== '' && strrpos($line, '#', -strlen($line)) === false) {
$jobs[] = CronJob::createWith(str_getcsv($line, ' '));
}
}
@@ -109,7 +109,7 @@ class Cron extends SchedulerAbstract
foreach ($lines as $line) {
$csv = str_getcsv($line, ' ');
- if($line !== '' && strrpos($line, '#', -strlen($line)) === false && $csv[5] === $name) {
+ if ($line !== '' && strrpos($line, '#', -strlen($line)) === false && $csv[5] === $name) {
$jobs[] = CronJob::createWith($csv);
}
}
@@ -118,7 +118,7 @@ class Cron extends SchedulerAbstract
foreach ($lines as $line) {
$csv = str_getcsv($line, ' ');
- if($line !== '' && strrpos($line, '#', -strlen($line)) === false && stripos($csv[5], $name) !== false) {
+ if ($line !== '' && strrpos($line, '#', -strlen($line)) === false && stripos($csv[5], $name) !== false) {
$jobs[] = CronJob::createWith($csv);
}
}
diff --git a/Utils/TaskSchedule/SchedulerAbstract.php b/Utils/TaskSchedule/SchedulerAbstract.php
index fa2777b26..285a86907 100644
--- a/Utils/TaskSchedule/SchedulerAbstract.php
+++ b/Utils/TaskSchedule/SchedulerAbstract.php
@@ -13,6 +13,7 @@
declare(strict_types = 1);
namespace phpOMS\Utils\TaskSchedule;
+
use phpOMS\System\File\PathException;
/**
diff --git a/Utils/TaskSchedule/SchedulerFactory.php b/Utils/TaskSchedule/SchedulerFactory.php
index a09012fd7..81f37c758 100644
--- a/Utils/TaskSchedule/SchedulerFactory.php
+++ b/Utils/TaskSchedule/SchedulerFactory.php
@@ -47,4 +47,4 @@ final class SchedulerFactory
throw new \Exception('Unsupported system.');
}
}
-}
\ No newline at end of file
+}
diff --git a/Utils/TaskSchedule/TaskAbstract.php b/Utils/TaskSchedule/TaskAbstract.php
index da8015b46..bc80dc258 100644
--- a/Utils/TaskSchedule/TaskAbstract.php
+++ b/Utils/TaskSchedule/TaskAbstract.php
@@ -91,10 +91,10 @@ abstract class TaskAbstract
*
* @since 1.0.0
*/
- public function __construct(string $name, string $cmd = '') {
- $this->id = $name;
- $this->command = $cmd;
-
+ public function __construct(string $name, string $cmd = '')
+ {
+ $this->id = $name;
+ $this->command = $cmd;
$this->lastRunTime = new \DateTime('1900-01-01');
$this->nextRunTime = new \DateTime('1900-01-01');
}
diff --git a/Utils/TaskSchedule/TaskFactory.php b/Utils/TaskSchedule/TaskFactory.php
index ead59e050..2425b7388 100644
--- a/Utils/TaskSchedule/TaskFactory.php
+++ b/Utils/TaskSchedule/TaskFactory.php
@@ -30,8 +30,8 @@ final class TaskFactory
/**
* Create task instance.
*
- * @param string $id Task id
- * @param string $cmd Command to run
+ * @param string $id Task id
+ * @param string $cmd Command to run
*
* @return TaskAbstract
*
@@ -50,4 +50,4 @@ final class TaskFactory
throw new \Exception('Unsupported system.');
}
}
-}
\ No newline at end of file
+}
diff --git a/Utils/TestUtils.php b/Utils/TestUtils.php
index 8a6a92bf3..268a9dedb 100644
--- a/Utils/TestUtils.php
+++ b/Utils/TestUtils.php
@@ -11,7 +11,9 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
+
namespace phpOMS\Utils;
+
/**
* Test utils.
*
diff --git a/Validation/Barcode/Barcode.php b/Validation/Barcode/Barcode.php
index 003471bab..15042f1bb 100644
--- a/Validation/Barcode/Barcode.php
+++ b/Validation/Barcode/Barcode.php
@@ -22,4 +22,4 @@ class Barcode extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/Barcode11.php b/Validation/Barcode/Barcode11.php
index 3fa6eacf7..93dc8f778 100644
--- a/Validation/Barcode/Barcode11.php
+++ b/Validation/Barcode/Barcode11.php
@@ -22,4 +22,4 @@ class Barcode11 extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/Barcode128.php b/Validation/Barcode/Barcode128.php
index cb4dec982..3a1208905 100644
--- a/Validation/Barcode/Barcode128.php
+++ b/Validation/Barcode/Barcode128.php
@@ -22,4 +22,4 @@ class Barcode128 extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/Barcode25.php b/Validation/Barcode/Barcode25.php
index 180857356..ae90e7699 100644
--- a/Validation/Barcode/Barcode25.php
+++ b/Validation/Barcode/Barcode25.php
@@ -22,4 +22,4 @@ class Barcode25 extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/Barcode39.php b/Validation/Barcode/Barcode39.php
index ca4a0a342..1c8b07e08 100644
--- a/Validation/Barcode/Barcode39.php
+++ b/Validation/Barcode/Barcode39.php
@@ -22,4 +22,4 @@ class Barcode39 extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/Barcode93.php b/Validation/Barcode/Barcode93.php
index 494dc85a4..0e3b33a68 100644
--- a/Validation/Barcode/Barcode93.php
+++ b/Validation/Barcode/Barcode93.php
@@ -22,4 +22,4 @@ class Barcode93 extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/BarcodeCodebar.php b/Validation/Barcode/BarcodeCodebar.php
index ca4b91814..5d2f08118 100644
--- a/Validation/Barcode/BarcodeCodebar.php
+++ b/Validation/Barcode/BarcodeCodebar.php
@@ -22,4 +22,4 @@ class BarcodeCodebar extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/BarcodeDatamatrix.php b/Validation/Barcode/BarcodeDatamatrix.php
index 65a5e93f8..5ce25b8ee 100644
--- a/Validation/Barcode/BarcodeDatamatrix.php
+++ b/Validation/Barcode/BarcodeDatamatrix.php
@@ -22,4 +22,4 @@ class BarcodeDatamatrix extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/BarcodeEAN.php b/Validation/Barcode/BarcodeEAN.php
index 5a96e2c1b..82517ed8d 100644
--- a/Validation/Barcode/BarcodeEAN.php
+++ b/Validation/Barcode/BarcodeEAN.php
@@ -22,4 +22,4 @@ class BarcodeEAN extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/BarcodeMSI.php b/Validation/Barcode/BarcodeMSI.php
index 471fb7c24..bcef353bb 100644
--- a/Validation/Barcode/BarcodeMSI.php
+++ b/Validation/Barcode/BarcodeMSI.php
@@ -22,4 +22,4 @@ class BarcodeMSI extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Barcode/QrCode.php b/Validation/Barcode/QrCode.php
index 7850fcbc1..7ade74811 100644
--- a/Validation/Barcode/QrCode.php
+++ b/Validation/Barcode/QrCode.php
@@ -22,4 +22,4 @@ class QrCode extends ValidatorAbstract
{
}
-}
\ No newline at end of file
+}
diff --git a/Validation/Base/DateTime.php b/Validation/Base/DateTime.php
index 0d01f81d5..5f1b51b6d 100644
--- a/Validation/Base/DateTime.php
+++ b/Validation/Base/DateTime.php
@@ -17,7 +17,7 @@ namespace phpOMS\Validation\Base;
use phpOMS\Validation\ValidatorAbstract;
/**
- * Validator abstract.
+ * Validate date.
*
* @package Validation
* @license OMS License 1.0
diff --git a/Validation/Finance/BIC.php b/Validation/Finance/BIC.php
index 7bb535886..9fc758ce6 100644
--- a/Validation/Finance/BIC.php
+++ b/Validation/Finance/BIC.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS\Validation\Finance
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -17,14 +17,14 @@ namespace phpOMS\Validation\Finance;
use phpOMS\Validation\ValidatorAbstract;
/**
- * Validator abstract.
+ * Validate BIC
*
- * @package Validation
+ * @package phpOMS\Validation\Finance
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
-class BIC extends ValidatorAbstract
+abstract class BIC extends ValidatorAbstract
{
/**
diff --git a/Validation/Finance/CreditCard.php b/Validation/Finance/CreditCard.php
index 45acc6d15..f43d08fe2 100644
--- a/Validation/Finance/CreditCard.php
+++ b/Validation/Finance/CreditCard.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS\Validation\Finance
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -17,9 +17,9 @@ namespace phpOMS\Validation\Finance;
use phpOMS\Validation\ValidatorAbstract;
/**
- * Validator abstract.
+ * Credit card validation
*
- * @package Validation
+ * @package phpOMS\Validation\Finance
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
diff --git a/Validation/Finance/Iban.php b/Validation/Finance/Iban.php
index 063ae1cda..6bad386d9 100644
--- a/Validation/Finance/Iban.php
+++ b/Validation/Finance/Iban.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS\Validation\Finance
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -17,9 +17,9 @@ namespace phpOMS\Validation\Finance;
use phpOMS\Validation\ValidatorAbstract;
/**
- * Validator abstract.
+ * Iban validation.
*
- * @package Validation
+ * @package phpOMS\Validation\Finance
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
diff --git a/Validation/Finance/IbanEnum.php b/Validation/Finance/IbanEnum.php
index a31cfd588..dda7e3cf9 100644
--- a/Validation/Finance/IbanEnum.php
+++ b/Validation/Finance/IbanEnum.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS\Validation\Finance
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/**
* Iban layout definition.
*
- * @package Framework
+ * @package phpOMS\Validation\Finance
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
diff --git a/Validation/Finance/IbanErrorType.php b/Validation/Finance/IbanErrorType.php
index 82bd51e5a..fc00e1cda 100644
--- a/Validation/Finance/IbanErrorType.php
+++ b/Validation/Finance/IbanErrorType.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS\Validation\Finance
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -19,16 +19,16 @@ use phpOMS\Stdlib\Base\Enum;
/**
* Iban error type enum.
*
- * @package Framework
+ * @package phpOMS\Validation\Finance
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
abstract class IbanErrorType extends Enum
{
- /* public */ const INVALID_COUNTRY = 1;
- /* public */ const INVALID_LENGTH = 2;
+ /* public */ const INVALID_COUNTRY = 1;
+ /* public */ const INVALID_LENGTH = 2;
/* public */ const INVALID_CHECKSUM = 4;
- /* public */ const EXPECTED_ZERO = 8;
+ /* public */ const EXPECTED_ZERO = 8;
/* public */ const EXPECTED_NUMERIC = 16;
}
diff --git a/Validation/Network/Email.php b/Validation/Network/Email.php
index 4be3d8af1..3d8814de0 100644
--- a/Validation/Network/Email.php
+++ b/Validation/Network/Email.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS\Validation\Network
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -17,14 +17,14 @@ namespace phpOMS\Validation\Network;
use phpOMS\Validation\ValidatorAbstract;
/**
- * Validator abstract.
+ * Validate email.
*
- * @package Validation
+ * @package phpOMS\Validation\Network
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
-class Email extends ValidatorAbstract
+abstract class Email extends ValidatorAbstract
{
/**
diff --git a/Validation/Network/Hostname.php b/Validation/Network/Hostname.php
index 7026c111e..437ac6f32 100644
--- a/Validation/Network/Hostname.php
+++ b/Validation/Network/Hostname.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS\Validation\Network
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -17,9 +17,9 @@ namespace phpOMS\Validation\Network;
use phpOMS\Validation\ValidatorAbstract;
/**
- * Validator abstract.
+ * Validate hostname.
*
- * @package Validation
+ * @package phpOMS\Validation\Network
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
diff --git a/Validation/Network/Ip.php b/Validation/Network/Ip.php
index 23b24fc57..e39d05cd9 100644
--- a/Validation/Network/Ip.php
+++ b/Validation/Network/Ip.php
@@ -4,7 +4,7 @@
*
* PHP Version 7.1
*
- * @package TBD
+ * @package phpOMS\Validation\Network
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -17,14 +17,14 @@ namespace phpOMS\Validation\Network;
use phpOMS\Validation\ValidatorAbstract;
/**
- * Validator abstract.
+ * Validate IP.
*
- * @package Validation
+ * @package phpOMS\Validation\Network
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
-class Ip extends ValidatorAbstract
+abstract class Ip extends ValidatorAbstract
{
/**
diff --git a/Validation/Validator.php b/Validation/Validator.php
index 63c05bf86..4b4987d33 100644
--- a/Validation/Validator.php
+++ b/Validation/Validator.php
@@ -45,8 +45,8 @@ final class Validator extends ValidatorAbstract
foreach ($constraints as $callback => $settings) {
$callback = StringUtils::endsWith($callback, 'Not') ? substr($callback, 0, -3) : $callback;
- $valid = self::$callback($var, ...$settings);
- $valid = (StringUtils::endsWith($callback, 'Not') ? $valid : !$valid);
+ $valid = self::$callback($var, ...$settings);
+ $valid = (StringUtils::endsWith($callback, 'Not') ? $valid : !$valid);
if (!$valid) {
return false;
diff --git a/Validation/ValidatorAbstract.php b/Validation/ValidatorAbstract.php
index af1094d1b..e6f080a4f 100644
--- a/Validation/ValidatorAbstract.php
+++ b/Validation/ValidatorAbstract.php
@@ -58,15 +58,11 @@ abstract class ValidatorAbstract implements ValidatorInterface
}
/**
- * Reset error information
- *
- * @return bool
- *
- * @since 1.0.0
+ * {@inheritdoc}
*/
public static function resetError() /* : void */
{
self::$error = 0;
- self::$msg = '';
+ self::$msg = '';
}
}
diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php
index 3caf69be0..3edc04932 100644
--- a/Validation/ValidatorInterface.php
+++ b/Validation/ValidatorInterface.php
@@ -28,7 +28,7 @@ interface ValidatorInterface
/**
* Check if value is valid.
*
- * @param mixed $value Value to validate
+ * @param mixed $value Value to validate
* @param array $constraints Constraints for validation
*
* @return bool
@@ -54,4 +54,13 @@ interface ValidatorInterface
* @since 1.0.0
*/
public static function getErrorCode() : int;
+
+ /**
+ * Reset error information
+ *
+ * @return void
+ *
+ * @since 1.0.0
+ */
+ public static function resetError() /* : void */;
}
diff --git a/Views/View.php b/Views/View.php
index 1d03fc91a..a5830ae44 100644
--- a/Views/View.php
+++ b/Views/View.php
@@ -22,7 +22,7 @@ use phpOMS\Module\Exception\InvalidModuleException;
use phpOMS\Module\Exception\InvalidThemeException;
/**
- * List view.
+ * Basic view which can be used as basis for specific implementations.
*
* @package phpOMS\Views
* @license OMS License 1.0
@@ -89,6 +89,8 @@ class View extends ViewAbstract
}
/**
+ * Get data attached to view
+ *
* @param string $id Data Id
*
* @return mixed
@@ -101,6 +103,8 @@ class View extends ViewAbstract
}
/**
+ * Set data of view
+ *
* @param string $id Data ID
* @param mixed $data Data
*
@@ -134,6 +138,8 @@ class View extends ViewAbstract
}
/**
+ * Add data to view
+ *
* @param string $id Data ID
* @param mixed $data Data
*
@@ -226,6 +232,8 @@ class View extends ViewAbstract
}
/**
+ * Get request of view
+ *
* @return RequestAbstract
*
* @since 1.0.0
@@ -236,6 +244,8 @@ class View extends ViewAbstract
}
/**
+ * Get response of view
+ *
* @return ResponseAbstract
*
* @since 1.0.0
@@ -244,5 +254,4 @@ class View extends ViewAbstract
{
return $this->response;
}
-
}
diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php
index df0c4a991..da7b1874c 100644
--- a/Views/ViewAbstract.php
+++ b/Views/ViewAbstract.php
@@ -17,8 +17,8 @@ namespace phpOMS\Views;
use phpOMS\System\File\PathException;
/**
- * List view.
- *
+ * View Abstract.
+ *
* @package phpOMS\Views
* @license OMS License 1.0
* @link http://website.orange-management.de
@@ -46,7 +46,7 @@ abstract class ViewAbstract implements \Serializable
/**
* Constructor.
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function __construct()
{
@@ -60,7 +60,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return int
*
- * @since 1.0.0
+ * @since 1.0.0
*/
private static function viewSort(array $a, array $b) : int
{
@@ -76,7 +76,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return string
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function getTemplate() : string
{
@@ -86,11 +86,11 @@ abstract class ViewAbstract implements \Serializable
/**
* Set the template.
*
- * @param string $template
+ * @param string $template View template
*
* @return void
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function setTemplate(string $template) /* : void */
{
@@ -98,9 +98,11 @@ abstract class ViewAbstract implements \Serializable
}
/**
+ * Returns all views
+ *
* @return View[]
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function getViews() : array
{
@@ -108,11 +110,13 @@ abstract class ViewAbstract implements \Serializable
}
/**
+ * Returns a specific view
+ *
* @param string $id View ID
*
* @return false|View
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function getView($id)
{
@@ -124,13 +128,13 @@ abstract class ViewAbstract implements \Serializable
}
/**
- * Remove view.
+ * Remove view bz id
*
* @param string $id View ID
*
* @return bool
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function removeView(string $id) : bool
{
@@ -147,13 +151,13 @@ abstract class ViewAbstract implements \Serializable
* Add view.
*
* @param string $id View ID
- * @param View $view
+ * @param View $view View to add
* @param int $order Order of view
* @param bool $overwrite Overwrite existing view
*
* @return bool
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) : bool
{
@@ -175,7 +179,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return string
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function serialize()
{
@@ -191,7 +195,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return array
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function toArray() : array
{
@@ -211,11 +215,11 @@ abstract class ViewAbstract implements \Serializable
/**
* Get view/template response.
*
- * @param array $data Data to pass to renderer
+ * @param array ...$data Data to pass to renderer
*
* @return string
*
- * @since 1.0.0
+ * @since 1.0.0
*/
public function render(...$data) : string
{
@@ -230,7 +234,7 @@ abstract class ViewAbstract implements \Serializable
ob_start();
/** @noinspection PhpIncludeInspection */
$includeData = include $path;
- $ob = ob_get_clean();
+ $ob = ob_get_clean();
if (is_array($includeData)) {
return json_encode($includeData);
@@ -249,11 +253,10 @@ abstract class ViewAbstract implements \Serializable
*
* @return void
*
- * @since 1.0.0
+ * @since 1.0.0
* @codeCoverageIgnore
*/
public function unserialize($raw)
{
}
-
}
diff --git a/tests/Account/AccountManagerTest.php b/tests/Account/AccountManagerTest.php
index f6deaac30..3f5a26049 100644
--- a/tests/Account/AccountManagerTest.php
+++ b/tests/Account/AccountManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Account/AccountStatusTest.php b/tests/Account/AccountStatusTest.php
index 8c565faac..2416d7417 100644
--- a/tests/Account/AccountStatusTest.php
+++ b/tests/Account/AccountStatusTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Account/AccountTest.php b/tests/Account/AccountTest.php
index 400d8bfde..02a25dde0 100644
--- a/tests/Account/AccountTest.php
+++ b/tests/Account/AccountTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Account/AccountTypeTest.php b/tests/Account/AccountTypeTest.php
index f10300e6e..34bfda202 100644
--- a/tests/Account/AccountTypeTest.php
+++ b/tests/Account/AccountTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Account/GroupStatusTest.php b/tests/Account/GroupStatusTest.php
index 900c4c93e..7cc6b226e 100644
--- a/tests/Account/GroupStatusTest.php
+++ b/tests/Account/GroupStatusTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Account/GroupTest.php b/tests/Account/GroupTest.php
index b0734203b..1e91018e9 100644
--- a/tests/Account/GroupTest.php
+++ b/tests/Account/GroupTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Account/NullAccountTest.php b/tests/Account/NullAccountTest.php
index bb15bdb7b..9af61ee81 100644
--- a/tests/Account/NullAccountTest.php
+++ b/tests/Account/NullAccountTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Account/PermissionAbstractTest.php b/tests/Account/PermissionAbstractTest.php
index d2e9dffad..366f99c08 100644
--- a/tests/Account/PermissionAbstractTest.php
+++ b/tests/Account/PermissionAbstractTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/ApplicationAbstractTest.php b/tests/ApplicationAbstractTest.php
index 7de7a68b1..91e696d8a 100644
--- a/tests/ApplicationAbstractTest.php
+++ b/tests/ApplicationAbstractTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Asset/AssetManagerTest.php b/tests/Asset/AssetManagerTest.php
index 87196e9f6..b7425361e 100644
--- a/tests/Asset/AssetManagerTest.php
+++ b/tests/Asset/AssetManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Asset/AssetTypeTest.php b/tests/Asset/AssetTypeTest.php
index 225f351b9..baf4fefac 100644
--- a/tests/Asset/AssetTypeTest.php
+++ b/tests/Asset/AssetTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Auth/AuthTest.php b/tests/Auth/AuthTest.php
index 83e953120..ce221f074 100644
--- a/tests/Auth/AuthTest.php
+++ b/tests/Auth/AuthTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Auth/LoginReturnTypeTest.php b/tests/Auth/LoginReturnTypeTest.php
index 8108ba9ff..2314ba43f 100644
--- a/tests/Auth/LoginReturnTypeTest.php
+++ b/tests/Auth/LoginReturnTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/AutoloadExceptionTest.php b/tests/AutoloadExceptionTest.php
index ff49773f7..6fa5b3050 100644
--- a/tests/AutoloadExceptionTest.php
+++ b/tests/AutoloadExceptionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/AutoloaderTest.php b/tests/AutoloaderTest.php
index 71493f3d5..0154fd4b3 100644
--- a/tests/AutoloaderTest.php
+++ b/tests/AutoloaderTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/DepreciationTest.php b/tests/Business/Finance/DepreciationTest.php
index 108b26a6f..e2570e8e2 100644
--- a/tests/Business/Finance/DepreciationTest.php
+++ b/tests/Business/Finance/DepreciationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/FinanceFormulasTest.php b/tests/Business/Finance/FinanceFormulasTest.php
index 250cd8a6e..dedfadbb4 100644
--- a/tests/Business/Finance/FinanceFormulasTest.php
+++ b/tests/Business/Finance/FinanceFormulasTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ARCHTest.php b/tests/Business/Finance/Forecasting/ARCHTest.php
index db1bfbe82..f3a915147 100644
--- a/tests/Business/Finance/Forecasting/ARCHTest.php
+++ b/tests/Business/Finance/Forecasting/ARCHTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ARFIMATest.php b/tests/Business/Finance/Forecasting/ARFIMATest.php
index 17939edca..ced63b60e 100644
--- a/tests/Business/Finance/Forecasting/ARFIMATest.php
+++ b/tests/Business/Finance/Forecasting/ARFIMATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ARIMATest.php b/tests/Business/Finance/Forecasting/ARIMATest.php
index 0b0562048..e8c3b89d4 100644
--- a/tests/Business/Finance/Forecasting/ARIMATest.php
+++ b/tests/Business/Finance/Forecasting/ARIMATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ARMATest.php b/tests/Business/Finance/Forecasting/ARMATest.php
index 13a7baca6..5cc74142a 100644
--- a/tests/Business/Finance/Forecasting/ARMATest.php
+++ b/tests/Business/Finance/Forecasting/ARMATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ARTest.php b/tests/Business/Finance/Forecasting/ARTest.php
index 0147f8e14..4f0945ba0 100644
--- a/tests/Business/Finance/Forecasting/ARTest.php
+++ b/tests/Business/Finance/Forecasting/ARTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ClassicalDecompositionTest.php b/tests/Business/Finance/Forecasting/ClassicalDecompositionTest.php
index f0da03b42..9172bb7ef 100644
--- a/tests/Business/Finance/Forecasting/ClassicalDecompositionTest.php
+++ b/tests/Business/Finance/Forecasting/ClassicalDecompositionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothingTest.php b/tests/Business/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothingTest.php
index 7ffd4353e..194e76569 100644
--- a/tests/Business/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothingTest.php
+++ b/tests/Business/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothingTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ExponentialSmoothing/SeasonalTypeTest.php b/tests/Business/Finance/Forecasting/ExponentialSmoothing/SeasonalTypeTest.php
index fb76216ba..7d8849325 100644
--- a/tests/Business/Finance/Forecasting/ExponentialSmoothing/SeasonalTypeTest.php
+++ b/tests/Business/Finance/Forecasting/ExponentialSmoothing/SeasonalTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/ExponentialSmoothing/TrendTypeTest.php b/tests/Business/Finance/Forecasting/ExponentialSmoothing/TrendTypeTest.php
index cf4c18af6..3a60df1db 100644
--- a/tests/Business/Finance/Forecasting/ExponentialSmoothing/TrendTypeTest.php
+++ b/tests/Business/Finance/Forecasting/ExponentialSmoothing/TrendTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/GARCHTest.php b/tests/Business/Finance/Forecasting/GARCHTest.php
index 87bfce8ce..ce70c9428 100644
--- a/tests/Business/Finance/Forecasting/GARCHTest.php
+++ b/tests/Business/Finance/Forecasting/GARCHTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/MATest.php b/tests/Business/Finance/Forecasting/MATest.php
index f6eb204f7..c88380ba1 100644
--- a/tests/Business/Finance/Forecasting/MATest.php
+++ b/tests/Business/Finance/Forecasting/MATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/NARTest.php b/tests/Business/Finance/Forecasting/NARTest.php
index 039f7d32e..b00f87ca1 100644
--- a/tests/Business/Finance/Forecasting/NARTest.php
+++ b/tests/Business/Finance/Forecasting/NARTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/NMATest.php b/tests/Business/Finance/Forecasting/NMATest.php
index 08d2a2a75..18498c78d 100644
--- a/tests/Business/Finance/Forecasting/NMATest.php
+++ b/tests/Business/Finance/Forecasting/NMATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/SARIMATest.php b/tests/Business/Finance/Forecasting/SARIMATest.php
index 4fc184ddd..84311e92c 100644
--- a/tests/Business/Finance/Forecasting/SARIMATest.php
+++ b/tests/Business/Finance/Forecasting/SARIMATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/Forecasting/SmoothingTypeTest.php b/tests/Business/Finance/Forecasting/SmoothingTypeTest.php
index bbd43eaad..cfb9085fe 100644
--- a/tests/Business/Finance/Forecasting/SmoothingTypeTest.php
+++ b/tests/Business/Finance/Forecasting/SmoothingTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/LoanTest.php b/tests/Business/Finance/LoanTest.php
index 60698dfc0..9d611ea2f 100644
--- a/tests/Business/Finance/LoanTest.php
+++ b/tests/Business/Finance/LoanTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/LorenzkurveTest.php b/tests/Business/Finance/LorenzkurveTest.php
index 1b0c85a15..106a0cd3e 100644
--- a/tests/Business/Finance/LorenzkurveTest.php
+++ b/tests/Business/Finance/LorenzkurveTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Finance/StockBondsTest.php b/tests/Business/Finance/StockBondsTest.php
index 942f9f34a..9030cfef8 100644
--- a/tests/Business/Finance/StockBondsTest.php
+++ b/tests/Business/Finance/StockBondsTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Marketing/NetPromoterScoreTest.php b/tests/Business/Marketing/NetPromoterScoreTest.php
index 79d31d789..9d631bcb5 100644
--- a/tests/Business/Marketing/NetPromoterScoreTest.php
+++ b/tests/Business/Marketing/NetPromoterScoreTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Business/Sales/MarketShareEstimationTest.php b/tests/Business/Sales/MarketShareEstimationTest.php
index 46bcaf311..52750ccac 100644
--- a/tests/Business/Sales/MarketShareEstimationTest.php
+++ b/tests/Business/Sales/MarketShareEstimationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Config/OptionsTraitTest.php b/tests/Config/OptionsTraitTest.php
index 1c357142a..89c498e04 100644
--- a/tests/Config/OptionsTraitTest.php
+++ b/tests/Config/OptionsTraitTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Console/CommandManagerTest.php b/tests/Console/CommandManagerTest.php
index caad07ed1..ec101d732 100644
--- a/tests/Console/CommandManagerTest.php
+++ b/tests/Console/CommandManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Cache/CacheFactoryTest.php b/tests/DataStorage/Cache/CacheFactoryTest.php
index 165ce6dd3..ab8536e51 100644
--- a/tests/DataStorage/Cache/CacheFactoryTest.php
+++ b/tests/DataStorage/Cache/CacheFactoryTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Cache/CachePoolTest.php b/tests/DataStorage/Cache/CachePoolTest.php
index 981556d0f..552199f83 100644
--- a/tests/DataStorage/Cache/CachePoolTest.php
+++ b/tests/DataStorage/Cache/CachePoolTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Cache/CacheStatusTest.php b/tests/DataStorage/Cache/CacheStatusTest.php
index f27a1b3f1..86fe0dd40 100644
--- a/tests/DataStorage/Cache/CacheStatusTest.php
+++ b/tests/DataStorage/Cache/CacheStatusTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Cache/CacheTypeTest.php b/tests/DataStorage/Cache/CacheTypeTest.php
index 62e52687b..1aab1a68b 100644
--- a/tests/DataStorage/Cache/CacheTypeTest.php
+++ b/tests/DataStorage/Cache/CacheTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Cache/NullCacheTest.php b/tests/DataStorage/Cache/NullCacheTest.php
index 196044121..f1e344ed8 100644
--- a/tests/DataStorage/Cache/NullCacheTest.php
+++ b/tests/DataStorage/Cache/NullCacheTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Cookie/CookieJarTest.php b/tests/DataStorage/Cookie/CookieJarTest.php
index ee711c291..42734075b 100644
--- a/tests/DataStorage/Cookie/CookieJarTest.php
+++ b/tests/DataStorage/Cookie/CookieJarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php b/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php
index 10bfb72bd..d43535ccf 100644
--- a/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php
+++ b/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Connection/MysqlConnectionTest.php b/tests/DataStorage/Database/Connection/MysqlConnectionTest.php
index bd4cccb3a..745b36a72 100644
--- a/tests/DataStorage/Database/Connection/MysqlConnectionTest.php
+++ b/tests/DataStorage/Database/Connection/MysqlConnectionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Connection/PostgresConnectionTest.php b/tests/DataStorage/Database/Connection/PostgresConnectionTest.php
index cb7302fe1..dcacb8179 100644
--- a/tests/DataStorage/Database/Connection/PostgresConnectionTest.php
+++ b/tests/DataStorage/Database/Connection/PostgresConnectionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php b/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php
index ef5bc7b67..012008761 100644
--- a/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php
+++ b/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php b/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php
index d4ec8f495..bdfa8225c 100644
--- a/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php
+++ b/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/DataMapperAbstractTest.php b/tests/DataStorage/Database/DataMapperAbstractTest.php
index ca58963a2..89102c280 100644
--- a/tests/DataStorage/Database/DataMapperAbstractTest.php
+++ b/tests/DataStorage/Database/DataMapperAbstractTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php b/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php
index b5b71d084..59a3ac4e0 100644
--- a/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php
+++ b/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/DatabasePoolTest.php b/tests/DataStorage/Database/DatabasePoolTest.php
index 2a461721f..014a72e7e 100644
--- a/tests/DataStorage/Database/DatabasePoolTest.php
+++ b/tests/DataStorage/Database/DatabasePoolTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/DatabaseStatusTest.php b/tests/DataStorage/Database/DatabaseStatusTest.php
index 9347837ed..929d085dc 100644
--- a/tests/DataStorage/Database/DatabaseStatusTest.php
+++ b/tests/DataStorage/Database/DatabaseStatusTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/DatabaseTypeTest.php b/tests/DataStorage/Database/DatabaseTypeTest.php
index 9df56b54d..c54421b7f 100644
--- a/tests/DataStorage/Database/DatabaseTypeTest.php
+++ b/tests/DataStorage/Database/DatabaseTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/BuilderTest.php b/tests/DataStorage/Database/Query/BuilderTest.php
index 27e15f306..7b0b46b68 100644
--- a/tests/DataStorage/Database/Query/BuilderTest.php
+++ b/tests/DataStorage/Database/Query/BuilderTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/ColumnTest.php b/tests/DataStorage/Database/Query/ColumnTest.php
index b7fe3b694..8bbbd63b4 100644
--- a/tests/DataStorage/Database/Query/ColumnTest.php
+++ b/tests/DataStorage/Database/Query/ColumnTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/CountTest.php b/tests/DataStorage/Database/Query/CountTest.php
index 96af65bad..e2f0e5d0c 100644
--- a/tests/DataStorage/Database/Query/CountTest.php
+++ b/tests/DataStorage/Database/Query/CountTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/ExpressionTest.php b/tests/DataStorage/Database/Query/ExpressionTest.php
index b04a4f72b..caf55442a 100644
--- a/tests/DataStorage/Database/Query/ExpressionTest.php
+++ b/tests/DataStorage/Database/Query/ExpressionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/FromTest.php b/tests/DataStorage/Database/Query/FromTest.php
index 8ee74fb35..e25bb0e12 100644
--- a/tests/DataStorage/Database/Query/FromTest.php
+++ b/tests/DataStorage/Database/Query/FromTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/Grammar/GrammarTest.php b/tests/DataStorage/Database/Query/Grammar/GrammarTest.php
index 7e98a8772..fd28efaf7 100644
--- a/tests/DataStorage/Database/Query/Grammar/GrammarTest.php
+++ b/tests/DataStorage/Database/Query/Grammar/GrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php
index 759f32cac..3456f74f2 100644
--- a/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php
+++ b/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php
index 4e349f53e..4c4d7cca6 100644
--- a/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php
+++ b/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php
index 47a3bc149..3d9f2d6e3 100644
--- a/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php
+++ b/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php
index d1dd45110..e55b520f7 100644
--- a/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php
+++ b/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php
index cdd4db84d..c90911ae5 100644
--- a/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php
+++ b/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/IntoTest.php b/tests/DataStorage/Database/Query/IntoTest.php
index 9bc780507..2f439df13 100644
--- a/tests/DataStorage/Database/Query/IntoTest.php
+++ b/tests/DataStorage/Database/Query/IntoTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/JoinTypeTest.php b/tests/DataStorage/Database/Query/JoinTypeTest.php
index c56507431..910df69f6 100644
--- a/tests/DataStorage/Database/Query/JoinTypeTest.php
+++ b/tests/DataStorage/Database/Query/JoinTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/QueryTypeTest.php b/tests/DataStorage/Database/Query/QueryTypeTest.php
index 5f8ab1d0e..047e135c1 100644
--- a/tests/DataStorage/Database/Query/QueryTypeTest.php
+++ b/tests/DataStorage/Database/Query/QueryTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/SelectTest.php b/tests/DataStorage/Database/Query/SelectTest.php
index b480592cb..8f3785e56 100644
--- a/tests/DataStorage/Database/Query/SelectTest.php
+++ b/tests/DataStorage/Database/Query/SelectTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Query/WhereTest.php b/tests/DataStorage/Database/Query/WhereTest.php
index 4d0828826..8af3aac80 100644
--- a/tests/DataStorage/Database/Query/WhereTest.php
+++ b/tests/DataStorage/Database/Query/WhereTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/RelationTypeTest.php b/tests/DataStorage/Database/RelationTypeTest.php
index ece676f3b..3946c5081 100644
--- a/tests/DataStorage/Database/RelationTypeTest.php
+++ b/tests/DataStorage/Database/RelationTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Schema/BuilderTest.php b/tests/DataStorage/Database/Schema/BuilderTest.php
index e344c0d0a..c247b0e46 100644
--- a/tests/DataStorage/Database/Schema/BuilderTest.php
+++ b/tests/DataStorage/Database/Schema/BuilderTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php b/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php
index 6695b401c..1a7c1eea6 100644
--- a/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php
+++ b/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php
index 006031eb9..089ed7bc9 100644
--- a/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php
+++ b/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php
index 00ed94c4e..7ac9aaecc 100644
--- a/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php
+++ b/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php
index 1279614cc..ddea8989c 100644
--- a/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php
+++ b/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php
index c423e3d03..3ed86b8b1 100644
--- a/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php
+++ b/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php
index 7be96e2c8..3813e0034 100644
--- a/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php
+++ b/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/Schema/QueryTypeTest.php b/tests/DataStorage/Database/Schema/QueryTypeTest.php
index 8de7333d8..189f07223 100644
--- a/tests/DataStorage/Database/Schema/QueryTypeTest.php
+++ b/tests/DataStorage/Database/Schema/QueryTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Database/TestModel/BaseModel.php b/tests/DataStorage/Database/TestModel/BaseModel.php
index 962fddda8..e5d1b2652 100644
--- a/tests/DataStorage/Database/TestModel/BaseModel.php
+++ b/tests/DataStorage/Database/TestModel/BaseModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -75,4 +74,4 @@ class BaseModel
}
};
}
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/BelongsToModel.php b/tests/DataStorage/Database/TestModel/BelongsToModel.php
index 1316e4880..0c6aa3652 100644
--- a/tests/DataStorage/Database/TestModel/BelongsToModel.php
+++ b/tests/DataStorage/Database/TestModel/BelongsToModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -19,4 +18,4 @@ class BelongsToModel
public $id = 0;
public $string = 'BelongsTo';
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php b/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php
index 1a3aea986..21f53ecad 100644
--- a/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php
+++ b/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -21,4 +20,4 @@ class ManyToManyDirectModel
public $string = 'ManyToManyDirect';
public $to = 0;
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php b/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php
index 590d276cf..f2d2a5110 100644
--- a/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php
+++ b/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -19,4 +18,4 @@ class ManyToManyRelModel
public $id = 0;
public $string = 'ManyToManyRel';
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/NullBaseModel.php b/tests/DataStorage/Database/TestModel/NullBaseModel.php
index 95dcfc498..47a75ebd6 100644
--- a/tests/DataStorage/Database/TestModel/NullBaseModel.php
+++ b/tests/DataStorage/Database/TestModel/NullBaseModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -16,4 +15,4 @@ namespace phpOMS\tests\DataStorage\Database\TestModel;
class NullBaseModel extends BaseModel
{
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/NullBelongsToModel.php b/tests/DataStorage/Database/TestModel/NullBelongsToModel.php
index a90d69070..56496f748 100644
--- a/tests/DataStorage/Database/TestModel/NullBelongsToModel.php
+++ b/tests/DataStorage/Database/TestModel/NullBelongsToModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -16,4 +15,4 @@ namespace phpOMS\tests\DataStorage\Database\TestModel;
class NullBelongsToModel extends BelongsToModel
{
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php b/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php
index a70dd573c..764612635 100644
--- a/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php
+++ b/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -16,4 +15,4 @@ namespace phpOMS\tests\DataStorage\Database\TestModel;
class NullManyToManyDirectModel extends ManyToManyDirectModel
{
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php b/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php
index 8fdbc8601..9690d6d92 100644
--- a/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php
+++ b/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -16,4 +15,4 @@ namespace phpOMS\tests\DataStorage\Database\TestModel;
class NullManyToManyRelModel extends ManyToManyRelModel
{
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php b/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php
index faf36b35b..831e0f76e 100644
--- a/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php
+++ b/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -16,4 +15,4 @@ namespace phpOMS\tests\DataStorage\Database\TestModel;
class NullOwnsOneModel extends OwnsOneModel
{
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/Database/TestModel/OwnsOneModel.php b/tests/DataStorage/Database/TestModel/OwnsOneModel.php
index a5f00c455..d005d83b3 100644
--- a/tests/DataStorage/Database/TestModel/OwnsOneModel.php
+++ b/tests/DataStorage/Database/TestModel/OwnsOneModel.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@@ -19,4 +18,4 @@ class OwnsOneModel
public $id = 0;
public $string = 'OwnsOne';
-}
\ No newline at end of file
+}
diff --git a/tests/DataStorage/LockExceptionTest.php b/tests/DataStorage/LockExceptionTest.php
index e561c8e88..d92dbf997 100644
--- a/tests/DataStorage/LockExceptionTest.php
+++ b/tests/DataStorage/LockExceptionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Session/ConsoleSessionTest.php b/tests/DataStorage/Session/ConsoleSessionTest.php
index e1f78f221..0857df154 100644
--- a/tests/DataStorage/Session/ConsoleSessionTest.php
+++ b/tests/DataStorage/Session/ConsoleSessionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Session/HttpSessionTest.php b/tests/DataStorage/Session/HttpSessionTest.php
index 1682f6c17..c9988d310 100644
--- a/tests/DataStorage/Session/HttpSessionTest.php
+++ b/tests/DataStorage/Session/HttpSessionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Session/SocketSessionTest.php b/tests/DataStorage/Session/SocketSessionTest.php
index 9d4401e23..5e95e1934 100644
--- a/tests/DataStorage/Session/SocketSessionTest.php
+++ b/tests/DataStorage/Session/SocketSessionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/DataStorage/Web/BuilderTest.php b/tests/DataStorage/Web/BuilderTest.php
index 0b0a2bcc3..0392c9843 100644
--- a/tests/DataStorage/Web/BuilderTest.php
+++ b/tests/DataStorage/Web/BuilderTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Dispatcher/DispatcherTest.php b/tests/Dispatcher/DispatcherTest.php
index 270c91f35..fead2657e 100644
--- a/tests/Dispatcher/DispatcherTest.php
+++ b/tests/Dispatcher/DispatcherTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Dispatcher/TestController.php b/tests/Dispatcher/TestController.php
index 041361105..4addf7c32 100644
--- a/tests/Dispatcher/TestController.php
+++ b/tests/Dispatcher/TestController.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Event/EventManagerTest.php b/tests/Event/EventManagerTest.php
index c25fe92ac..1b875b0cc 100644
--- a/tests/Event/EventManagerTest.php
+++ b/tests/Event/EventManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO3166CharEnumTest.php b/tests/Localization/ISO3166CharEnumTest.php
index 826a0f103..73c97773f 100644
--- a/tests/Localization/ISO3166CharEnumTest.php
+++ b/tests/Localization/ISO3166CharEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO3166NameEnumTest.php b/tests/Localization/ISO3166NameEnumTest.php
index 9c1ddebb4..64cab0b14 100644
--- a/tests/Localization/ISO3166NameEnumTest.php
+++ b/tests/Localization/ISO3166NameEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO3166NumEnumTest.php b/tests/Localization/ISO3166NumEnumTest.php
index e0cafb977..ecf5da778 100644
--- a/tests/Localization/ISO3166NumEnumTest.php
+++ b/tests/Localization/ISO3166NumEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO3166TwoEnumTest.php b/tests/Localization/ISO3166TwoEnumTest.php
index e4b5599f3..83575fbc9 100644
--- a/tests/Localization/ISO3166TwoEnumTest.php
+++ b/tests/Localization/ISO3166TwoEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO4217CharEnumTest.php b/tests/Localization/ISO4217CharEnumTest.php
index 0c23905fd..2f04cdaea 100644
--- a/tests/Localization/ISO4217CharEnumTest.php
+++ b/tests/Localization/ISO4217CharEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO4217DecimalEnumTest.php b/tests/Localization/ISO4217DecimalEnumTest.php
index 2220eb245..22f69e383 100644
--- a/tests/Localization/ISO4217DecimalEnumTest.php
+++ b/tests/Localization/ISO4217DecimalEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO4217EnumTest.php b/tests/Localization/ISO4217EnumTest.php
index d71d7e323..01be11f66 100644
--- a/tests/Localization/ISO4217EnumTest.php
+++ b/tests/Localization/ISO4217EnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO4217NumEnumTest.php b/tests/Localization/ISO4217NumEnumTest.php
index 0674bbaeb..07ed622e5 100644
--- a/tests/Localization/ISO4217NumEnumTest.php
+++ b/tests/Localization/ISO4217NumEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO4217SubUnitEnumTest.php b/tests/Localization/ISO4217SubUnitEnumTest.php
index 8842fe2d1..3a1180a14 100644
--- a/tests/Localization/ISO4217SubUnitEnumTest.php
+++ b/tests/Localization/ISO4217SubUnitEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO4217SymbolEnumTest.php b/tests/Localization/ISO4217SymbolEnumTest.php
index 0f33ce472..ca6b7f423 100644
--- a/tests/Localization/ISO4217SymbolEnumTest.php
+++ b/tests/Localization/ISO4217SymbolEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO639EnumTest.php b/tests/Localization/ISO639EnumTest.php
index 290176512..0b65db9a3 100644
--- a/tests/Localization/ISO639EnumTest.php
+++ b/tests/Localization/ISO639EnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO639x1EnumTest.php b/tests/Localization/ISO639x1EnumTest.php
index b9fec0465..e5820f1fd 100644
--- a/tests/Localization/ISO639x1EnumTest.php
+++ b/tests/Localization/ISO639x1EnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO639x2EnumTest.php b/tests/Localization/ISO639x2EnumTest.php
index c4dd7937a..56bced5f1 100644
--- a/tests/Localization/ISO639x2EnumTest.php
+++ b/tests/Localization/ISO639x2EnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/ISO8601EnumArrayTest.php b/tests/Localization/ISO8601EnumArrayTest.php
index a2c1b230c..a5be86bee 100644
--- a/tests/Localization/ISO8601EnumArrayTest.php
+++ b/tests/Localization/ISO8601EnumArrayTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/L11nManagerTest.php b/tests/Localization/L11nManagerTest.php
index cf71c0523..a43e1551e 100644
--- a/tests/Localization/L11nManagerTest.php
+++ b/tests/Localization/L11nManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/LocalizationTest.php b/tests/Localization/LocalizationTest.php
index e2a1ebc74..675182597 100644
--- a/tests/Localization/LocalizationTest.php
+++ b/tests/Localization/LocalizationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/MoneyTest.php b/tests/Localization/MoneyTest.php
index ac0cc6fe4..9ee966a40 100644
--- a/tests/Localization/MoneyTest.php
+++ b/tests/Localization/MoneyTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/NullLocalizationTest.php b/tests/Localization/NullLocalizationTest.php
index 4ebc0c313..1164d9d89 100644
--- a/tests/Localization/NullLocalizationTest.php
+++ b/tests/Localization/NullLocalizationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/PhoneEnumTest.php b/tests/Localization/PhoneEnumTest.php
index 5add39fd8..f09512678 100644
--- a/tests/Localization/PhoneEnumTest.php
+++ b/tests/Localization/PhoneEnumTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Localization/TimeZoneEnumArrayTest.php b/tests/Localization/TimeZoneEnumArrayTest.php
index bfa06cd12..4c2903e6b 100644
--- a/tests/Localization/TimeZoneEnumArrayTest.php
+++ b/tests/Localization/TimeZoneEnumArrayTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Log/FileLoggerTest.php b/tests/Log/FileLoggerTest.php
index 50bfa57ed..1dd2b9c09 100644
--- a/tests/Log/FileLoggerTest.php
+++ b/tests/Log/FileLoggerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Log/LogLevelTest.php b/tests/Log/LogLevelTest.php
index 4986724b7..d47577331 100644
--- a/tests/Log/LogLevelTest.php
+++ b/tests/Log/LogLevelTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Differential/FiniteDifferenceTest.php b/tests/Math/Differential/FiniteDifferenceTest.php
index aa772590a..47bad8a4a 100644
--- a/tests/Math/Differential/FiniteDifferenceTest.php
+++ b/tests/Math/Differential/FiniteDifferenceTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Functions/FibunacciTest.php b/tests/Math/Functions/FibunacciTest.php
index ca71ad05c..4e0ee4699 100644
--- a/tests/Math/Functions/FibunacciTest.php
+++ b/tests/Math/Functions/FibunacciTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Functions/FunctionsTest.php b/tests/Math/Functions/FunctionsTest.php
index ed3efcb15..c5d5a625e 100644
--- a/tests/Math/Functions/FunctionsTest.php
+++ b/tests/Math/Functions/FunctionsTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php b/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php
index a16d4bee7..a589eb426 100644
--- a/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php
+++ b/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D2/CircleTest.php b/tests/Math/Geometry/Shape/D2/CircleTest.php
index 20e7d03fc..227198549 100644
--- a/tests/Math/Geometry/Shape/D2/CircleTest.php
+++ b/tests/Math/Geometry/Shape/D2/CircleTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D2/EllipseTest.php b/tests/Math/Geometry/Shape/D2/EllipseTest.php
index e091ff138..fa2109253 100644
--- a/tests/Math/Geometry/Shape/D2/EllipseTest.php
+++ b/tests/Math/Geometry/Shape/D2/EllipseTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D2/PolygonTest.php b/tests/Math/Geometry/Shape/D2/PolygonTest.php
index efedab107..9236b7f6c 100644
--- a/tests/Math/Geometry/Shape/D2/PolygonTest.php
+++ b/tests/Math/Geometry/Shape/D2/PolygonTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php b/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php
index 3272c9dd3..a82e13be3 100644
--- a/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php
+++ b/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D2/RectangleTest.php b/tests/Math/Geometry/Shape/D2/RectangleTest.php
index 11d4c0d31..28c074cb1 100644
--- a/tests/Math/Geometry/Shape/D2/RectangleTest.php
+++ b/tests/Math/Geometry/Shape/D2/RectangleTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D2/TrapezoidTest.php b/tests/Math/Geometry/Shape/D2/TrapezoidTest.php
index 3b2cea192..91519b961 100644
--- a/tests/Math/Geometry/Shape/D2/TrapezoidTest.php
+++ b/tests/Math/Geometry/Shape/D2/TrapezoidTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D2/TriangleTest.php b/tests/Math/Geometry/Shape/D2/TriangleTest.php
index f929a45a6..9ea9c65cb 100644
--- a/tests/Math/Geometry/Shape/D2/TriangleTest.php
+++ b/tests/Math/Geometry/Shape/D2/TriangleTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D3/ConeTest.php b/tests/Math/Geometry/Shape/D3/ConeTest.php
index eb2eee8a1..27b3a22de 100644
--- a/tests/Math/Geometry/Shape/D3/ConeTest.php
+++ b/tests/Math/Geometry/Shape/D3/ConeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D3/CuboidTest.php b/tests/Math/Geometry/Shape/D3/CuboidTest.php
index 48df9c75c..46dfcfde7 100644
--- a/tests/Math/Geometry/Shape/D3/CuboidTest.php
+++ b/tests/Math/Geometry/Shape/D3/CuboidTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D3/CylinderTest.php b/tests/Math/Geometry/Shape/D3/CylinderTest.php
index 4127ee672..25c609981 100644
--- a/tests/Math/Geometry/Shape/D3/CylinderTest.php
+++ b/tests/Math/Geometry/Shape/D3/CylinderTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D3/PrismTest.php b/tests/Math/Geometry/Shape/D3/PrismTest.php
index 2ca417e9b..6702305bc 100644
--- a/tests/Math/Geometry/Shape/D3/PrismTest.php
+++ b/tests/Math/Geometry/Shape/D3/PrismTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php b/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php
index 93ce563af..567231004 100644
--- a/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php
+++ b/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D3/SphereTest.php b/tests/Math/Geometry/Shape/D3/SphereTest.php
index 98b8c75d6..6e7a912bc 100644
--- a/tests/Math/Geometry/Shape/D3/SphereTest.php
+++ b/tests/Math/Geometry/Shape/D3/SphereTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Geometry/Shape/D3/TetrahedronTest.php b/tests/Math/Geometry/Shape/D3/TetrahedronTest.php
index 6fce1f5ab..f6a0d014a 100644
--- a/tests/Math/Geometry/Shape/D3/TetrahedronTest.php
+++ b/tests/Math/Geometry/Shape/D3/TetrahedronTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Integral/GaussTest.php b/tests/Math/Integral/GaussTest.php
index 8276e2cfc..fc08b8a2e 100644
--- a/tests/Math/Integral/GaussTest.php
+++ b/tests/Math/Integral/GaussTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Matrix/CholeskyDecompositionTest.php b/tests/Math/Matrix/CholeskyDecompositionTest.php
index 29169b61c..9691a135c 100644
--- a/tests/Math/Matrix/CholeskyDecompositionTest.php
+++ b/tests/Math/Matrix/CholeskyDecompositionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Matrix/IdentityMatrixTest.php b/tests/Math/Matrix/IdentityMatrixTest.php
index c85f21657..9f0f24aca 100644
--- a/tests/Math/Matrix/IdentityMatrixTest.php
+++ b/tests/Math/Matrix/IdentityMatrixTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Matrix/InverseTypeTest.php b/tests/Math/Matrix/InverseTypeTest.php
index 92c0b7362..0e937ba69 100644
--- a/tests/Math/Matrix/InverseTypeTest.php
+++ b/tests/Math/Matrix/InverseTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Matrix/LUDecompositionTest.php b/tests/Math/Matrix/LUDecompositionTest.php
index 220204f01..d9f69505c 100644
--- a/tests/Math/Matrix/LUDecompositionTest.php
+++ b/tests/Math/Matrix/LUDecompositionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Matrix/MatrixTest.php b/tests/Math/Matrix/MatrixTest.php
index f62b893a6..9fa4aa82c 100644
--- a/tests/Math/Matrix/MatrixTest.php
+++ b/tests/Math/Matrix/MatrixTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Matrix/VectorTest.php b/tests/Math/Matrix/VectorTest.php
index 775f6e2e6..1899ccb56 100644
--- a/tests/Math/Matrix/VectorTest.php
+++ b/tests/Math/Matrix/VectorTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Number/ComplexTest.php b/tests/Math/Number/ComplexTest.php
index 9c2c43f75..b8ea4d1e2 100644
--- a/tests/Math/Number/ComplexTest.php
+++ b/tests/Math/Number/ComplexTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Number/IntegerTest.php b/tests/Math/Number/IntegerTest.php
index 3f969c7f7..973bdfb3b 100644
--- a/tests/Math/Number/IntegerTest.php
+++ b/tests/Math/Number/IntegerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Number/NaturalTest.php b/tests/Math/Number/NaturalTest.php
index d91fe514b..a369e00f9 100644
--- a/tests/Math/Number/NaturalTest.php
+++ b/tests/Math/Number/NaturalTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Number/NumberTypeTest.php b/tests/Math/Number/NumberTypeTest.php
index a421a821e..bb760146c 100644
--- a/tests/Math/Number/NumberTypeTest.php
+++ b/tests/Math/Number/NumberTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Number/NumbersTest.php b/tests/Math/Number/NumbersTest.php
index 1feabffcc..29a60846c 100644
--- a/tests/Math/Number/NumbersTest.php
+++ b/tests/Math/Number/NumbersTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Number/PrimeTest.php b/tests/Math/Number/PrimeTest.php
index 379d89809..90dafa8ab 100644
--- a/tests/Math/Number/PrimeTest.php
+++ b/tests/Math/Number/PrimeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php b/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php
index 30604f593..3402b0f4d 100644
--- a/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php
+++ b/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php b/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php
index c8795dd34..01ca8cc45 100644
--- a/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php
+++ b/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php b/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php
index 4696d6788..198d3a889 100644
--- a/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php
+++ b/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Graph/DijkstraTest.php b/tests/Math/Optimization/Graph/DijkstraTest.php
index 6a89f914c..586990eff 100644
--- a/tests/Math/Optimization/Graph/DijkstraTest.php
+++ b/tests/Math/Optimization/Graph/DijkstraTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Graph/FloydWarshallTest.php b/tests/Math/Optimization/Graph/FloydWarshallTest.php
index 59c6ce2d0..81183ce17 100644
--- a/tests/Math/Optimization/Graph/FloydWarshallTest.php
+++ b/tests/Math/Optimization/Graph/FloydWarshallTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Graph/GraphTest.php b/tests/Math/Optimization/Graph/GraphTest.php
index 512445093..a6b41bf22 100644
--- a/tests/Math/Optimization/Graph/GraphTest.php
+++ b/tests/Math/Optimization/Graph/GraphTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Graph/NullEdgeTest.php b/tests/Math/Optimization/Graph/NullEdgeTest.php
index 3739e5bb6..13f94e970 100644
--- a/tests/Math/Optimization/Graph/NullEdgeTest.php
+++ b/tests/Math/Optimization/Graph/NullEdgeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Graph/NullVerticeTest.php b/tests/Math/Optimization/Graph/NullVerticeTest.php
index 8268b90e1..7d312c047 100644
--- a/tests/Math/Optimization/Graph/NullVerticeTest.php
+++ b/tests/Math/Optimization/Graph/NullVerticeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Knappsack/BackpackTest.php b/tests/Math/Optimization/Knappsack/BackpackTest.php
index 891d34ec5..66ececa7d 100644
--- a/tests/Math/Optimization/Knappsack/BackpackTest.php
+++ b/tests/Math/Optimization/Knappsack/BackpackTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Knappsack/BruteForceTest.php b/tests/Math/Optimization/Knappsack/BruteForceTest.php
index 061be871a..fa86ae859 100644
--- a/tests/Math/Optimization/Knappsack/BruteForceTest.php
+++ b/tests/Math/Optimization/Knappsack/BruteForceTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Knappsack/GATest.php b/tests/Math/Optimization/Knappsack/GATest.php
index ffe0496fa..0541da3dd 100644
--- a/tests/Math/Optimization/Knappsack/GATest.php
+++ b/tests/Math/Optimization/Knappsack/GATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Knappsack/ItemPoolTest.php b/tests/Math/Optimization/Knappsack/ItemPoolTest.php
index 54c190319..967f85a06 100644
--- a/tests/Math/Optimization/Knappsack/ItemPoolTest.php
+++ b/tests/Math/Optimization/Knappsack/ItemPoolTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Knappsack/ItemTest.php b/tests/Math/Optimization/Knappsack/ItemTest.php
index 39328d439..c076ae400 100644
--- a/tests/Math/Optimization/Knappsack/ItemTest.php
+++ b/tests/Math/Optimization/Knappsack/ItemTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/Knappsack/PopulationTest.php b/tests/Math/Optimization/Knappsack/PopulationTest.php
index 78a081ace..f4f8603c9 100644
--- a/tests/Math/Optimization/Knappsack/PopulationTest.php
+++ b/tests/Math/Optimization/Knappsack/PopulationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/ShiftScheduling/BruteForceTest.php b/tests/Math/Optimization/ShiftScheduling/BruteForceTest.php
index 4620ef563..7a0df46f0 100644
--- a/tests/Math/Optimization/ShiftScheduling/BruteForceTest.php
+++ b/tests/Math/Optimization/ShiftScheduling/BruteForceTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/ShiftScheduling/GATest.php b/tests/Math/Optimization/ShiftScheduling/GATest.php
index 91d942571..0f7b6baaa 100644
--- a/tests/Math/Optimization/ShiftScheduling/GATest.php
+++ b/tests/Math/Optimization/ShiftScheduling/GATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/ShiftScheduling/PopulationTest.php b/tests/Math/Optimization/ShiftScheduling/PopulationTest.php
index d3f9b5318..ce23188d3 100644
--- a/tests/Math/Optimization/ShiftScheduling/PopulationTest.php
+++ b/tests/Math/Optimization/ShiftScheduling/PopulationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/ShiftScheduling/WorkdayTest.php b/tests/Math/Optimization/ShiftScheduling/WorkdayTest.php
index 150ddcadf..a245ea564 100644
--- a/tests/Math/Optimization/ShiftScheduling/WorkdayTest.php
+++ b/tests/Math/Optimization/ShiftScheduling/WorkdayTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/ShiftScheduling/WorkerPoolTest.php b/tests/Math/Optimization/ShiftScheduling/WorkerPoolTest.php
index 4556507dd..abf2e51c8 100644
--- a/tests/Math/Optimization/ShiftScheduling/WorkerPoolTest.php
+++ b/tests/Math/Optimization/ShiftScheduling/WorkerPoolTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/ShiftScheduling/WorkerTest.php b/tests/Math/Optimization/ShiftScheduling/WorkerTest.php
index d38c5f7a9..9c0523ffd 100644
--- a/tests/Math/Optimization/ShiftScheduling/WorkerTest.php
+++ b/tests/Math/Optimization/ShiftScheduling/WorkerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/TSP/BruteForceTest.php b/tests/Math/Optimization/TSP/BruteForceTest.php
index 48c9882d6..e045cea3c 100644
--- a/tests/Math/Optimization/TSP/BruteForceTest.php
+++ b/tests/Math/Optimization/TSP/BruteForceTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/TSP/CityPoolTest.php b/tests/Math/Optimization/TSP/CityPoolTest.php
index df2271b9f..4b0b2c2d1 100644
--- a/tests/Math/Optimization/TSP/CityPoolTest.php
+++ b/tests/Math/Optimization/TSP/CityPoolTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/TSP/CityTest.php b/tests/Math/Optimization/TSP/CityTest.php
index a2758bb9e..5675638fa 100644
--- a/tests/Math/Optimization/TSP/CityTest.php
+++ b/tests/Math/Optimization/TSP/CityTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/TSP/GATest.php b/tests/Math/Optimization/TSP/GATest.php
index d8f88f095..4102c5e26 100644
--- a/tests/Math/Optimization/TSP/GATest.php
+++ b/tests/Math/Optimization/TSP/GATest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/TSP/PopulationTest.php b/tests/Math/Optimization/TSP/PopulationTest.php
index a544ca69e..59a12d380 100644
--- a/tests/Math/Optimization/TSP/PopulationTest.php
+++ b/tests/Math/Optimization/TSP/PopulationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Optimization/TSP/TourTest.php b/tests/Math/Optimization/TSP/TourTest.php
index eb70cdb35..57427fe55 100644
--- a/tests/Math/Optimization/TSP/TourTest.php
+++ b/tests/Math/Optimization/TSP/TourTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Parser/EvaluatorTest.php b/tests/Math/Parser/EvaluatorTest.php
index 66e6424d3..f6276ebc2 100644
--- a/tests/Math/Parser/EvaluatorTest.php
+++ b/tests/Math/Parser/EvaluatorTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/AverageTest.php b/tests/Math/Statistic/AverageTest.php
index c0a3a71b7..66a2c0885 100644
--- a/tests/Math/Statistic/AverageTest.php
+++ b/tests/Math/Statistic/AverageTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/BasicTest.php b/tests/Math/Statistic/BasicTest.php
index f99f4e63a..c6fb80a45 100644
--- a/tests/Math/Statistic/BasicTest.php
+++ b/tests/Math/Statistic/BasicTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/CorrelationTest.php b/tests/Math/Statistic/CorrelationTest.php
index a2c3e8fbf..d2a8be202 100644
--- a/tests/Math/Statistic/CorrelationTest.php
+++ b/tests/Math/Statistic/CorrelationTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/Forecast/ErrorTest.php b/tests/Math/Statistic/Forecast/ErrorTest.php
index 6d30f20fd..fb3d36c55 100644
--- a/tests/Math/Statistic/Forecast/ErrorTest.php
+++ b/tests/Math/Statistic/Forecast/ErrorTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/Forecast/ForecastIntervalMultiplierTest.php b/tests/Math/Statistic/Forecast/ForecastIntervalMultiplierTest.php
index 323ef89cc..d18b90a39 100644
--- a/tests/Math/Statistic/Forecast/ForecastIntervalMultiplierTest.php
+++ b/tests/Math/Statistic/Forecast/ForecastIntervalMultiplierTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/Forecast/ForecastsTest.php b/tests/Math/Statistic/Forecast/ForecastsTest.php
index ab958b4bc..b379eb8b7 100644
--- a/tests/Math/Statistic/Forecast/ForecastsTest.php
+++ b/tests/Math/Statistic/Forecast/ForecastsTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php
index b649635ea..ae677eae5 100644
--- a/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php
+++ b/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php
index 5169bbec3..5c6d2d17b 100644
--- a/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php
+++ b/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php
index 015f0182e..ce6b8d634 100644
--- a/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php
+++ b/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php
index 2292eb4ae..bdf5bf5fb 100644
--- a/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php
+++ b/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/Forecast/Regression/MultipleLinearRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/MultipleLinearRegressionTest.php
index 0a6364dfe..6b68570bf 100644
--- a/tests/Math/Statistic/Forecast/Regression/MultipleLinearRegressionTest.php
+++ b/tests/Math/Statistic/Forecast/Regression/MultipleLinearRegressionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Statistic/MeasureOfDispersionTest.php b/tests/Math/Statistic/MeasureOfDispersionTest.php
index 22bdcd478..2e8b012ec 100644
--- a/tests/Math/Statistic/MeasureOfDispersionTest.php
+++ b/tests/Math/Statistic/MeasureOfDispersionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php b/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php
index 3ce521d8b..aafb94d58 100644
--- a/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/BetaDistributionTest.php b/tests/Math/Stochastic/Distribution/BetaDistributionTest.php
index 7786f293b..bfea96ff2 100644
--- a/tests/Math/Stochastic/Distribution/BetaDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/BetaDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php b/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php
index e8ff03711..0bff28fab 100644
--- a/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php b/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php
index 9ca9f13fe..45cce8070 100644
--- a/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php b/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php
index e0508193c..f02c058be 100644
--- a/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php b/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php
index fae14a4f7..7befae40d 100644
--- a/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/FDistributionTest.php b/tests/Math/Stochastic/Distribution/FDistributionTest.php
index d326c64c5..b68356a82 100644
--- a/tests/Math/Stochastic/Distribution/FDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/FDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/GammaDistributionTest.php b/tests/Math/Stochastic/Distribution/GammaDistributionTest.php
index 59c0a6337..47314e32f 100644
--- a/tests/Math/Stochastic/Distribution/GammaDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/GammaDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php b/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php
index 830791a9c..9ced06583 100644
--- a/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php b/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php
index f9e26627a..7ac069daa 100644
--- a/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php b/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php
index 6f47817dc..2c5ad7b90 100644
--- a/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/LogDistributionTest.php b/tests/Math/Stochastic/Distribution/LogDistributionTest.php
index 861e8eb76..1fd9345ea 100644
--- a/tests/Math/Stochastic/Distribution/LogDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/LogDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php b/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php
index 58508df5d..94732ac80 100644
--- a/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php b/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php
index c520a5308..7619f89bb 100644
--- a/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/NormalDistributionTest.php b/tests/Math/Stochastic/Distribution/NormalDistributionTest.php
index 117d862e5..2cf01f4d2 100644
--- a/tests/Math/Stochastic/Distribution/NormalDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/NormalDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php b/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php
index 5d18b3491..f81dae9b7 100644
--- a/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php b/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php
index 439ab7a4c..d3cd7e97f 100644
--- a/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/TDistributionTest.php b/tests/Math/Stochastic/Distribution/TDistributionTest.php
index a3f1b29f2..0dce82749 100644
--- a/tests/Math/Stochastic/Distribution/TDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/TDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php b/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php
index ada09c520..811d27318 100644
--- a/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php
+++ b/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php b/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php
index 9c253ced0..b64a5eab1 100644
--- a/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php
+++ b/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php b/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php
index 9ab686f6c..00e0e0980 100644
--- a/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php
+++ b/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Http/BrowserTypeTest.php b/tests/Message/Http/BrowserTypeTest.php
index 4fb351531..7e79f4622 100644
--- a/tests/Message/Http/BrowserTypeTest.php
+++ b/tests/Message/Http/BrowserTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Http/HeaderTest.php b/tests/Message/Http/HeaderTest.php
index 6e85ee555..831bf763e 100644
--- a/tests/Message/Http/HeaderTest.php
+++ b/tests/Message/Http/HeaderTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Http/OSTypeTest.php b/tests/Message/Http/OSTypeTest.php
index 3caa70519..75a10f938 100644
--- a/tests/Message/Http/OSTypeTest.php
+++ b/tests/Message/Http/OSTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Http/RequestMethodTest.php b/tests/Message/Http/RequestMethodTest.php
index aba988102..f1f774681 100644
--- a/tests/Message/Http/RequestMethodTest.php
+++ b/tests/Message/Http/RequestMethodTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Http/RequestStatusTest.php b/tests/Message/Http/RequestStatusTest.php
index b44866f54..946c2f0b7 100644
--- a/tests/Message/Http/RequestStatusTest.php
+++ b/tests/Message/Http/RequestStatusTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Http/RequestTest.php b/tests/Message/Http/RequestTest.php
index 1b35642b5..9f791346d 100644
--- a/tests/Message/Http/RequestTest.php
+++ b/tests/Message/Http/RequestTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Http/ResponseTest.php b/tests/Message/Http/ResponseTest.php
index 878c00b62..544fcdcba 100644
--- a/tests/Message/Http/ResponseTest.php
+++ b/tests/Message/Http/ResponseTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Http/RestTest.php b/tests/Message/Http/RestTest.php
index ae60c9bce..4f5fc5864 100644
--- a/tests/Message/Http/RestTest.php
+++ b/tests/Message/Http/RestTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Mail/ImapTest.php b/tests/Message/Mail/ImapTest.php
index 43f40e388..b7ceee3d2 100644
--- a/tests/Message/Mail/ImapTest.php
+++ b/tests/Message/Mail/ImapTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Mail/MailTest.php b/tests/Message/Mail/MailTest.php
index 5b30d0fba..9b244e7ad 100644
--- a/tests/Message/Mail/MailTest.php
+++ b/tests/Message/Mail/MailTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Mail/Pop3Test.php b/tests/Message/Mail/Pop3Test.php
index 95d6213c5..8dd28fdf6 100644
--- a/tests/Message/Mail/Pop3Test.php
+++ b/tests/Message/Mail/Pop3Test.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/RequestSourceTest.php b/tests/Message/RequestSourceTest.php
index 15715d492..c87f10ae6 100644
--- a/tests/Message/RequestSourceTest.php
+++ b/tests/Message/RequestSourceTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/ResponseTypeTest.php b/tests/Message/ResponseTypeTest.php
index a561928e1..59fa17680 100644
--- a/tests/Message/ResponseTypeTest.php
+++ b/tests/Message/ResponseTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Socket/RequestTest.php b/tests/Message/Socket/RequestTest.php
index cb09df3a0..02fc137b2 100644
--- a/tests/Message/Socket/RequestTest.php
+++ b/tests/Message/Socket/RequestTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Message/Socket/ResponseTest.php b/tests/Message/Socket/ResponseTest.php
index a785a80b2..aa922d739 100644
--- a/tests/Message/Socket/ResponseTest.php
+++ b/tests/Message/Socket/ResponseTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Model/Html/HeadTest.php b/tests/Model/Html/HeadTest.php
index d94c05e68..82935e075 100644
--- a/tests/Model/Html/HeadTest.php
+++ b/tests/Model/Html/HeadTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Model/Html/MetaTest.php b/tests/Model/Html/MetaTest.php
index b7a21e0f8..c52baaf96 100644
--- a/tests/Model/Html/MetaTest.php
+++ b/tests/Model/Html/MetaTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Module/InfoManagerTest.php b/tests/Module/InfoManagerTest.php
index 2890c920f..c0e22c316 100644
--- a/tests/Module/InfoManagerTest.php
+++ b/tests/Module/InfoManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Module/ModuleAbstractTest.php b/tests/Module/ModuleAbstractTest.php
index 61902cb8f..cec0b5beb 100644
--- a/tests/Module/ModuleAbstractTest.php
+++ b/tests/Module/ModuleAbstractTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Module/ModuleFactoryTest.php b/tests/Module/ModuleFactoryTest.php
index 7821b94ee..799d1dc24 100644
--- a/tests/Module/ModuleFactoryTest.php
+++ b/tests/Module/ModuleFactoryTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Module/ModuleManagerTest.php b/tests/Module/ModuleManagerTest.php
index 9d5924b63..bc66071fb 100644
--- a/tests/Module/ModuleManagerTest.php
+++ b/tests/Module/ModuleManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Module/NullModuleTest.php b/tests/Module/NullModuleTest.php
index 7ba40b415..d8c4b4c3b 100644
--- a/tests/Module/NullModuleTest.php
+++ b/tests/Module/NullModuleTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Router/RouteVerbTest.php b/tests/Router/RouteVerbTest.php
index 17185fed7..e1f0e3f45 100644
--- a/tests/Router/RouteVerbTest.php
+++ b/tests/Router/RouteVerbTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Router/RouterTest.php b/tests/Router/RouterTest.php
index 820d469f1..6e6ab5a80 100644
--- a/tests/Router/RouterTest.php
+++ b/tests/Router/RouterTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Socket/Client/ClientConnectionTest.php b/tests/Socket/Client/ClientConnectionTest.php
index c7c7eb598..5f728e363 100644
--- a/tests/Socket/Client/ClientConnectionTest.php
+++ b/tests/Socket/Client/ClientConnectionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Socket/Client/ClientTest.php b/tests/Socket/Client/ClientTest.php
index f98b1dc65..2d5a197e5 100644
--- a/tests/Socket/Client/ClientTest.php
+++ b/tests/Socket/Client/ClientTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Socket/Client/NullClientConnectionTest.php b/tests/Socket/Client/NullClientConnectionTest.php
index 90beaf48c..4a4ac23f8 100644
--- a/tests/Socket/Client/NullClientConnectionTest.php
+++ b/tests/Socket/Client/NullClientConnectionTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Socket/CommandManagerTest.php b/tests/Socket/CommandManagerTest.php
index 844e97219..c3fae0ee0 100644
--- a/tests/Socket/CommandManagerTest.php
+++ b/tests/Socket/CommandManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Socket/Packets/HeaderTest.php b/tests/Socket/Packets/HeaderTest.php
index 4e2ac0b74..26eb62730 100644
--- a/tests/Socket/Packets/HeaderTest.php
+++ b/tests/Socket/Packets/HeaderTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Socket/Packets/PacketManagerTest.php b/tests/Socket/Packets/PacketManagerTest.php
index 05884623e..c30d9ccfc 100644
--- a/tests/Socket/Packets/PacketManagerTest.php
+++ b/tests/Socket/Packets/PacketManagerTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
diff --git a/tests/Socket/Packets/PacketTypeTest.php b/tests/Socket/Packets/PacketTypeTest.php
index 20b98cfdf..635443171 100644
--- a/tests/Socket/Packets/PacketTypeTest.php
+++ b/tests/Socket/Packets/PacketTypeTest.php
@@ -5,7 +5,6 @@
* PHP Version 7.1
*
* @package TBD
- * @author OMS Development Team