diff --git a/Account/Account.php b/Account/Account.php index ab476b2a4..53be4d60d 100644 --- a/Account/Account.php +++ b/Account/Account.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Validation\Base\Email; * @category Framework * @package phpOMS\Account * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -164,7 +162,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @param int $id Account id * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(int $id = 0) { @@ -180,7 +177,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return int Account id * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getId() : int { @@ -193,7 +189,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return Localization * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getL11n() : Localization { @@ -208,7 +203,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setL11n(Localization $l11n) /* : void */ { @@ -221,7 +215,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -234,7 +227,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName1() : string { @@ -247,7 +239,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName2() : string { @@ -260,7 +251,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName3() : string { @@ -273,7 +263,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEmail() : string { @@ -288,7 +277,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStatus() : int { @@ -303,7 +291,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getType() : int { @@ -316,7 +303,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLastActive() : \DateTime { @@ -329,7 +315,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCreatedAt() : \DateTime { @@ -344,7 +329,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function generatePassword(string $password) /* : void */ { @@ -359,7 +343,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName(string $name) /* : void */ { @@ -374,7 +357,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName1(string $name) /* : void */ { @@ -389,7 +371,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName2(string $name) /* : void */ { @@ -404,7 +385,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName3(string $name) /* : void */ { @@ -419,7 +399,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setEmail(string $email) /* : void */ { @@ -438,7 +417,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStatus(int $status) /* : void */ { @@ -457,7 +435,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setType(int $type) /* : void */ { @@ -474,7 +451,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function updateLastActive() { @@ -508,7 +484,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __toString() { @@ -521,7 +496,6 @@ class Account implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function jsonSerialize() { diff --git a/Account/AccountManager.php b/Account/AccountManager.php index af1eae98b..781c5754d 100644 --- a/Account/AccountManager.php +++ b/Account/AccountManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\DataStorage\Session\SessionInterface; * @category Framework * @package phpOMS\Account * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -74,7 +72,6 @@ class AccountManager implements \Countable * @param SessionInterface $session Session * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(ConnectionAbstract $connection, SessionInterface $session) { @@ -91,7 +88,6 @@ class AccountManager implements \Countable * @return Account * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(int $id = 0) : Account { @@ -116,7 +112,6 @@ class AccountManager implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(Account $account) : bool { @@ -137,7 +132,6 @@ class AccountManager implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(int $id) : bool { @@ -156,7 +150,6 @@ class AccountManager implements \Countable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/Account/AccountStatus.php b/Account/AccountStatus.php index cc6f7fe5b..0b810b379 100644 --- a/Account/AccountStatus.php +++ b/Account/AccountStatus.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Account * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Account/AccountType.php b/Account/AccountType.php index bcf2aa6c2..360f5ad03 100644 --- a/Account/AccountType.php +++ b/Account/AccountType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Account/Group.php b/Account/Group.php index d5b9f07c1..45ff346bc 100644 --- a/Account/Group.php +++ b/Account/Group.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Contract\ArrayableInterface; * @category Framework * @package phpOMS\Account * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -109,7 +107,6 @@ class Group implements ArrayableInterface, \JsonSerializable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -122,7 +119,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getId() : int { @@ -135,7 +131,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -148,7 +143,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @param string $name Group name * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName(string $name) /* : void */ { @@ -161,7 +155,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDescription() : string { @@ -174,7 +167,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @param string $description Group description * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDescription(string $description) /* : void */ { @@ -187,7 +179,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @return int Group status * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStatus() : int { @@ -200,7 +191,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @param int $status Group status * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStatus(int $status) /* : void */ { @@ -214,7 +204,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __toString() { @@ -227,7 +216,6 @@ class Group implements ArrayableInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function jsonSerialize() { diff --git a/Account/GroupStatus.php b/Account/GroupStatus.php index 43656db4d..fbb5f7beb 100644 --- a/Account/GroupStatus.php +++ b/Account/GroupStatus.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Calendar * @package Modules * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Account/NullAccount.php b/Account/NullAccount.php index 8ea0f6552..c03e9336f 100644 --- a/Account/NullAccount.php +++ b/Account/NullAccount.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Account; * @category Framework * @package phpOMS\Account * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Algorithm/AlgorithmType.php b/Algorithm/AlgorithmType.php index 21db3e5ae..3752e3a77 100644 --- a/Algorithm/AlgorithmType.php +++ b/Algorithm/AlgorithmType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Tasks * @package Modules * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Algorithm/Knappsack/Backpack.php b/Algorithm/Knappsack/Backpack.php index 76d69fc27..d856cdade 100644 --- a/Algorithm/Knappsack/Backpack.php +++ b/Algorithm/Knappsack/Backpack.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Algorithm\AlgorithmType; * @category Framework * @package phpOMS\Auth * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Algorithm/Knappsack/ItemInterface.php b/Algorithm/Knappsack/ItemInterface.php index 3f4ebc880..b9a182a98 100644 --- a/Algorithm/Knappsack/ItemInterface.php +++ b/Algorithm/Knappsack/ItemInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Algorithm\Knappsack; * @category Framework * @package phpOMS\Math * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/ApplicationAbstract.php b/ApplicationAbstract.php index fe809b50c..fd049b076 100644 --- a/ApplicationAbstract.php +++ b/ApplicationAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS; * @category Framework * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Asset/AssetManager.php b/Asset/AssetManager.php index b10ee1ae4..95ee56372 100644 --- a/Asset/AssetManager.php +++ b/Asset/AssetManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Asset; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ class AssetManager implements \Countable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -59,7 +56,6 @@ class AssetManager implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(string $id, string $asset, bool $overwrite = true) : bool { @@ -80,7 +76,6 @@ class AssetManager implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(string $id) : bool { @@ -101,7 +96,6 @@ class AssetManager implements \Countable * @return mixed Asset * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(string $id) /* : ?string */ { @@ -118,7 +112,6 @@ class AssetManager implements \Countable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/Asset/AssetType.php b/Asset/AssetType.php index c60cd0daf..33e1e471d 100644 --- a/Asset/AssetType.php +++ b/Asset/AssetType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Auth/Auth.php b/Auth/Auth.php index 4ac978b57..aa383fe6b 100644 --- a/Auth/Auth.php +++ b/Auth/Auth.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\DataStorage\Session\SessionInterface; * @category Framework * @package phpOMS\Auth * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -59,7 +57,6 @@ class Auth * @param SessionInterface $session Session * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(ConnectionAbstract $connection, SessionInterface $session) { @@ -73,7 +70,6 @@ class Auth * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function authenticate() : int { @@ -94,7 +90,6 @@ class Auth * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function logout(int $uid = null) /* : void */ { diff --git a/Auth/LoginReturnType.php b/Auth/LoginReturnType.php index 345303e36..cf3e29c35 100644 --- a/Auth/LoginReturnType.php +++ b/Auth/LoginReturnType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Auth * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/AutoloadException.php b/AutoloadException.php index b32db22a2..ab835ba58 100644 --- a/AutoloadException.php +++ b/AutoloadException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class AutoloadException extends \RuntimeException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $message, int $code = 0, \Exception $previous = null) { diff --git a/Autoloader.php b/Autoloader.php index 06112f46d..9835bab60 100644 --- a/Autoloader.php +++ b/Autoloader.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ spl_autoload_register('\phpOMS\Autoloader::default_autoloader'); * @category Framework * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -45,7 +43,6 @@ class Autoloader * @throws AutoloadException Throws this exception if the class to autoload doesn't exist. This could also be related to a wrong namespace/file path correlation. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function default_autoloader(string $class) /* : void */ { @@ -70,7 +67,6 @@ class Autoloader * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function exists(string $class) : bool { diff --git a/Business/Marketing/NetPromoterScore.php b/Business/Marketing/NetPromoterScore.php index 079aa5a7b..c0a611c28 100644 --- a/Business/Marketing/NetPromoterScore.php +++ b/Business/Marketing/NetPromoterScore.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Business\Marketing; * @category Framework * @package phpOMS\Business * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class NetPromoterScore { * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -55,7 +52,6 @@ class NetPromoterScore { * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(int $score) /* : void */ { @@ -68,7 +64,6 @@ class NetPromoterScore { * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getScore() : int { diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php index e41c89b58..5ce16f46f 100644 --- a/Business/Sales/MarketShareEstimation.php +++ b/Business/Sales/MarketShareEstimation.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Business\Sales; * @category Framework * @package phpOMS\Business * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Config/OptionsInterface.php b/Config/OptionsInterface.php index 47d63d3d9..47be5259a 100644 --- a/Config/OptionsInterface.php +++ b/Config/OptionsInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Config; * @category Framework * @package phpOMS\Config * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ interface OptionsInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function exists($key); @@ -53,7 +50,6 @@ interface OptionsInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setOption($key, $value, bool $overwrite = true) : bool; @@ -66,7 +62,6 @@ interface OptionsInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setOptions(array $pair, bool $overwrite = true) : bool; @@ -78,7 +73,6 @@ interface OptionsInterface * @return mixed Option value * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getOption($key); diff --git a/Config/OptionsTrait.php b/Config/OptionsTrait.php index f998e6a40..f54ca012d 100644 --- a/Config/OptionsTrait.php +++ b/Config/OptionsTrait.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Config/SettingsAbstract.php b/Config/SettingsAbstract.php index c3d238f8a..58e4a458b 100644 --- a/Config/SettingsAbstract.php +++ b/Config/SettingsAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * @category Framework * @package phpOMS\Config * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -88,7 +86,6 @@ abstract class SettingsAbstract implements OptionsInterface * @return mixed Option value * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get($columns) { @@ -131,7 +128,6 @@ abstract class SettingsAbstract implements OptionsInterface * @return mixed Option value * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(array $options, bool $store = false) /* : void */ { diff --git a/Console/CommandManager.php b/Console/CommandManager.php index f943e5d0e..ccfe9f9aa 100644 --- a/Console/CommandManager.php +++ b/Console/CommandManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -49,7 +48,6 @@ class CommandManager implements \Countable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { diff --git a/Contract/ArrayableInterface.php b/Contract/ArrayableInterface.php index 81019b9bd..6d4e3bd0c 100644 --- a/Contract/ArrayableInterface.php +++ b/Contract/ArrayableInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Contract; * @category Framework * @package phpOMS\Contract * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ interface ArrayableInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function toArray() : array; diff --git a/Contract/RenderableInterface.php b/Contract/RenderableInterface.php index 27c78e012..e5f984154 100644 --- a/Contract/RenderableInterface.php +++ b/Contract/RenderableInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ namespace phpOMS\Contract; * @category Framework * @package phpOMS\Contract * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ interface RenderableInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function render() : string; diff --git a/DataStorage/Cache/CacheFactory.php b/DataStorage/Cache/CacheFactory.php index 79b8370ef..dce543b7b 100644 --- a/DataStorage/Cache/CacheFactory.php +++ b/DataStorage/Cache/CacheFactory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\DataStorage\Cache\FileCache; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class CacheFactory * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -57,7 +54,6 @@ class CacheFactory * @throws \InvalidArgumentException Throws this exception if the database is not supported. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function create(array $cacheData) : CacheInterface { diff --git a/DataStorage/Cache/CacheInterface.php b/DataStorage/Cache/CacheInterface.php index 2e8f3ada7..1bf434c80 100644 --- a/DataStorage/Cache/CacheInterface.php +++ b/DataStorage/Cache/CacheInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Datatypes\Exception\InvalidEnumValue; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ interface CacheInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set($key, $value, int $expire = -1) /* : void */; @@ -56,7 +53,6 @@ interface CacheInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add($key, $value, int $expire = -1) : bool; @@ -69,7 +65,6 @@ interface CacheInterface * @return mixed Cache value * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get($key, int $expire = -1); @@ -82,7 +77,6 @@ interface CacheInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function delete($key, int $expire = -1) : bool; @@ -94,7 +88,6 @@ interface CacheInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function flush(int $expire = 0) : bool; @@ -104,7 +97,6 @@ interface CacheInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function flushAll() : bool; @@ -118,7 +110,6 @@ interface CacheInterface * @throws InvalidEnumValue * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStatus(int $status) /* : void */; @@ -132,7 +123,6 @@ interface CacheInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function replace($key, $value, int $expire = -1) : bool; @@ -142,7 +132,6 @@ interface CacheInterface * @return mixed[] Stats array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function stats() : array; @@ -152,7 +141,6 @@ interface CacheInterface * @return int Storage threshold * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getThreshold() : int; diff --git a/DataStorage/Cache/CachePool.php b/DataStorage/Cache/CachePool.php index 697c39a1f..f14099b0c 100644 --- a/DataStorage/Cache/CachePool.php +++ b/DataStorage/Cache/CachePool.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -31,7 +30,6 @@ use phpOMS\DataStorage\Cache\CacheFactory; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -53,7 +51,6 @@ class CachePool implements OptionsInterface * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -68,7 +65,6 @@ class CachePool implements OptionsInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(string $key = 'core', CacheInterface $cache) : bool { @@ -89,7 +85,6 @@ class CachePool implements OptionsInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(string $key) : bool { @@ -110,7 +105,6 @@ class CachePool implements OptionsInterface * @return \phpOMS\DataStorage\Cache\CacheInterface * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(string $key) /* : ?CacheInterface */ { @@ -130,7 +124,6 @@ class CachePool implements OptionsInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function create(string $key, array $config) : bool { diff --git a/DataStorage/Cache/CacheStatus.php b/DataStorage/Cache/CacheStatus.php index 77831d580..e2f57ddb9 100644 --- a/DataStorage/Cache/CacheStatus.php +++ b/DataStorage/Cache/CacheStatus.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/CacheType.php b/DataStorage/Cache/CacheType.php index 9b9b0b108..995b12c6a 100644 --- a/DataStorage/Cache/CacheType.php +++ b/DataStorage/Cache/CacheType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/FileCache.php b/DataStorage/Cache/FileCache.php index cd5327ccf..89bdc7d7c 100644 --- a/DataStorage/Cache/FileCache.php +++ b/DataStorage/Cache/FileCache.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\System\File\Local\File; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -83,7 +81,6 @@ class FileCache implements CacheInterface * @param string $path Cache path * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $path) { @@ -189,7 +186,6 @@ class FileCache implements CacheInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function build($value, int $expire) : string { @@ -207,7 +203,6 @@ class FileCache implements CacheInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ private function dataType($value) : int { @@ -241,7 +236,6 @@ class FileCache implements CacheInterface * @throws InvalidEnumValue * * @since 1.0.0 - * @author Dennis Eichhorn */ private function stringify($value, int $type) : string { @@ -266,7 +260,6 @@ class FileCache implements CacheInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ private function getExpire(string $raw) : int { diff --git a/DataStorage/Cache/MemCache.php b/DataStorage/Cache/MemCache.php index e2711505e..b3076fba3 100644 --- a/DataStorage/Cache/MemCache.php +++ b/DataStorage/Cache/MemCache.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Cache; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -51,7 +49,6 @@ class MemCache implements CacheInterface * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -66,7 +63,6 @@ class MemCache implements CacheInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addServer($data) { @@ -162,7 +158,6 @@ class MemCache implements CacheInterface * Destructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __destruct() { @@ -173,7 +168,6 @@ class MemCache implements CacheInterface * Closing cache. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function close() { diff --git a/DataStorage/Cache/NullCache.php b/DataStorage/Cache/NullCache.php index 816738c2f..c743219ae 100644 --- a/DataStorage/Cache/NullCache.php +++ b/DataStorage/Cache/NullCache.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Cache; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/RedisCache.php b/DataStorage/Cache/RedisCache.php index 5f65376f5..368b7d51f 100644 --- a/DataStorage/Cache/RedisCache.php +++ b/DataStorage/Cache/RedisCache.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\DataStorage\Cache; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/WinCache.php b/DataStorage/Cache/WinCache.php index 010710b7e..3f5fee1e8 100644 --- a/DataStorage/Cache/WinCache.php +++ b/DataStorage/Cache/WinCache.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\DataStorage\Cache; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cookie/CookieJar.php b/DataStorage/Cookie/CookieJar.php index ca2b170f9..2b67ef105 100644 --- a/DataStorage/Cookie/CookieJar.php +++ b/DataStorage/Cookie/CookieJar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\LockException; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -51,7 +49,6 @@ class CookieJar * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -62,7 +59,6 @@ class CookieJar * Lock * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function lock() /* : void */ { @@ -75,7 +71,6 @@ class CookieJar * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isLocked() : bool { @@ -97,7 +92,6 @@ class CookieJar * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(string $id, $value, int $expire = 86400, string $path = '/', string $domain = null, bool $secure = false, bool $httpOnly = true, bool $overwrite = true) : bool { @@ -127,7 +121,6 @@ class CookieJar * @throws LockException * * @since 1.0.0 - * @author Dennis Eichhorn */ public function delete(string $id) : bool { @@ -152,7 +145,6 @@ class CookieJar * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(string $id) : bool { @@ -173,7 +165,6 @@ class CookieJar * @throws LockException * * @since 1.0.0 - * @author Dennis Eichhorn */ public function save() /* : void */ { diff --git a/DataStorage/DataMapperInterface.php b/DataStorage/DataMapperInterface.php index 21d9b2ec4..8c25c6cce 100644 --- a/DataStorage/DataMapperInterface.php +++ b/DataStorage/DataMapperInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ interface DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function create($obj); @@ -55,7 +52,6 @@ interface DataMapperInterface * @return int Status * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function update($obj) : int; @@ -67,7 +63,6 @@ interface DataMapperInterface * @return int Status * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function delete($obj); @@ -79,7 +74,6 @@ interface DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function find(string $search) : array; @@ -91,7 +85,6 @@ interface DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function listResults(Builder $query); @@ -103,7 +96,6 @@ interface DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populate(array $result); @@ -115,7 +107,6 @@ interface DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populateIterable(array $result) : array; @@ -127,7 +118,6 @@ interface DataMapperInterface * @return $this * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function with(...$objects); @@ -139,7 +129,6 @@ interface DataMapperInterface * @return self * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function get($primaryKey); diff --git a/DataStorage/Database/BuilderAbstract.php b/DataStorage/Database/BuilderAbstract.php index 0647eeea2..b4027f061 100644 --- a/DataStorage/Database/BuilderAbstract.php +++ b/DataStorage/Database/BuilderAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -72,7 +70,6 @@ abstract class BuilderAbstract * @return BuilderAbstract * * @since 1.0.0 - * @author Dennis Eichhorn */ public function prefix(string $prefix) : BuilderAbstract { @@ -87,7 +84,6 @@ abstract class BuilderAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPrefix() : string { @@ -100,7 +96,6 @@ abstract class BuilderAbstract * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getType() : int { diff --git a/DataStorage/Database/Connection/ConnectionAbstract.php b/DataStorage/Database/Connection/ConnectionAbstract.php index be7dc2f82..e0938f66d 100644 --- a/DataStorage/Database/Connection/ConnectionAbstract.php +++ b/DataStorage/Database/Connection/ConnectionAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -120,7 +118,6 @@ abstract class ConnectionAbstract implements ConnectionInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPrefix() : string { @@ -157,7 +154,6 @@ abstract class ConnectionAbstract implements ConnectionInterface * Sets the database connection to null * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __destruct() { diff --git a/DataStorage/Database/Connection/ConnectionException.php b/DataStorage/Database/Connection/ConnectionException.php index 7a782a64b..8c9a873d0 100644 --- a/DataStorage/Database/Connection/ConnectionException.php +++ b/DataStorage/Database/Connection/ConnectionException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Connection/ConnectionFactory.php b/DataStorage/Database/Connection/ConnectionFactory.php index b4698cd01..c4892668e 100644 --- a/DataStorage/Database/Connection/ConnectionFactory.php +++ b/DataStorage/Database/Connection/ConnectionFactory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\DatabaseType; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ class ConnectionFactory * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -55,7 +52,6 @@ class ConnectionFactory * @throws \InvalidArgumentException Throws this exception if the database is not supported. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function create(array $dbdata) : ConnectionInterface { diff --git a/DataStorage/Database/Connection/ConnectionInterface.php b/DataStorage/Database/Connection/ConnectionInterface.php index a6964f1a7..ba08e1b06 100644 --- a/DataStorage/Database/Connection/ConnectionInterface.php +++ b/DataStorage/Database/Connection/ConnectionInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ interface ConnectionInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function connect(array $dbdata) /* : void */; @@ -54,7 +51,6 @@ interface ConnectionInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getType() : string; @@ -64,7 +60,6 @@ interface ConnectionInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStatus() : int; @@ -74,7 +69,6 @@ interface ConnectionInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function close() /* : void */; @@ -84,7 +78,6 @@ interface ConnectionInterface * @return Grammar * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getGrammar() : Grammar; @@ -94,7 +87,6 @@ interface ConnectionInterface * @return SchemaGrammar * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSchemaGrammar() : SchemaGrammar; diff --git a/DataStorage/Database/Connection/MysqlConnection.php b/DataStorage/Database/Connection/MysqlConnection.php index f91021701..af4c2ed02 100644 --- a/DataStorage/Database/Connection/MysqlConnection.php +++ b/DataStorage/Database/Connection/MysqlConnection.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -31,7 +30,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGramma * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -47,7 +45,6 @@ class MysqlConnection extends ConnectionAbstract * @param string[] $dbdata the basic database information for establishing a connection * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(array $dbdata) { diff --git a/DataStorage/Database/Connection/PostgresConnection.php b/DataStorage/Database/Connection/PostgresConnection.php index ab0f4e97b..646d8bc6a 100644 --- a/DataStorage/Database/Connection/PostgresConnection.php +++ b/DataStorage/Database/Connection/PostgresConnection.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Connection/SQLiteConnection.php b/DataStorage/Database/Connection/SQLiteConnection.php index d82566931..c351d88cc 100644 --- a/DataStorage/Database/Connection/SQLiteConnection.php +++ b/DataStorage/Database/Connection/SQLiteConnection.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\DataStorage\Database\Query\Grammar\SqliteGrammar; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -46,7 +44,6 @@ class SqliteConnection extends ConnectionAbstract * @param string[] $dbdata the basic database information for establishing a connection * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(array $dbdata) { diff --git a/DataStorage/Database/Connection/SqlServerConnection.php b/DataStorage/Database/Connection/SqlServerConnection.php index 344a9fbe5..9a394cf29 100644 --- a/DataStorage/Database/Connection/SqlServerConnection.php +++ b/DataStorage/Database/Connection/SqlServerConnection.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -31,7 +30,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGramma * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -46,7 +44,6 @@ class SqlServerConnection extends ConnectionAbstract * @param string[] $dbdata the basic database information for establishing a connection * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(array $dbdata) { diff --git a/DataStorage/Database/Connector/MysqlConnector.php b/DataStorage/Database/Connector/MysqlConnector.php index f04f0472c..91803676e 100644 --- a/DataStorage/Database/Connector/MysqlConnector.php +++ b/DataStorage/Database/Connector/MysqlConnector.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Connector/PostgresConnector.php b/DataStorage/Database/Connector/PostgresConnector.php index 1368ea641..4731f3d35 100644 --- a/DataStorage/Database/Connector/PostgresConnector.php +++ b/DataStorage/Database/Connector/PostgresConnector.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Connector/SQLiteConnector.php b/DataStorage/Database/Connector/SQLiteConnector.php index 9ed1ffef9..6b5a11f83 100644 --- a/DataStorage/Database/Connector/SQLiteConnector.php +++ b/DataStorage/Database/Connector/SQLiteConnector.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Connector/SqlServerConnector.php b/DataStorage/Database/Connector/SqlServerConnector.php index 87f19c73d..e9ea95c01 100644 --- a/DataStorage/Database/Connector/SqlServerConnector.php +++ b/DataStorage/Database/Connector/SqlServerConnector.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index 6f7662e84..7552b6324 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\Message\RequestAbstract; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -164,7 +162,6 @@ class DataMapperAbstract implements DataMapperInterface * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -174,7 +171,6 @@ class DataMapperAbstract implements DataMapperInterface * Clone. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __clone() { @@ -186,7 +182,6 @@ class DataMapperAbstract implements DataMapperInterface * @param ConnectionAbstract $con Database connection * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function setConnection(ConnectionAbstract $con) /* : void */ { @@ -199,7 +194,6 @@ class DataMapperAbstract implements DataMapperInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPrimaryField() : string { @@ -212,7 +206,6 @@ class DataMapperAbstract implements DataMapperInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getTable() : string { @@ -227,7 +220,6 @@ class DataMapperAbstract implements DataMapperInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function extend($class) /* : void */ { @@ -253,7 +245,6 @@ class DataMapperAbstract implements DataMapperInterface * @return null * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function with(...$objects) /* : void */ { @@ -272,7 +263,6 @@ class DataMapperAbstract implements DataMapperInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function clear() /* : void */ { @@ -310,7 +300,6 @@ class DataMapperAbstract implements DataMapperInterface * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function find(string $search) : array { @@ -336,7 +325,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function create($obj, int $relations = RelationType::ALL) { @@ -368,7 +356,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function createModel($obj, \ReflectionClass $reflectionClass) { @@ -447,7 +434,6 @@ class DataMapperAbstract implements DataMapperInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function setObjectId(\ReflectionClass $reflectionClass, $obj, $objId) /* : void */ { @@ -477,7 +463,6 @@ class DataMapperAbstract implements DataMapperInterface * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function createHasMany(\ReflectionClass $reflectionClass, $obj, $objId) /* : void */ { @@ -568,7 +553,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function createOwnsOne(string $propertyName, $obj) { @@ -597,7 +581,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function createBelongsTo(string $propertyName, $obj) { @@ -628,7 +611,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function createRelationTable(string $propertyName, array $objsIds, $objId) { @@ -660,7 +642,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function parseValue(string $type, $value) { @@ -701,7 +682,6 @@ class DataMapperAbstract implements DataMapperInterface * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function updateHasMany(\ReflectionClass $reflectionClass, $obj, $objId) /* : void */ { @@ -786,7 +766,6 @@ class DataMapperAbstract implements DataMapperInterface * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function updateRelationTable(string $propertyName, array $objsIds, $objId) { @@ -825,7 +804,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function deleteRelationTable(string $propertyName, array $objsIds, $objId) { @@ -860,7 +838,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function updateOwnsOne(string $propertyName, $obj) { @@ -887,7 +864,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function updateBelongsTo(string $propertyName, $obj) { @@ -911,7 +887,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function updateModel($obj, $objId, \ReflectionClass $reflectionClass = null) /* : void */ { @@ -975,7 +950,6 @@ class DataMapperAbstract implements DataMapperInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function update($obj, int $relations = RelationType::ALL) : int { @@ -1013,7 +987,6 @@ class DataMapperAbstract implements DataMapperInterface * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function deleteHasMany(\ReflectionClass $reflectionClass, $obj, $objId, int $relations) /* : void */ { @@ -1083,7 +1056,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function deleteOwnsOne(string $propertyName, $obj) { @@ -1109,7 +1081,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function deleteBelongsTo(string $propertyName, $obj) { @@ -1134,7 +1105,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function deleteModel($obj, $objId, int $relations = RelationType::REFERENCE, \ReflectionClass $reflectionClass = null) /* : void */ { @@ -1189,7 +1159,6 @@ class DataMapperAbstract implements DataMapperInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function delete($obj, int $relations = RelationType::REFERENCE) { @@ -1218,7 +1187,6 @@ class DataMapperAbstract implements DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populateIterable(array $result) : array { @@ -1244,7 +1212,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populate(array $result, $obj = null) { @@ -1274,7 +1241,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populateManyToMany(array $result, &$obj) { @@ -1316,7 +1282,6 @@ class DataMapperAbstract implements DataMapperInterface * @todo accept reflection class as parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populateHasOne(&$obj) { @@ -1359,7 +1324,6 @@ class DataMapperAbstract implements DataMapperInterface * @todo accept reflection class as parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populateOwnsOne(&$obj) { @@ -1402,7 +1366,6 @@ class DataMapperAbstract implements DataMapperInterface * @todo accept reflection class as parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populateBelongsTo(&$obj) { @@ -1446,7 +1409,6 @@ class DataMapperAbstract implements DataMapperInterface * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function populateAbstract(array $result, $obj) { @@ -1493,7 +1455,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function get($primaryKey, int $relations = RelationType::ALL, $fill = null) { @@ -1543,7 +1504,6 @@ class DataMapperAbstract implements DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAll(int $relations = RelationType::ALL, string $lang = '') { @@ -1566,7 +1526,6 @@ class DataMapperAbstract implements DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function listResults(Builder $query) { @@ -1589,7 +1548,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNewest(int $limit = 1, Builder $query = null, int $relations = RelationType::ALL, string $lang = '') { @@ -1631,7 +1589,6 @@ class DataMapperAbstract implements DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAllByQuery(Builder $query, int $relations = RelationType::ALL) : array { @@ -1657,7 +1614,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRandom(int $amount = 1, int $relations = RelationType::ALL) { @@ -1682,7 +1638,6 @@ class DataMapperAbstract implements DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function fillRelations(array &$obj, int $relations = RelationType::ALL) { @@ -1721,7 +1676,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRaw($primaryKey) : array { @@ -1744,7 +1698,6 @@ class DataMapperAbstract implements DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAllRaw(string $lang = '') : array { @@ -1771,7 +1724,6 @@ class DataMapperAbstract implements DataMapperInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getHasManyRaw($primaryKey, int $relations = RelationType::ALL) : array { @@ -1825,7 +1777,6 @@ class DataMapperAbstract implements DataMapperInterface * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getQuery(Builder $query = null) : Builder { @@ -1843,7 +1794,6 @@ class DataMapperAbstract implements DataMapperInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCreatedAt() : string { @@ -1860,7 +1810,6 @@ class DataMapperAbstract implements DataMapperInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getByRequest(RequestAbstract $request) { diff --git a/DataStorage/Database/DatabaseExceptionFactory.php b/DataStorage/Database/DatabaseExceptionFactory.php index 5005b651e..7229173f3 100644 --- a/DataStorage/Database/DatabaseExceptionFactory.php +++ b/DataStorage/Database/DatabaseExceptionFactory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\Schema\Exception\TableException; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class DatabaseExceptionFactory * @return \PDOException * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function create(\PDOException $e) : \PDOException { @@ -60,7 +57,6 @@ class DatabaseExceptionFactory * @return \PDOException * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function createTableViewException(\PDOException $e) : \PDOException { diff --git a/DataStorage/Database/DatabasePool.php b/DataStorage/Database/DatabasePool.php index 772d1f73c..1dd5dc947 100644 --- a/DataStorage/Database/DatabasePool.php +++ b/DataStorage/Database/DatabasePool.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionFactory; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -46,7 +44,6 @@ class DatabasePool * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -61,7 +58,6 @@ class DatabasePool * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(string $key = 'core', ConnectionAbstract $db) : bool { @@ -82,7 +78,6 @@ class DatabasePool * @return ConnectionAbstract|null * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(string $key = 'core') /* : ?ConnectionAbstract */ { @@ -101,7 +96,6 @@ class DatabasePool * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(string $key) : bool { @@ -123,7 +117,6 @@ class DatabasePool * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function create($key, array $config) : bool { diff --git a/DataStorage/Database/DatabaseStatus.php b/DataStorage/Database/DatabaseStatus.php index 2222d87f5..fb35f42ca 100644 --- a/DataStorage/Database/DatabaseStatus.php +++ b/DataStorage/Database/DatabaseStatus.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/DatabaseType.php b/DataStorage/Database/DatabaseType.php index f7b3ff614..75b246000 100644 --- a/DataStorage/Database/DatabaseType.php +++ b/DataStorage/Database/DatabaseType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/GrammarAbstract.php b/DataStorage/Database/GrammarAbstract.php index be352140a..5b60063a9 100644 --- a/DataStorage/Database/GrammarAbstract.php +++ b/DataStorage/Database/GrammarAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Utils\StringUtils; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -98,7 +96,6 @@ abstract class GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function compileQuery(BuilderAbstract $query) : string { @@ -122,7 +119,6 @@ abstract class GrammarAbstract * @return array Parsed query components * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract protected function compileComponents(BuilderAbstract $query) : array; @@ -132,7 +128,6 @@ abstract class GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDateFormat() : string { @@ -145,7 +140,6 @@ abstract class GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getTablePrefix() : string { @@ -158,7 +152,6 @@ abstract class GrammarAbstract * @param string $prefix Table prefix * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setTablePrefix(string $prefix) /* : void */ { @@ -174,7 +167,6 @@ abstract class GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function expressionizeTableColumn(array $elements, string $prefix = '') : string { @@ -208,7 +200,6 @@ abstract class GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileSystem($system, string $prefix = '') : string { diff --git a/DataStorage/Database/Query/Builder.php b/DataStorage/Database/Query/Builder.php index d011f1358..bbaf2f646 100644 --- a/DataStorage/Database/Query/Builder.php +++ b/DataStorage/Database/Query/Builder.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -217,7 +215,6 @@ class Builder extends BuilderAbstract * @param ConnectionAbstract $connection Database connection * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(ConnectionAbstract $connection, bool $readOnly = false) { @@ -233,7 +230,6 @@ class Builder extends BuilderAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setConnection(ConnectionAbstract $connection) /* : void */ { @@ -251,7 +247,6 @@ class Builder extends BuilderAbstract * @todo Closure is not working this way, needs to be evaluated befor assigning * * @since 1.0.0 - * @author Dennis Eichhorn */ public function select(...$columns) : Builder { @@ -278,7 +273,6 @@ class Builder extends BuilderAbstract * @todo Closure is not working this way, needs to be evaluated befor assigning * * @since 1.0.0 - * @author Dennis Eichhorn */ public function random(...$columns) : Builder { @@ -297,7 +291,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function bind($binds) : Builder { @@ -318,7 +311,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function newQuery() : Builder { @@ -331,7 +323,6 @@ class Builder extends BuilderAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function toSql() : string { @@ -346,7 +337,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function raw(string $raw) : Builder { @@ -377,7 +367,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function selectRaw($expression) : Builder { @@ -392,7 +381,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function distinct(...$columns) : Builder { @@ -409,7 +397,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function from(...$tables) : Builder { @@ -432,7 +419,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function fromRaw($expression) : Builder { @@ -454,7 +440,6 @@ class Builder extends BuilderAbstract * @throws \InvalidArgumentException * * @since 1.0.0 - * @author Dennis Eichhorn */ public function where($columns, $operator = null, $values = null, $boolean = 'and') : Builder { @@ -504,7 +489,6 @@ class Builder extends BuilderAbstract * @return array|null * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getWhereByColumn($column) /* : ?array */ { @@ -520,7 +504,6 @@ class Builder extends BuilderAbstract * @return string|null * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getTableOfSystem($expression, string $systemIdentifier) /* : ?string */ { @@ -539,7 +522,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function andWhere(Where $where) : Builder { @@ -559,7 +541,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function orWhere(Where $where) : Builder { @@ -581,7 +562,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function whereIn($column, $values = null, string $boolean = 'and') : Builder { @@ -599,7 +579,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function whereNull($column, string $boolean = 'and') : Builder { @@ -617,7 +596,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function whereNotNull($column, string $boolean = 'and') : Builder { @@ -634,7 +612,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function groupBy(...$columns) : Builder { @@ -657,7 +634,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function newest($column) : Builder { @@ -674,7 +650,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function oldest($column) : Builder { @@ -692,7 +667,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function orderBy($columns, $order = 'DESC') : Builder { @@ -717,7 +691,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function offset($offset) : Builder { @@ -734,7 +707,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function limit($limit) : Builder { @@ -751,7 +723,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function union($query) : Builder { @@ -768,7 +739,6 @@ class Builder extends BuilderAbstract * Lock query. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function lock() { @@ -778,7 +748,6 @@ class Builder extends BuilderAbstract * Lock for update query. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function lockUpdate() { @@ -788,7 +757,6 @@ class Builder extends BuilderAbstract * Create query string. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __toString() { @@ -799,7 +767,6 @@ class Builder extends BuilderAbstract * Find query. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function find() { @@ -809,7 +776,6 @@ class Builder extends BuilderAbstract * Count results. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count(string $table = '*') { @@ -821,7 +787,6 @@ class Builder extends BuilderAbstract * Check if exists. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function exists() { @@ -831,7 +796,6 @@ class Builder extends BuilderAbstract * Select minimum. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function min() { @@ -841,7 +805,6 @@ class Builder extends BuilderAbstract * Select maximum. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function max() { @@ -851,7 +814,6 @@ class Builder extends BuilderAbstract * Select sum. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function sum() { @@ -861,7 +823,6 @@ class Builder extends BuilderAbstract * Select average. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function avg() { @@ -875,7 +836,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function insert(...$columns) : Builder { @@ -900,7 +860,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function into($table) : Builder { @@ -917,7 +876,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function values(...$values) : Builder { @@ -935,7 +893,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function value($value, string $type = 'string') : Builder { @@ -955,7 +912,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function update(...$columns) : Builder { @@ -976,7 +932,6 @@ class Builder extends BuilderAbstract * Increment value. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function increment() { @@ -986,7 +941,6 @@ class Builder extends BuilderAbstract * Decrement value. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function decrement() { @@ -996,7 +950,6 @@ class Builder extends BuilderAbstract * Join. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function join($table1, $table2, $column1, $opperator, $column2) { @@ -1007,7 +960,6 @@ class Builder extends BuilderAbstract * Join where. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function joinWhere() { @@ -1017,7 +969,6 @@ class Builder extends BuilderAbstract * Left join. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function leftJoin() { @@ -1027,7 +978,6 @@ class Builder extends BuilderAbstract * Left join where. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function leftJoinWhere() { @@ -1037,7 +987,6 @@ class Builder extends BuilderAbstract * Right join. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function rightJoin() { @@ -1047,7 +996,6 @@ class Builder extends BuilderAbstract * Right join where. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function rightJoinWhere() { @@ -1059,7 +1007,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function rollback() { @@ -1070,7 +1017,6 @@ class Builder extends BuilderAbstract * On. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function on() { @@ -1087,7 +1033,6 @@ class Builder extends BuilderAbstract * @return Builder * * @since 1.0.0 - * @author Dennis Eichhorn */ public function merge(Builder $query) : Builder { @@ -1100,7 +1045,6 @@ class Builder extends BuilderAbstract * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function execute() { @@ -1123,7 +1067,6 @@ class Builder extends BuilderAbstract * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getBindParamType($value) { diff --git a/DataStorage/Database/Query/Column.php b/DataStorage/Database/Query/Column.php index 7f7e2ce88..ce992dd8e 100644 --- a/DataStorage/Database/Query/Column.php +++ b/DataStorage/Database/Query/Column.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Database\Query; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -45,7 +43,6 @@ class Column * @param string $column Column * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $column) { @@ -58,7 +55,6 @@ class Column * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getColumn() : string { diff --git a/DataStorage/Database/Query/Expression.php b/DataStorage/Database/Query/Expression.php index f879096b7..d1a40056a 100644 --- a/DataStorage/Database/Query/Expression.php +++ b/DataStorage/Database/Query/Expression.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Query/Grammar/Grammar.php b/DataStorage/Database/Query/Grammar/Grammar.php index 507d5dc76..a27c43a77 100644 --- a/DataStorage/Database/Query/Grammar/Grammar.php +++ b/DataStorage/Database/Query/Grammar/Grammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\DataStorage\Database\Query\Where; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -102,7 +100,6 @@ class Grammar extends GrammarAbstract * @throws \InvalidArgumentException * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileComponents(BuilderAbstract $query) : array { @@ -150,7 +147,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileSelects(Builder $query, array $columns) : string { @@ -172,7 +168,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileFrom(Builder $query, array $table) : string { @@ -195,7 +190,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileWheres(Builder $query, array $wheres, bool $first = true) : string { @@ -225,7 +219,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileWhereElement(array $element, Builder $query, bool $first = true) : string { @@ -271,7 +264,6 @@ class Grammar extends GrammarAbstract * @throws \InvalidArgumentException Throws this exception if the value to compile is not supported by this function. * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileValue($value, $prefix = '') : string { @@ -313,7 +305,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileLimit(Builder $query, int $limit) : string { @@ -329,7 +320,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileOffset(Builder $query, $offset) : string { @@ -350,7 +340,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function compileGroups(Builder $query, array $groups) { @@ -374,7 +363,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function compileOrders(Builder $query, array $orders) : string { @@ -412,7 +400,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileInto(Builder $query, $table) : string { @@ -428,7 +415,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileInserts(Builder $query, array $columns) : string { @@ -454,7 +440,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileValues(Builder $query, array $values) : string { diff --git a/DataStorage/Database/Query/Grammar/GrammarInterface.php b/DataStorage/Database/Query/Grammar/GrammarInterface.php index 3c3b84182..217e41a9f 100644 --- a/DataStorage/Database/Query/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Query/Grammar/GrammarInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php index 8ad8e5cf1..c7d841f31 100644 --- a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php +++ b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class MicrosoftGrammar extends Grammar * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileRandom(Builder $query, array $columns) : string { diff --git a/DataStorage/Database/Query/Grammar/MysqlGrammar.php b/DataStorage/Database/Query/Grammar/MysqlGrammar.php index c914e3a57..0b59f574b 100644 --- a/DataStorage/Database/Query/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Query/Grammar/MysqlGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -49,7 +47,6 @@ class MysqlGrammar extends Grammar * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileRandom(Builder $query, array $columns) : string { diff --git a/DataStorage/Database/Query/Grammar/OracleGrammar.php b/DataStorage/Database/Query/Grammar/OracleGrammar.php index a85a1f833..4d616bea0 100644 --- a/DataStorage/Database/Query/Grammar/OracleGrammar.php +++ b/DataStorage/Database/Query/Grammar/OracleGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class OracleGrammar extends Grammar * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileRandom(Builder $query, array $columns) : string { diff --git a/DataStorage/Database/Query/Grammar/PostgresGrammar.php b/DataStorage/Database/Query/Grammar/PostgresGrammar.php index 03be13a70..caaee4c26 100644 --- a/DataStorage/Database/Query/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Query/Grammar/PostgresGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class PostgresGrammar extends Grammar * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileRandom(Builder $query, array $columns) : string { diff --git a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php index f39b44885..9ad5a5117 100644 --- a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -49,7 +47,6 @@ class SqliteGrammar extends Grammar * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileRandom(Builder $query, array $columns) : string { diff --git a/DataStorage/Database/Query/JoinType.php b/DataStorage/Database/Query/JoinType.php index f9650ff47..9e631a7bb 100644 --- a/DataStorage/Database/Query/JoinType.php +++ b/DataStorage/Database/Query/JoinType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/QueryType.php b/DataStorage/Database/Query/QueryType.php index efd1efa2e..587398c75 100644 --- a/DataStorage/Database/Query/QueryType.php +++ b/DataStorage/Database/Query/QueryType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Where.php b/DataStorage/Database/Query/Where.php index d89d85d20..11d71eaaa 100644 --- a/DataStorage/Database/Query/Where.php +++ b/DataStorage/Database/Query/Where.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Database\Query; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/RelationType.php b/DataStorage/Database/RelationType.php index 2a24baa8d..c9a65e735 100644 --- a/DataStorage/Database/RelationType.php +++ b/DataStorage/Database/RelationType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Schema/Builder.php b/DataStorage/Database/Schema/Builder.php index e4fb6ba3b..933538bf3 100644 --- a/DataStorage/Database/Schema/Builder.php +++ b/DataStorage/Database/Schema/Builder.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\DataStorage\Database\Query; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ class Builder extends BuilderAbstract * @param ConnectionAbstract $connection Database connection * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(ConnectionAbstract $connection) { @@ -82,7 +79,6 @@ class Builder extends BuilderAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function toSql() : string { diff --git a/DataStorage/Database/Schema/Exception/TableException.php b/DataStorage/Database/Schema/Exception/TableException.php index dd21ea4c8..a0b01e21e 100644 --- a/DataStorage/Database/Schema/Exception/TableException.php +++ b/DataStorage/Database/Schema/Exception/TableException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Database\Schema\Exception; * @category System * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class TableException extends \PDOException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $message, int $code = 0, \Exception $previous = null) { @@ -53,7 +50,6 @@ class TableException extends \PDOException * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function findTable(string $message) : string { diff --git a/DataStorage/Database/Schema/Grammar/Grammar.php b/DataStorage/Database/Schema/Grammar/Grammar.php index 8894e87dd..0316ae51b 100644 --- a/DataStorage/Database/Schema/Grammar/Grammar.php +++ b/DataStorage/Database/Schema/Grammar/Grammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\DataStorage\Database\Schema\QueryType; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -63,7 +61,6 @@ class Grammar extends GrammarAbstract * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function compileComponents(BuilderAbstract $query) : array { @@ -96,7 +93,6 @@ class Grammar extends GrammarAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileDrop(BuilderAbstract $query, array $tables) : string { diff --git a/DataStorage/Database/Schema/Grammar/GrammarInterface.php b/DataStorage/Database/Schema/Grammar/GrammarInterface.php index dc5873c5d..d768c4e21 100644 --- a/DataStorage/Database/Schema/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Schema/Grammar/GrammarInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php index dd7e34a2e..b32923e86 100644 --- a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -49,7 +47,6 @@ class MysqlGrammar extends Grammar * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileSelects(Builder $query, array $columns) : string { @@ -71,7 +68,6 @@ class MysqlGrammar extends Grammar * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function compileFrom(Builder $query, array $table) : string { diff --git a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php index af761cd6d..e7a8e45b5 100644 --- a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php index d8268d309..568d46090 100644 --- a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php index f5b4b7b71..c877259be 100644 --- a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/DataStorage/Database/Schema/QueryType.php b/DataStorage/Database/Schema/QueryType.php index 7ec1bc76c..f15e00abe 100644 --- a/DataStorage/Database/Schema/QueryType.php +++ b/DataStorage/Database/Schema/QueryType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/LockException.php b/DataStorage/LockException.php index c8fc1f528..6582c2409 100644 --- a/DataStorage/LockException.php +++ b/DataStorage/LockException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\DataStorage; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class LockException extends \RuntimeException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $message, int $code = 0, \Exception $previous = null) { diff --git a/DataStorage/Session/ConsoleSession.php b/DataStorage/Session/ConsoleSession.php index 9405ab9f3..f006018b7 100644 --- a/DataStorage/Session/ConsoleSession.php +++ b/DataStorage/Session/ConsoleSession.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Session; * @category Framework * @package phpOMS\DataStorage\Session * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -45,7 +43,6 @@ class ConsoleSession implements SessionInterface * @param string|int|bool $sid Session id * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($sid = false) { diff --git a/DataStorage/Session/HttpSession.php b/DataStorage/Session/HttpSession.php index 4ea6eddd8..0e0038b29 100644 --- a/DataStorage/Session/HttpSession.php +++ b/DataStorage/Session/HttpSession.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\DataStorage\LockException; * @category Framework * @package phpOMS\DataStorage\Session * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -68,7 +66,6 @@ class HttpSession implements SessionInterface * @throws LockException Throws this exception if the session is alrady locked for further interaction. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(int $liftetime = 3600, $sid = false) { @@ -93,7 +90,6 @@ class HttpSession implements SessionInterface * Set Csrf protection for forms. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function setCsrfProtection() /* : void */ { @@ -133,7 +129,6 @@ class HttpSession implements SessionInterface * Lock session from further adjustments. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function lock() { @@ -146,7 +141,6 @@ class HttpSession implements SessionInterface * @return bool Lock status * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isLocked() : bool { @@ -198,7 +192,6 @@ class HttpSession implements SessionInterface * Destruct session. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __destruct() { diff --git a/DataStorage/Session/SessionInterface.php b/DataStorage/Session/SessionInterface.php index 463582867..8e24683a5 100644 --- a/DataStorage/Session/SessionInterface.php +++ b/DataStorage/Session/SessionInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\DataStorage\Session; * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ interface SessionInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get($key); @@ -55,7 +52,6 @@ interface SessionInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set($key, $value, bool $overwrite = true) : bool; @@ -67,7 +63,6 @@ interface SessionInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove($key) : bool; @@ -79,7 +74,6 @@ interface SessionInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function save() /* : void */; @@ -87,7 +81,6 @@ interface SessionInterface * @return int|string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSID(); @@ -97,7 +90,6 @@ interface SessionInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setSID($sid) /* : void */; diff --git a/DataStorage/Session/SocketSession.php b/DataStorage/Session/SocketSession.php index 8150a2ec0..1b152641a 100644 --- a/DataStorage/Session/SocketSession.php +++ b/DataStorage/Session/SocketSession.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Session; * @category Framework * @package phpOMS\DataStorage\Session * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -45,7 +43,6 @@ class SocketSession implements SessionInterface * @param string|int|bool $sid Session id * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($sid = false) { diff --git a/DataStorage/Web/Builder.php b/DataStorage/Web/Builder.php index 4bcaa0da7..28faf7490 100644 --- a/DataStorage/Web/Builder.php +++ b/DataStorage/Web/Builder.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMs\DataStorage\Database\Query\Builder as DatabaseQueryBuilder; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/Address.php b/Datatypes/Address.php index 03e77bb2d..1d07625c6 100644 --- a/Datatypes/Address.php +++ b/Datatypes/Address.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Datatypes; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -59,7 +57,6 @@ class Address implements \JsonSerializable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -72,7 +69,6 @@ class Address implements \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRecipient() : string { @@ -87,7 +83,6 @@ class Address implements \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setRecipient(string $recipient) /* : void */ { @@ -100,7 +95,6 @@ class Address implements \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFAO() : string { @@ -115,7 +109,6 @@ class Address implements \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setFAO(string $fao) /* : void */ { @@ -128,7 +121,6 @@ class Address implements \JsonSerializable * @return Location * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLocation() : Location { @@ -143,7 +135,6 @@ class Address implements \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLocation(Location $location) /* : void */ { diff --git a/Datatypes/AddressType.php b/Datatypes/AddressType.php index 0938c5ae9..80b879027 100644 --- a/Datatypes/AddressType.php +++ b/Datatypes/AddressType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Datatypes; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/Enum.php b/Datatypes/Enum.php index 9db193d39..af47943df 100644 --- a/Datatypes/Enum.php +++ b/Datatypes/Enum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Datatypes; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ abstract class Enum * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isValidValue($value) : bool { @@ -58,7 +55,6 @@ abstract class Enum * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getConstants() : array { @@ -73,7 +69,6 @@ abstract class Enum * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRandom() { @@ -93,7 +88,6 @@ abstract class Enum * @throws \Exception Throws this exception if the constant is not defined in the enum class. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getByName(string $name) { @@ -114,7 +108,6 @@ abstract class Enum * @throws \Exception Throws this exception if the constant is not defined in the enum class. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getName(string $value) { @@ -133,7 +126,6 @@ abstract class Enum * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isValidName(string $name) : bool { @@ -146,7 +138,6 @@ abstract class Enum * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function count() : int { diff --git a/Datatypes/EnumArray.php b/Datatypes/EnumArray.php index c58a27d60..be248fd33 100644 --- a/Datatypes/EnumArray.php +++ b/Datatypes/EnumArray.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Datatypes; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ abstract class EnumArray * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isValidName(string $name) : bool { @@ -58,7 +55,6 @@ abstract class EnumArray * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getConstants() : array { @@ -76,7 +72,6 @@ abstract class EnumArray * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isValidValue($value) : bool { @@ -95,7 +90,6 @@ abstract class EnumArray * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function get($key) { diff --git a/Datatypes/ExactFloat.php b/Datatypes/ExactFloat.php index 2de68b998..4b806f4d9 100644 --- a/Datatypes/ExactFloat.php +++ b/Datatypes/ExactFloat.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Datatypes/Exception/InvalidEnumName.php b/Datatypes/Exception/InvalidEnumName.php index a6030d555..eb7310b6d 100644 --- a/Datatypes/Exception/InvalidEnumName.php +++ b/Datatypes/Exception/InvalidEnumName.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Datatypes\Exception; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class InvalidEnumName extends \UnexpectedValueException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $message, int $code = 0, \Exception $previous = null) { diff --git a/Datatypes/Exception/InvalidEnumValue.php b/Datatypes/Exception/InvalidEnumValue.php index ca7208e4a..54f17fb22 100644 --- a/Datatypes/Exception/InvalidEnumValue.php +++ b/Datatypes/Exception/InvalidEnumValue.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Datatypes\Exception; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class InvalidEnumValue extends \UnexpectedValueException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $message, int $code = 0, \Exception $previous = null) { diff --git a/Datatypes/Iban.php b/Datatypes/Iban.php index d1ea83f6d..767279f98 100644 --- a/Datatypes/Iban.php +++ b/Datatypes/Iban.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Validation\Base\IbanEnum; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -48,7 +46,6 @@ class Iban implements \Serializable * @param string $iban Iban * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $iban) { @@ -63,7 +60,6 @@ class Iban implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parse(string $iban) /* : void */ { @@ -82,7 +78,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function normalize(string $iban) : string { @@ -95,7 +90,6 @@ class Iban implements \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLength() : int { @@ -108,7 +102,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getChecksum() : string { @@ -123,7 +116,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function getSequence(string $sequence) : string { @@ -146,7 +138,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCountry() : string { @@ -159,7 +150,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getNationalChecksum() : string { @@ -172,7 +162,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBranchCode() : string { @@ -185,7 +174,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAccountType() : string { @@ -198,7 +186,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCurrency() : string { @@ -211,7 +198,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBankCode() : string { @@ -224,7 +210,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAccount() : string { @@ -237,7 +222,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getHoldersKennital() : string { @@ -250,7 +234,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getOwnerAccountNumber() : string { @@ -265,7 +248,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBicCode() : string { @@ -289,7 +271,6 @@ class Iban implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function prettyPrint() : string { diff --git a/Datatypes/Location.php b/Datatypes/Location.php index 14148d1be..5c824374b 100644 --- a/Datatypes/Location.php +++ b/Datatypes/Location.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Datatypes; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -99,7 +97,6 @@ class Location implements \JsonSerializable, \Serializable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -109,7 +106,6 @@ class Location implements \JsonSerializable, \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getId() : int { @@ -120,7 +116,6 @@ class Location implements \JsonSerializable, \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getType() : int { @@ -136,7 +131,6 @@ class Location implements \JsonSerializable, \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPostal() : string { @@ -149,7 +143,6 @@ class Location implements \JsonSerializable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setPostal(string $postal) /* : void */ { @@ -160,7 +153,6 @@ class Location implements \JsonSerializable, \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCity() : string { @@ -173,7 +165,6 @@ class Location implements \JsonSerializable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCity(string $city) /* : void */ { @@ -184,7 +175,6 @@ class Location implements \JsonSerializable, \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCountry() : string { @@ -197,7 +187,6 @@ class Location implements \JsonSerializable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCountry(string $country) /* : void */ { @@ -208,7 +197,6 @@ class Location implements \JsonSerializable, \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAddress() : string { @@ -221,7 +209,6 @@ class Location implements \JsonSerializable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAddress(string $address) /* : void */ { @@ -232,7 +219,6 @@ class Location implements \JsonSerializable, \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getState() : string { @@ -245,7 +231,6 @@ class Location implements \JsonSerializable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setState(string $state) /* : void */ { @@ -256,7 +241,6 @@ class Location implements \JsonSerializable, \Serializable * @return float[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getGeo() : array { @@ -269,7 +253,6 @@ class Location implements \JsonSerializable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setGeo(array $geo) /* : void */ { diff --git a/Datatypes/NullLocation.php b/Datatypes/NullLocation.php index 1c3e562a9..da7f66d1d 100644 --- a/Datatypes/NullLocation.php +++ b/Datatypes/NullLocation.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Datatypes; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/PhoneType.php b/Datatypes/PhoneType.php index 8ef821e58..9c4e44737 100644 --- a/Datatypes/PhoneType.php +++ b/Datatypes/PhoneType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Datatypes; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index c098a8553..68018390a 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Datatypes; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -67,7 +65,6 @@ class SmartDateTime extends \DateTime * @return SmartDateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function createModify(int $y, int $m = 0, int $d = 0, int $calendar = CAL_GREGORIAN) : SmartDateTime { @@ -88,7 +85,6 @@ class SmartDateTime extends \DateTime * @return SmartDateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function smartModify(int $y, int $m = 0, int $d = 0, int $calendar = CAL_GREGORIAN) : SmartDateTime { @@ -124,7 +120,6 @@ class SmartDateTime extends \DateTime * @return SmartDateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEndOfMonth() : SmartDateTime { @@ -137,7 +132,6 @@ class SmartDateTime extends \DateTime * @return SmartDateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStartOfMonth() : SmartDateTime { @@ -150,7 +144,6 @@ class SmartDateTime extends \DateTime * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDaysOfMonth() : int { @@ -163,7 +156,6 @@ class SmartDateTime extends \DateTime * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFirstDayOfMonth() : int { @@ -176,7 +168,6 @@ class SmartDateTime extends \DateTime * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isLeapYear() : bool { @@ -189,7 +180,6 @@ class SmartDateTime extends \DateTime * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function leapYear(int $year) : bool { @@ -216,7 +206,6 @@ class SmartDateTime extends \DateTime * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDayOfWeek(int $y, int $m, int $d) : int { diff --git a/Dispatcher/Dispatcher.php b/Dispatcher/Dispatcher.php index d54dd3c97..552fdf7dd 100644 --- a/Dispatcher/Dispatcher.php +++ b/Dispatcher/Dispatcher.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\System\File\PathException; * @category Framework * @package phpOMS\Dispatcher * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -59,7 +57,6 @@ class Dispatcher * @param ApplicationAbstract $app Appliaction * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(ApplicationAbstract $app) { @@ -75,7 +72,6 @@ class Dispatcher * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function dispatch($controller, ...$data) : array { @@ -107,7 +103,6 @@ class Dispatcher * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function dispatchString(string $controller, array $data = null) : array { @@ -137,7 +132,6 @@ class Dispatcher * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function dispatchArray(array $controller, array $data = null) : array { @@ -160,7 +154,6 @@ class Dispatcher * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private function dispatchClosure(\Closure $controller, array $data = null) { @@ -175,7 +168,6 @@ class Dispatcher * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private function getController(string $controller) { @@ -204,7 +196,6 @@ class Dispatcher * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(ModuleAbstract $controller, string $name) : bool { diff --git a/Event/EventManager.php b/Event/EventManager.php index a47f9a387..5ba297810 100644 --- a/Event/EventManager.php +++ b/Event/EventManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Event; * @category Framework * @package phpOMS\Event * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -52,7 +50,6 @@ class EventManager * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -155,7 +152,6 @@ class EventManager * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/Html/TagType.php b/Html/TagType.php index 7fb703f38..d1a97bad1 100644 --- a/Html/TagType.php +++ b/Html/TagType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Html * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO3166CharEnum.php b/Localization/ISO3166CharEnum.php index a73425381..7090cf6e1 100644 --- a/Localization/ISO3166CharEnum.php +++ b/Localization/ISO3166CharEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO3166NameEnum.php b/Localization/ISO3166NameEnum.php index 7c861fd43..7ce4be6bf 100644 --- a/Localization/ISO3166NameEnum.php +++ b/Localization/ISO3166NameEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO3166NumEnum.php b/Localization/ISO3166NumEnum.php index 7251438eb..386a13460 100644 --- a/Localization/ISO3166NumEnum.php +++ b/Localization/ISO3166NumEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO3166TwoEnum.php b/Localization/ISO3166TwoEnum.php index 8a762254c..acae01517 100644 --- a/Localization/ISO3166TwoEnum.php +++ b/Localization/ISO3166TwoEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO4217CharEnum.php b/Localization/ISO4217CharEnum.php index d5dc6dd1e..e0e3bd716 100644 --- a/Localization/ISO4217CharEnum.php +++ b/Localization/ISO4217CharEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO4217DecimalEnum.php b/Localization/ISO4217DecimalEnum.php index f18350b3a..b4869cbee 100644 --- a/Localization/ISO4217DecimalEnum.php +++ b/Localization/ISO4217DecimalEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO4217Enum.php b/Localization/ISO4217Enum.php index 30ecb4458..f1dce8632 100644 --- a/Localization/ISO4217Enum.php +++ b/Localization/ISO4217Enum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO4217NumEnum.php b/Localization/ISO4217NumEnum.php index 4cadea101..554b7bb07 100644 --- a/Localization/ISO4217NumEnum.php +++ b/Localization/ISO4217NumEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO4217SubUnitEnum.php b/Localization/ISO4217SubUnitEnum.php index 5fb20cf8d..acc1826d0 100644 --- a/Localization/ISO4217SubUnitEnum.php +++ b/Localization/ISO4217SubUnitEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO4217SymbolEnum.php b/Localization/ISO4217SymbolEnum.php index 72ed3e994..6e70e0f46 100644 --- a/Localization/ISO4217SymbolEnum.php +++ b/Localization/ISO4217SymbolEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO639Enum.php b/Localization/ISO639Enum.php index ce0373106..4ee775731 100644 --- a/Localization/ISO639Enum.php +++ b/Localization/ISO639Enum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO639x1Enum.php b/Localization/ISO639x1Enum.php index 9f049aa31..d469bd70c 100644 --- a/Localization/ISO639x1Enum.php +++ b/Localization/ISO639x1Enum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO639x2Enum.php b/Localization/ISO639x2Enum.php index 88217e49a..d136b62fd 100644 --- a/Localization/ISO639x2Enum.php +++ b/Localization/ISO639x2Enum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/ISO8601EnumArray.php b/Localization/ISO8601EnumArray.php index 30cd1e599..28343dd72 100644 --- a/Localization/ISO8601EnumArray.php +++ b/Localization/ISO8601EnumArray.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Datatypes\EnumArray; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/L11nManager.php b/Localization/L11nManager.php index edff93711..6991c3bff 100644 --- a/Localization/L11nManager.php +++ b/Localization/L11nManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Module\ModuleAbstract; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -57,7 +55,6 @@ class L11nManager * @param LoggerInterface $logger Logger * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(LoggerInterface $logger = null) { @@ -72,7 +69,6 @@ class L11nManager * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isLanguageLoaded(string $language) : bool { @@ -94,7 +90,6 @@ class L11nManager * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function loadLanguage(string $language, string $from, array $translation) /* : void */ { @@ -123,7 +118,6 @@ class L11nManager * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function loadLanguageFromFile(string $language, string $from, string $file) /* : void */ { @@ -145,7 +139,6 @@ class L11nManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getModuleLanguage(string $language, string $module = null) : array { @@ -169,7 +162,6 @@ class L11nManager * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getText(string $code, string $module, string $theme, string $translation) : string { diff --git a/Localization/Localization.php b/Localization/Localization.php index f0698a218..1c933b200 100644 --- a/Localization/Localization.php +++ b/Localization/Localization.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Utils\Converter\TemperatureType; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -146,7 +144,6 @@ class Localization * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -156,7 +153,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCountry() : string { @@ -169,7 +165,6 @@ class Localization * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCountry(string $country) /* : void */ { @@ -184,7 +179,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getTimezone() : string { @@ -197,7 +191,6 @@ class Localization * @todo : maybe make parameter int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setTimezone(string $timezone) /* : void */ { @@ -212,7 +205,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLanguage() : string { @@ -227,7 +219,6 @@ class Localization * @throws InvalidEnumValue * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLanguage(string $language) /* : void */ { @@ -242,7 +233,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCurrency() : string { @@ -255,7 +245,6 @@ class Localization * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCurrency(string $currency) /* : void */ { @@ -270,7 +259,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDatetime() : string { @@ -283,7 +271,6 @@ class Localization * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDatetime(string $datetime) /* : void */ { @@ -294,7 +281,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDecimal() : string { @@ -307,7 +293,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDecimal(string $decimal) /* : void */ { @@ -318,7 +303,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getThousands() : string { @@ -331,7 +315,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setThousands(string $thousands) /* : void */ { @@ -342,7 +325,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAngle() : string { @@ -355,7 +337,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAngle(string $angle) /* : void */ { @@ -366,7 +347,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getTemperature() : string { @@ -379,7 +359,6 @@ class Localization * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setTemperature(string $temperature) /* : void */ { diff --git a/Localization/Money.php b/Localization/Money.php index 0db8da76b..8cffa5405 100644 --- a/Localization/Money.php +++ b/Localization/Money.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Localization; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -89,7 +87,6 @@ class Money implements \Serializable * @param int $position Symbol position * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($value = 0, string $thousands = ',', string $decimal = '.', string $symbol = '', int $position = 0) { @@ -110,7 +107,6 @@ class Money implements \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function toInt(string $value, string $thousands = ',', string $decimal = '.') : int { @@ -139,7 +135,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLocalization(string $thousands = ',', string $decimal = '.', string $symbol = '', int $position = 0) /* : void */ { @@ -159,7 +154,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setString(string $value) : Money { @@ -176,7 +170,6 @@ class Money implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCurrency(int $decimals = 2) : string { @@ -191,7 +184,6 @@ class Money implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAmount(int $decimals = 2) : string { @@ -211,7 +203,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add($value) : Money { @@ -232,7 +223,6 @@ class Money implements \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInt() : int { @@ -247,7 +237,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function sub($value) : Money { @@ -270,7 +259,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function mult($value) : Money { @@ -289,7 +277,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function div($value) : Money { @@ -306,7 +293,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function abs() : Money { @@ -323,7 +309,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function pow($value) : Money { @@ -340,7 +325,6 @@ class Money implements \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serialize() { @@ -355,7 +339,6 @@ class Money implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function unserialize($value) { @@ -370,7 +353,6 @@ class Money implements \Serializable * @return Money * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setInt(int $value) : Money { diff --git a/Localization/NullLocalization.php b/Localization/NullLocalization.php index 5d697536b..ed113b0a2 100644 --- a/Localization/NullLocalization.php +++ b/Localization/NullLocalization.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Localization; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/PhoneEnum.php b/Localization/PhoneEnum.php index 554bc3869..a268ec22e 100644 --- a/Localization/PhoneEnum.php +++ b/Localization/PhoneEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/TimeZoneEnumArray.php b/Localization/TimeZoneEnumArray.php index 20a3cf369..42dc989b8 100644 --- a/Localization/TimeZoneEnumArray.php +++ b/Localization/TimeZoneEnumArray.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\EnumArray; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Log/FileLogger.php b/Log/FileLogger.php index 4634c1f0b..a64ba38c9 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Utils\StringUtils; * @category Framework * @package phpOMS\Log * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -123,7 +121,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function createFile() /* : void */ { @@ -142,7 +139,6 @@ class FileLogger implements LoggerInterface * @return FileLogger * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getInstance(string $path = '', bool $verbose = false) : FileLogger { @@ -172,7 +168,6 @@ class FileLogger implements LoggerInterface * Protect instance from getting copied from outside. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __clone() { diff --git a/Log/LogLevel.php b/Log/LogLevel.php index 1b604a17d..d579d8a15 100644 --- a/Log/LogLevel.php +++ b/Log/LogLevel.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Log * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Log/LoggerInterface.php b/Log/LoggerInterface.php index a20346096..7ef7a1b12 100644 --- a/Log/LoggerInterface.php +++ b/Log/LoggerInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Log; * @category Framework * @package phpOMS\Log * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Differential/FiniteDifference.php b/Math/Differential/FiniteDifference.php index d439df09b..95c55ac49 100644 --- a/Math/Differential/FiniteDifference.php +++ b/Math/Differential/FiniteDifference.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Parser\Evaluator; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -51,7 +49,6 @@ class FiniteDifference * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNewtonDifferenceQuotient(string $formula, array $variable) : float { @@ -69,7 +66,6 @@ class FiniteDifference * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSymmetricDifferenceQuotient(string $formula, array $variable) : float { @@ -90,7 +86,6 @@ class FiniteDifference * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFivePointStencil(string $formula, array $variable, int $derivative = 1) : float { diff --git a/Math/Finance/Depreciation.php b/Math/Finance/Depreciation.php index 03c4c6afc..81e379d7b 100644 --- a/Math/Finance/Depreciation.php +++ b/Math/Finance/Depreciation.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/FinanceFormulas.php b/Math/Finance/FinanceFormulas.php index e7c78db75..cbce240c7 100644 --- a/Math/Finance/FinanceFormulas.php +++ b/Math/Finance/FinanceFormulas.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Statistic\Average; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Finance/Forecasting/AR.php b/Math/Finance/Forecasting/AR.php index 8cb30e691..9504872ea 100644 --- a/Math/Finance/Forecasting/AR.php +++ b/Math/Finance/Forecasting/AR.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/ARCH.php b/Math/Finance/Forecasting/ARCH.php index 82410b2d4..78a0cbade 100644 --- a/Math/Finance/Forecasting/ARCH.php +++ b/Math/Finance/Forecasting/ARCH.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/ARFIMA.php b/Math/Finance/Forecasting/ARFIMA.php index 37388a478..81cb604d2 100644 --- a/Math/Finance/Forecasting/ARFIMA.php +++ b/Math/Finance/Forecasting/ARFIMA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/ARIMA.php b/Math/Finance/Forecasting/ARIMA.php index 463e271de..6086b6011 100644 --- a/Math/Finance/Forecasting/ARIMA.php +++ b/Math/Finance/Forecasting/ARIMA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/ARMA.php b/Math/Finance/Forecasting/ARMA.php index bf2fe0d34..6d5616d09 100644 --- a/Math/Finance/Forecasting/ARMA.php +++ b/Math/Finance/Forecasting/ARMA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/ClassicalDecomposition.php b/Math/Finance/Forecasting/ClassicalDecomposition.php index a6cfd8d5e..d61fa784b 100644 --- a/Math/Finance/Forecasting/ClassicalDecomposition.php +++ b/Math/Finance/Forecasting/ClassicalDecomposition.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Math\Statistic\Average; * @category Framework * @package phpOMS\Math\Finance\Forecasting * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @see https://www.otexts.org/fpp/6/1 @@ -91,7 +89,6 @@ class ClassicalDecomposition * @param int $mode Decomposition mode * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(array $data, int $order, int $mode = self::ADDITIVE) { @@ -108,7 +105,6 @@ class ClassicalDecomposition * @return array Returns an array containing the trend cycle component, detrended series, seasonal component and remainder component. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDecomposition() : array { @@ -134,7 +130,6 @@ class ClassicalDecomposition * @return array Total moving average 2 x m-MA * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function computeTrendCycle(array $data, int $order) : array { @@ -153,7 +148,6 @@ class ClassicalDecomposition * @return array Detrended series / seasonal normalized data * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function computeDetrendedSeries(array $data, array $trendCycleComponent, int $mode) : array { @@ -179,7 +173,6 @@ class ClassicalDecomposition * @return int New data start index * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getStartOfDecomposition(int $dataSize, int $trendCycleComponents) : int { @@ -197,7 +190,6 @@ class ClassicalDecomposition * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function computeSeasonalComponent(array $detrendedSeries, int $order) : array { @@ -228,7 +220,6 @@ class ClassicalDecomposition * @return array All remainders or absolute errors * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function computeRemainderComponent(array $data, array $trendCycleComponent, array $seasonalComponent, int $mode = self::ADDITIVE) : array { diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php b/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php index 8a9cf23d2..f8767ef20 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php b/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php index 2df7c5f98..a483abfb0 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Html * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php b/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php index 37fa2a1de..ae89924e0 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Html * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Finance/Forecasting/GARCH.php b/Math/Finance/Forecasting/GARCH.php index 0326e1f45..c1fbee027 100644 --- a/Math/Finance/Forecasting/GARCH.php +++ b/Math/Finance/Forecasting/GARCH.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/MA.php b/Math/Finance/Forecasting/MA.php index 5ef2850dd..74b4d2220 100644 --- a/Math/Finance/Forecasting/MA.php +++ b/Math/Finance/Forecasting/MA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/NAR.php b/Math/Finance/Forecasting/NAR.php index 125215468..6bf1f4278 100644 --- a/Math/Finance/Forecasting/NAR.php +++ b/Math/Finance/Forecasting/NAR.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/NMA.php b/Math/Finance/Forecasting/NMA.php index 0334228fe..097f4f752 100644 --- a/Math/Finance/Forecasting/NMA.php +++ b/Math/Finance/Forecasting/NMA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/SARIMA.php b/Math/Finance/Forecasting/SARIMA.php index d14e57d54..93fa6dfda 100644 --- a/Math/Finance/Forecasting/SARIMA.php +++ b/Math/Finance/Forecasting/SARIMA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Finance/Forecasting/SmoothingType.php b/Math/Finance/Forecasting/SmoothingType.php index e4ab70cc7..006ed3816 100644 --- a/Math/Finance/Forecasting/SmoothingType.php +++ b/Math/Finance/Forecasting/SmoothingType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Html * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Finance/Loan.php b/Math/Finance/Loan.php index b6953dfdf..8d4d390db 100644 --- a/Math/Finance/Loan.php +++ b/Math/Finance/Loan.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Finance; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Finance/Lorenzkurve.php b/Math/Finance/Lorenzkurve.php index 7684c0001..b0683ad33 100644 --- a/Math/Finance/Lorenzkurve.php +++ b/Math/Finance/Lorenzkurve.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Finance; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Finance/StockBonds.php b/Math/Finance/StockBonds.php index a854cf206..4e9c77432 100644 --- a/Math/Finance/StockBonds.php +++ b/Math/Finance/StockBonds.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Finance; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Functions/Fibunacci.php b/Math/Functions/Fibunacci.php index 9325e12f8..84d6b46ad 100644 --- a/Math/Functions/Fibunacci.php +++ b/Math/Functions/Fibunacci.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Number\Numbers; * @category Framework * @package phpOMS\Math\Function * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class Fibunacci * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isFibunacci(int $n) : bool { @@ -57,7 +54,6 @@ class Fibunacci * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function fibunacci(int $n, int $start = 1) : int { @@ -86,7 +82,6 @@ class Fibunacci * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function binet(int $n) : int { diff --git a/Math/Functions/Functions.php b/Math/Functions/Functions.php index 9de4215b6..30aa4add5 100644 --- a/Math/Functions/Functions.php +++ b/Math/Functions/Functions.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Functions; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class Functions * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getGammaInteger(int $k) : int { @@ -58,7 +55,6 @@ class Functions * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function fact(int $n, int $start = 1) : int { @@ -84,7 +80,6 @@ class Functions * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function binomialCoefficient(int $n, int $k) : int { @@ -126,7 +121,6 @@ class Functions * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function ackermann(int $m, int $n) : int { @@ -147,7 +141,6 @@ class Functions * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function abs(array $values) : array { @@ -169,7 +162,6 @@ class Functions * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function invMod(int $a, int $n) : int { @@ -216,7 +208,6 @@ class Functions * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mod($a, $b) : int { @@ -235,7 +226,6 @@ class Functions * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isOdd($a) : bool { @@ -250,7 +240,6 @@ class Functions * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isEven($a) : bool { @@ -270,7 +259,6 @@ class Functions * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRelativeDegree($value, $length, $start = 0) : int { diff --git a/Math/Geometry/ConvexHull/MonotoneChain.php b/Math/Geometry/ConvexHull/MonotoneChain.php index c6a4d7e3a..01a8c43e6 100644 --- a/Math/Geometry/ConvexHull/MonotoneChain.php +++ b/Math/Geometry/ConvexHull/MonotoneChain.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Geometry\ConvexHull; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ final class MonotoneChain * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function createConvexHull(array $points) : array { @@ -88,7 +85,6 @@ final class MonotoneChain * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function cross(array $a, array $b, array $c) : float { @@ -104,7 +100,6 @@ final class MonotoneChain * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function sort(array $a, array $b) : float { diff --git a/Math/Integral/Gauss.php b/Math/Integral/Gauss.php index 0146f3e1a..2c6f949c5 100644 --- a/Math/Integral/Gauss.php +++ b/Math/Integral/Gauss.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Matrix/Cholesky.php b/Math/Matrix/Cholesky.php index 2c4f7943b..b0a88ce53 100644 --- a/Math/Matrix/Cholesky.php +++ b/Math/Matrix/Cholesky.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Matrix/DimensionException.php b/Math/Matrix/DimensionException.php index 3112eacdd..29d1b9d66 100644 --- a/Math/Matrix/DimensionException.php +++ b/Math/Matrix/DimensionException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Matrix; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class DimensionException extends \RuntimeException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($m, $n, int $code = 0, \Exception $previous = null) { diff --git a/Math/Matrix/IdentityMatrix.php b/Math/Matrix/IdentityMatrix.php index eedee0b12..dcecca0f2 100644 --- a/Math/Matrix/IdentityMatrix.php +++ b/Math/Matrix/IdentityMatrix.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Matrix; * @category Framework * @package phpOMS\Math\Matrix * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -36,7 +34,6 @@ class IdentityMatrix extends Matrix * @param int $n Matrix dimension * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __constrcut(int $n) { diff --git a/Math/Matrix/InverseType.php b/Math/Matrix/InverseType.php index db286efe1..bae57040f 100644 --- a/Math/Matrix/InverseType.php +++ b/Math/Matrix/InverseType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Math\Matrix * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Matrix/Matrix.php b/Math/Matrix/Matrix.php index f4359f1b1..83ac066ec 100644 --- a/Math/Matrix/Matrix.php +++ b/Math/Matrix/Matrix.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Matrix; * @category Framework * @package phpOMS\Math\Matrix * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -69,7 +67,6 @@ class Matrix implements \ArrayAccess, \Iterator * @param int $n Columns * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(int $m, int $n = 1) { @@ -91,7 +88,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws DimensionException * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(int $m, int $n, $value) /* : void */ { @@ -113,7 +109,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws DimensionException * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(int $m, int $n) { @@ -130,7 +125,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return Matrix * * @since 1.0.0 - * @author Dennis Eichhorn */ public function transpose() : Matrix { @@ -146,7 +140,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMatrix() : array { @@ -159,7 +152,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function rank() : int { @@ -176,7 +168,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setMatrix(array $matrix) : Matrix { @@ -199,7 +190,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function sub($value) : Matrix { @@ -222,7 +212,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add($value) : Matrix { @@ -245,7 +234,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function addMatrix(Matrix $matrix) : Matrix { @@ -274,7 +262,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getM() : int { @@ -287,7 +274,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getN() : int { @@ -304,7 +290,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function addScalar($scalar) : Matrix { @@ -332,7 +317,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function mult($value) : Matrix { @@ -355,7 +339,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function multMatrix(Matrix $matrix) : Matrix { @@ -397,7 +380,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function multScalar($scalar) : Matrix { @@ -421,7 +403,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return Matrix * * @since 1.0.0 - * @author Dennis Eichhorn */ public function upperTriangular() : Matrix { @@ -442,7 +423,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return int Det sign * * @since 1.0.0 - * @author Dennis Eichhorn */ private function upperTrianglize(array &$arr) : int { @@ -491,7 +471,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return Matrix * * @since 1.0.0 - * @author Dennis Eichhorn */ public function lowerTriangular() : Matrix { @@ -509,7 +488,6 @@ class Matrix implements \ArrayAccess, \Iterator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function inverse(int $algorithm = InverseType::GAUSS_JORDAN) : Matrix { @@ -531,7 +509,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return Matrix * * @since 1.0.0 - * @author Dennis Eichhorn */ private function inverseGaussJordan() : Matrix { @@ -653,7 +630,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function diag(array $arr) : array { @@ -692,7 +668,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public function det() : float { @@ -840,7 +815,6 @@ class Matrix implements \ArrayAccess, \Iterator * @return Matrix * * @since 1.0.0 - * @author Dennis Eichhorn */ private function decompositionCholesky() : Matrix { diff --git a/Math/Matrix/Vector.php b/Math/Matrix/Vector.php index b30e376c1..5d5cfb18b 100644 --- a/Math/Matrix/Vector.php +++ b/Math/Matrix/Vector.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Matrix; * @category Framework * @package phpOMS\Math\Matrix * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -36,7 +34,6 @@ class Vector extends Matrix * @param int $m Columns * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(int $m) { diff --git a/Math/Number/Complex.php b/Math/Number/Complex.php index 912002978..4a3fb644f 100644 --- a/Math/Number/Complex.php +++ b/Math/Number/Complex.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Number/Integer.php b/Math/Number/Integer.php index 90f3acba6..19f4f97ca 100644 --- a/Math/Number/Integer.php +++ b/Math/Number/Integer.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Number; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class Integer * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isInteger($value) : bool { diff --git a/Math/Number/Irrational.php b/Math/Number/Irrational.php index 777d8a57d..de643d00c 100644 --- a/Math/Number/Irrational.php +++ b/Math/Number/Irrational.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Number/Natural.php b/Math/Number/Natural.php index aa7f95789..5e4da0e6b 100644 --- a/Math/Number/Natural.php +++ b/Math/Number/Natural.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Number; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class Natural * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isNatural($value) : bool { diff --git a/Math/Number/NumberType.php b/Math/Number/NumberType.php index e93b79811..4e4ebc90e 100644 --- a/Math/Number/NumberType.php +++ b/Math/Number/NumberType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Number/Numbers.php b/Math/Number/Numbers.php index 259849641..d19ea6689 100644 --- a/Math/Number/Numbers.php +++ b/Math/Number/Numbers.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Number; * @category Framework * @package Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Number/OperationInterface.php b/Math/Number/OperationInterface.php index 05b4421a5..44b666296 100644 --- a/Math/Number/OperationInterface.php +++ b/Math/Number/OperationInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Number; * @category Framework * @package phpOMS\Account * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ interface OperationInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add($x); @@ -50,7 +47,6 @@ interface OperationInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function sub($x); @@ -62,7 +58,6 @@ interface OperationInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function mult($x); @@ -74,7 +69,6 @@ interface OperationInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function div($x); @@ -86,7 +80,6 @@ interface OperationInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function pow($p); @@ -96,7 +89,6 @@ interface OperationInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function abs(); } \ No newline at end of file diff --git a/Math/Number/Prime.php b/Math/Number/Prime.php index 01cff7de9..d84d33b61 100644 --- a/Math/Number/Prime.php +++ b/Math/Number/Prime.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Number; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Number/Rational.php b/Math/Number/Rational.php index 016868f1f..ab2b3ecd1 100644 --- a/Math/Number/Rational.php +++ b/Math/Number/Rational.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Number/Real.php b/Math/Number/Real.php index b8b9ff564..3a8dd0c8f 100644 --- a/Math/Number/Real.php +++ b/Math/Number/Real.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Numerics/Interpolation/CubicSplineInterpolation.php b/Math/Numerics/Interpolation/CubicSplineInterpolation.php index a94e72fd3..631661930 100644 --- a/Math/Numerics/Interpolation/CubicSplineInterpolation.php +++ b/Math/Numerics/Interpolation/CubicSplineInterpolation.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Numerics\Interpolation; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Numerics/Interpolation/LinearInterpolation.php b/Math/Numerics/Interpolation/LinearInterpolation.php index 40f74e97b..f0c58eee3 100644 --- a/Math/Numerics/Interpolation/LinearInterpolation.php +++ b/Math/Numerics/Interpolation/LinearInterpolation.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Numerics\Interpolation; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Numerics/Interpolation/PolynomialInterpolation.php b/Math/Numerics/Interpolation/PolynomialInterpolation.php index 79d2802ab..0de1a92b6 100644 --- a/Math/Numerics/Interpolation/PolynomialInterpolation.php +++ b/Math/Numerics/Interpolation/PolynomialInterpolation.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Numerics\Interpolation; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/GeneticAlgorithmInterface.php b/Math/Optimization/GeneticAlgorithmInterface.php index 060c4b576..877277b8a 100644 --- a/Math/Optimization/GeneticAlgorithmInterface.php +++ b/Math/Optimization/GeneticAlgorithmInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Optimization; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/Graph/Dijkstra.php b/Math/Optimization/Graph/Dijkstra.php index dfaef4f1e..71494506f 100644 --- a/Math/Optimization/Graph/Dijkstra.php +++ b/Math/Optimization/Graph/Dijkstra.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/Graph/EdgeInterface.php b/Math/Optimization/Graph/EdgeInterface.php index 71a0aef2b..23520dc5b 100644 --- a/Math/Optimization/Graph/EdgeInterface.php +++ b/Math/Optimization/Graph/EdgeInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Optimization\Graph; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -36,7 +34,6 @@ interface EdgeInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getId(); @@ -46,7 +43,6 @@ interface EdgeInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getWeight(); @@ -56,7 +52,6 @@ interface EdgeInterface * @param mixed $weight Weight of edge * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setWeight($weight); @@ -66,7 +61,6 @@ interface EdgeInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getVertices() : array; @@ -77,7 +71,6 @@ interface EdgeInterface * @param VerticeInterface $b Vertice b * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setVertices(VerticeInterface $a, VerticeInterface $b); } \ No newline at end of file diff --git a/Math/Optimization/Graph/FloydWarshall.php b/Math/Optimization/Graph/FloydWarshall.php index b38c06e86..5b75cb03b 100644 --- a/Math/Optimization/Graph/FloydWarshall.php +++ b/Math/Optimization/Graph/FloydWarshall.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/Graph/Graph.php b/Math/Optimization/Graph/Graph.php index 512d04e97..cbcae3539 100644 --- a/Math/Optimization/Graph/Graph.php +++ b/Math/Optimization/Graph/Graph.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Stdlib\Map\OrderType; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -54,7 +52,6 @@ class Graph * Constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -69,7 +66,6 @@ class Graph * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addVertice(VerticeInterface $vertice) : bool { @@ -90,7 +86,6 @@ class Graph * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addEdge(EdgeInterface $edge) : bool { @@ -111,7 +106,6 @@ class Graph * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeVertice($id) : bool { @@ -133,7 +127,6 @@ class Graph * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeEdge($a, $b) : bool { @@ -148,7 +141,6 @@ class Graph * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeEdgeById($id) : bool { @@ -169,7 +161,6 @@ class Graph * @return VerticeInterface * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getVertice($id) : VerticeInterface { @@ -187,7 +178,6 @@ class Graph * @return EdgeInterface * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEdge($a, $b) : EdgeInterface { @@ -202,7 +192,6 @@ class Graph * @return EdgeInterface * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEdgeById(int $id) : EdgeInterface { @@ -215,7 +204,6 @@ class Graph * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function countVertices() : int { @@ -228,7 +216,6 @@ class Graph * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function countEdges() : int { diff --git a/Math/Optimization/Graph/NullEdge.php b/Math/Optimization/Graph/NullEdge.php index bae587b4a..5e023f866 100644 --- a/Math/Optimization/Graph/NullEdge.php +++ b/Math/Optimization/Graph/NullEdge.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Math\Optimization\Graph; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/Graph/NullVertice.php b/Math/Optimization/Graph/NullVertice.php index 631fff565..02fe18cd4 100644 --- a/Math/Optimization/Graph/NullVertice.php +++ b/Math/Optimization/Graph/NullVertice.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Math\Optimization\Graph; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/Graph/VerticeInterface.php b/Math/Optimization/Graph/VerticeInterface.php index 9b63a2761..3b053cbf0 100644 --- a/Math/Optimization/Graph/VerticeInterface.php +++ b/Math/Optimization/Graph/VerticeInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Optimization\Graph; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -36,7 +34,6 @@ interface VerticeInterface * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getId(); @@ -46,7 +43,6 @@ interface VerticeInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEdges() : array; @@ -58,7 +54,6 @@ interface VerticeInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addEdge(EdgeInterface $edge) : bool; } diff --git a/Math/Optimization/Knappsack/Backpack.php b/Math/Optimization/Knappsack/Backpack.php index da13bf79a..3b6469790 100644 --- a/Math/Optimization/Knappsack/Backpack.php +++ b/Math/Optimization/Knappsack/Backpack.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/Knappsack/BruteForce.php b/Math/Optimization/Knappsack/BruteForce.php index 420e5b522..efd087fc1 100644 --- a/Math/Optimization/Knappsack/BruteForce.php +++ b/Math/Optimization/Knappsack/BruteForce.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/Knappsack/GA.php b/Math/Optimization/Knappsack/GA.php index 4e98fc7fc..e3191c14f 100644 --- a/Math/Optimization/Knappsack/GA.php +++ b/Math/Optimization/Knappsack/GA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/Knappsack/Item.php b/Math/Optimization/Knappsack/Item.php index cde2a27f5..5c1bb1b0b 100644 --- a/Math/Optimization/Knappsack/Item.php +++ b/Math/Optimization/Knappsack/Item.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/Knappsack/ItemPool.php b/Math/Optimization/Knappsack/ItemPool.php index 4f05681e5..892b95f5c 100644 --- a/Math/Optimization/Knappsack/ItemPool.php +++ b/Math/Optimization/Knappsack/ItemPool.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/Knappsack/Population.php b/Math/Optimization/Knappsack/Population.php index 3a70b8dcc..811c4aae9 100644 --- a/Math/Optimization/Knappsack/Population.php +++ b/Math/Optimization/Knappsack/Population.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/ShiftScheduling/BruteForce.php b/Math/Optimization/ShiftScheduling/BruteForce.php index dff47946c..e21f93fb4 100644 --- a/Math/Optimization/ShiftScheduling/BruteForce.php +++ b/Math/Optimization/ShiftScheduling/BruteForce.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/ShiftScheduling/GA.php b/Math/Optimization/ShiftScheduling/GA.php index 3cfa8860d..f36c4e11e 100644 --- a/Math/Optimization/ShiftScheduling/GA.php +++ b/Math/Optimization/ShiftScheduling/GA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/ShiftScheduling/Population.php b/Math/Optimization/ShiftScheduling/Population.php index 599585bae..de3ee9c37 100644 --- a/Math/Optimization/ShiftScheduling/Population.php +++ b/Math/Optimization/ShiftScheduling/Population.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/ShiftScheduling/Workday.php b/Math/Optimization/ShiftScheduling/Workday.php index 625509da5..efb73f3e4 100644 --- a/Math/Optimization/ShiftScheduling/Workday.php +++ b/Math/Optimization/ShiftScheduling/Workday.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/ShiftScheduling/Worker.php b/Math/Optimization/ShiftScheduling/Worker.php index 4ebff2bbc..40241679a 100644 --- a/Math/Optimization/ShiftScheduling/Worker.php +++ b/Math/Optimization/ShiftScheduling/Worker.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/ShiftScheduling/WorkerPool.php b/Math/Optimization/ShiftScheduling/WorkerPool.php index ba1184d58..fbe35982c 100644 --- a/Math/Optimization/ShiftScheduling/WorkerPool.php +++ b/Math/Optimization/ShiftScheduling/WorkerPool.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Optimization/TSP/BruteForce.php b/Math/Optimization/TSP/BruteForce.php index 340a4c490..a4717b048 100644 --- a/Math/Optimization/TSP/BruteForce.php +++ b/Math/Optimization/TSP/BruteForce.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Optimization\TSP; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -54,7 +52,6 @@ class BruteForce * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(CityPool $pool) { @@ -73,7 +70,6 @@ class BruteForce * @return Population * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSolution(int $limit = 1) : Population { @@ -95,7 +91,6 @@ class BruteForce * @return Population * * @since 1.0.0 - * @author Dennis Eichhorn */ private function bruteForce(array $cities, Tour $tour, Population $population) { diff --git a/Math/Optimization/TSP/City.php b/Math/Optimization/TSP/City.php index 6acd33c7a..7aaa2328b 100644 --- a/Math/Optimization/TSP/City.php +++ b/Math/Optimization/TSP/City.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Shape\D3\Sphere; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -64,7 +62,6 @@ class City * @param string $name City name * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(float $lat, float $long, string $name) { @@ -81,7 +78,6 @@ class City * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function equals(City $city) : bool { @@ -94,7 +90,6 @@ class City * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -107,7 +102,6 @@ class City * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLatitude() : float { @@ -122,7 +116,6 @@ class City * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDistanceTo(City $city) : float { @@ -135,7 +128,6 @@ class City * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLongitude() : float { diff --git a/Math/Optimization/TSP/CityPool.php b/Math/Optimization/TSP/CityPool.php index 4f6b0a460..eecc9db2f 100644 --- a/Math/Optimization/TSP/CityPool.php +++ b/Math/Optimization/TSP/CityPool.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Optimization\TSP; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ class CityPool implements \Countable * @param City[] $cities Cities * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(array $cities = []) { @@ -57,7 +54,6 @@ class CityPool implements \Countable * @param City $city City * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addCity(City $city) { @@ -72,7 +68,6 @@ class CityPool implements \Countable * @return City * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCity(int $index) : City { @@ -85,7 +80,6 @@ class CityPool implements \Countable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCities() : array { @@ -100,7 +94,6 @@ class CityPool implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function hasCity(City $city) : bool { @@ -119,7 +112,6 @@ class CityPool implements \Countable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/Math/Optimization/TSP/GA.php b/Math/Optimization/TSP/GA.php index da09309fc..92ecb900f 100644 --- a/Math/Optimization/TSP/GA.php +++ b/Math/Optimization/TSP/GA.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Optimization\TSP; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -68,7 +66,6 @@ class GA * @param CityPool $pool City pool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(CityPool $pool) { @@ -83,7 +80,6 @@ class GA * @return Population * * @since 1.0.0 - * @author Dennis Eichhorn */ public function evolvePopulation(Population $population) : Population { @@ -117,7 +113,6 @@ class GA * @return Tour * * @since 1.0.0 - * @author Dennis Eichhorn */ private function tournamentSelection(Population $population) : Tour { @@ -140,7 +135,6 @@ class GA * @return Tour * * @since 1.0.0 - * @author Dennis Eichhorn */ public function crossover(Tour $tour1, Tour $tour2) : Tour { @@ -183,7 +177,6 @@ class GA * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function mutate(Tour $tour) { diff --git a/Math/Optimization/TSP/Population.php b/Math/Optimization/TSP/Population.php index e29c448f5..2a9a09322 100644 --- a/Math/Optimization/TSP/Population.php +++ b/Math/Optimization/TSP/Population.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Optimization\TSP; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -46,7 +44,6 @@ class Population implements \Countable * @param bool $initialize Initialize with random tours * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(CityPool $pool, int $size, bool $initialize = false) { @@ -64,7 +61,6 @@ class Population implements \Countable * @param Tour $tour Tour to insert * * @since 1.0.0 - * @author Dennis Eichhorn */ public function insertAt(int $index, Tour $tour) { @@ -78,7 +74,6 @@ class Population implements \Countable * @param Tour $tour Tour to set * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(int $index, Tour $tour) /* : void */ { @@ -92,7 +87,6 @@ class Population implements \Countable * @param Tour $tour Tour to add * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(Tour $tour) { @@ -107,7 +101,6 @@ class Population implements \Countable * @return null|Tour * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(int $index) { @@ -120,7 +113,6 @@ class Population implements \Countable * @return Tour * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFittest() : Tour { @@ -142,7 +134,6 @@ class Population implements \Countable * @return Tour * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getUnfittest() : Tour { @@ -164,7 +155,6 @@ class Population implements \Countable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/Math/Optimization/TSP/Tour.php b/Math/Optimization/TSP/Tour.php index 54c5a3028..67c27f3cc 100644 --- a/Math/Optimization/TSP/Tour.php +++ b/Math/Optimization/TSP/Tour.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Optimization\TSP; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -69,7 +67,6 @@ class Tour implements \Countable * @param bool $initialize Initialize with random tours * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(CityPool $pool, bool $initialize = false) { @@ -89,7 +86,6 @@ class Tour implements \Countable * @return null|City * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCity($index) { @@ -102,7 +98,6 @@ class Tour implements \Countable * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFitness() : float { @@ -119,7 +114,6 @@ class Tour implements \Countable * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDistance() : float { @@ -146,7 +140,6 @@ class Tour implements \Countable * @param City $city City * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addCity(City $city) { @@ -163,7 +156,6 @@ class Tour implements \Countable * @param City $city City * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCity(int $index, City $city) /* : void */ { @@ -182,7 +174,6 @@ class Tour implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function hasCity(City $city) : bool { @@ -201,7 +192,6 @@ class Tour implements \Countable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/Math/Parser/Evaluator.php b/Math/Parser/Evaluator.php index 6430bcd01..a244dddb4 100644 --- a/Math/Parser/Evaluator.php +++ b/Math/Parser/Evaluator.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Parser; * @category Framework * @package phpOMS\Math * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ class Evaluator * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function evaluate(string $formula, array $vars) : float { diff --git a/Math/Shape/D2/Circle.php b/Math/Shape/D2/Circle.php index e70baeb6f..cbb66fb1f 100644 --- a/Math/Shape/D2/Circle.php +++ b/Math/Shape/D2/Circle.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D2; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class Circle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $r) : float { @@ -54,7 +51,6 @@ class Circle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPerimeter(float $r) : float { @@ -69,7 +65,6 @@ class Circle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRadiusBySurface(float $surface) : float { @@ -84,7 +79,6 @@ class Circle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRadiusByPerimeter(float $C) : float { diff --git a/Math/Shape/D2/D2ShapeInterface.php b/Math/Shape/D2/D2ShapeInterface.php index 2bf425c5e..1305de247 100644 --- a/Math/Shape/D2/D2ShapeInterface.php +++ b/Math/Shape/D2/D2ShapeInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Shape\ShapeInterface; * @category Framework * @package phpOMS\Math * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D2/Ellipse.php b/Math/Shape/D2/Ellipse.php index 9eb643390..25f2a379c 100644 --- a/Math/Shape/D2/Ellipse.php +++ b/Math/Shape/D2/Ellipse.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D2; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -45,7 +43,6 @@ class Ellipse implements D2ShapeInterface * @return float Distance between points in meter * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $a, float $b) : float { @@ -66,7 +63,6 @@ class Ellipse implements D2ShapeInterface * @return float Distance between points in meter * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPerimeter(float $a, float $b) : float { diff --git a/Math/Shape/D2/Polygon.php b/Math/Shape/D2/Polygon.php index ad3a77391..5603e3529 100644 --- a/Math/Shape/D2/Polygon.php +++ b/Math/Shape/D2/Polygon.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D2; * @category Framework * @package phpOMS\Math * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -116,7 +114,6 @@ class Polygon implements D2ShapeInterface * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -130,7 +127,6 @@ class Polygon implements D2ShapeInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function pointInPolygon(array $point) : int { @@ -146,7 +142,6 @@ class Polygon implements D2ShapeInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isPointInPolygon(array $point, array $polygon) : int { @@ -203,7 +198,6 @@ class Polygon implements D2ShapeInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function onVertex(array $point) : bool { @@ -219,7 +213,6 @@ class Polygon implements D2ShapeInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function isOnVertex(array $point, array $polygon) : bool { @@ -240,7 +233,6 @@ class Polygon implements D2ShapeInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCoordinates($coord) /* : void */ { @@ -257,7 +249,6 @@ class Polygon implements D2ShapeInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCoordinate($i, $x, $y) /* : void */ { diff --git a/Math/Shape/D2/Quadrilateral.php b/Math/Shape/D2/Quadrilateral.php index 6ca958581..90170ac70 100644 --- a/Math/Shape/D2/Quadrilateral.php +++ b/Math/Shape/D2/Quadrilateral.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Shape/D2/Rectangle.php b/Math/Shape/D2/Rectangle.php index 615b3a899..70ca9e617 100644 --- a/Math/Shape/D2/Rectangle.php +++ b/Math/Shape/D2/Rectangle.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D2; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class Rectangle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $a, float $b) : float { @@ -56,7 +53,6 @@ class Rectangle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPerimeter(float $a, float $b) : float { @@ -72,7 +68,6 @@ class Rectangle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDiagonal(float $a, float $b) : float { diff --git a/Math/Shape/D2/Trapezoid.php b/Math/Shape/D2/Trapezoid.php index d1b62c792..8104baa7f 100644 --- a/Math/Shape/D2/Trapezoid.php +++ b/Math/Shape/D2/Trapezoid.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D2; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -47,7 +45,6 @@ class Trapezoid implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $a, float $b, float $h) : float { @@ -71,7 +68,6 @@ class Trapezoid implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPerimeter(float $a, float $b, float $c, float $d) : float { @@ -94,7 +90,6 @@ class Trapezoid implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getHeight(float $area, float $a, float $b) : float { @@ -117,7 +112,6 @@ class Trapezoid implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getA(float $area, float $h, float $b) : float { @@ -140,7 +134,6 @@ class Trapezoid implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getB(float $area, float $h, float $a) : float { @@ -164,7 +157,6 @@ class Trapezoid implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getC(float $perimeter, float $a, float $b, float $d) : float { @@ -188,7 +180,6 @@ class Trapezoid implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getD(float $perimeter, float $a, float $b, float $c) : float { diff --git a/Math/Shape/D2/Triangle.php b/Math/Shape/D2/Triangle.php index ed6e6a36d..37a5f6e6e 100644 --- a/Math/Shape/D2/Triangle.php +++ b/Math/Shape/D2/Triangle.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D2; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -46,7 +44,6 @@ class Triangle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $b, float $h) : float { @@ -63,7 +60,6 @@ class Triangle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPerimeter(float $a, float $b, float $c) : float { @@ -79,7 +75,6 @@ class Triangle implements D2ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getHeight(float $area, float $b) : float { diff --git a/Math/Shape/D3/Cone.php b/Math/Shape/D3/Cone.php index c0e5ccbc6..985258313 100644 --- a/Math/Shape/D3/Cone.php +++ b/Math/Shape/D3/Cone.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D3; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class Cone implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVolume(float $r, float $h) : float { @@ -56,7 +53,6 @@ class Cone implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $r, float $h) : float { @@ -72,7 +68,6 @@ class Cone implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSlantHeight(float $r, float $h) : float { @@ -88,7 +83,6 @@ class Cone implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getHeightFromVolume(float $V, float $r) : float { diff --git a/Math/Shape/D3/Cuboid.php b/Math/Shape/D3/Cuboid.php index e803dab55..a30f361b4 100644 --- a/Math/Shape/D3/Cuboid.php +++ b/Math/Shape/D3/Cuboid.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D3; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class Cuboid implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVolume(float $a, float $b, float $h) : float { @@ -58,7 +55,6 @@ class Cuboid implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $a, float $b, float $h) : float { diff --git a/Math/Shape/D3/Cylinder.php b/Math/Shape/D3/Cylinder.php index 38a7671f0..8e49bf519 100644 --- a/Math/Shape/D3/Cylinder.php +++ b/Math/Shape/D3/Cylinder.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D3; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class Cylinder implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVolume(float $r, float $h) : float { @@ -56,7 +53,6 @@ class Cylinder implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $r, float $h) : float { @@ -72,7 +68,6 @@ class Cylinder implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getLateralSurface(float $r, float $h) : float { diff --git a/Math/Shape/D3/D3ShapeInterface.php b/Math/Shape/D3/D3ShapeInterface.php index 03922f936..3682c5b9c 100644 --- a/Math/Shape/D3/D3ShapeInterface.php +++ b/Math/Shape/D3/D3ShapeInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Shape\ShapeInterface; * @category Framework * @package phpOMS\Math * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D3/Prism.php b/Math/Shape/D3/Prism.php index 7de5b0b54..fdc397c45 100644 --- a/Math/Shape/D3/Prism.php +++ b/Math/Shape/D3/Prism.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Shape/D3/RectangularPyramid.php b/Math/Shape/D3/RectangularPyramid.php index c26d02691..b06dc15df 100644 --- a/Math/Shape/D3/RectangularPyramid.php +++ b/Math/Shape/D3/RectangularPyramid.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D3; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class RectangularPyramid implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVolume(float $a, float $b, float $h) : float { @@ -58,7 +55,6 @@ class RectangularPyramid implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $a, float $b, float $h) : float { @@ -75,7 +71,6 @@ class RectangularPyramid implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getLateralSurface(float $a, float $b, float $h) : float { diff --git a/Math/Shape/D3/Sphere.php b/Math/Shape/D3/Sphere.php index 285a2e714..1bac4b66a 100644 --- a/Math/Shape/D3/Sphere.php +++ b/Math/Shape/D3/Sphere.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D3; * @category Framework * @package phpOMS\Math\Shape * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ class Sphere implements D3ShapeInterface * @param float $radius Sphere radius * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(float $radius) { @@ -63,7 +60,6 @@ class Sphere implements D3ShapeInterface * @return float Distance between points in meter * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function distance2PointsOnSphere(float $latStart, float $longStart, float $latEnd, float $longEnd, float $radius = 6371000.0) : float { @@ -93,7 +89,6 @@ class Sphere implements D3ShapeInterface * @return Sphere * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function byRadius(float $r) : Sphere { @@ -108,7 +103,6 @@ class Sphere implements D3ShapeInterface * @return Sphere * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function byVolume(float $v) : Sphere { @@ -123,7 +117,6 @@ class Sphere implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRadiusByVolume(float $v) : float { @@ -138,7 +131,6 @@ class Sphere implements D3ShapeInterface * @return Sphere * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function bySurface(float $s) : Sphere { @@ -153,7 +145,6 @@ class Sphere implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRadiusBySurface(float $S) : float { @@ -166,7 +157,6 @@ class Sphere implements D3ShapeInterface * @return float Sphere volume * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getVolume() : float { @@ -181,7 +171,6 @@ class Sphere implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVolumeByRadius(float $r) : float { @@ -194,7 +183,6 @@ class Sphere implements D3ShapeInterface * @return float Sphere radius * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRadius() : float { @@ -207,7 +195,6 @@ class Sphere implements D3ShapeInterface * @return float Sphere surface * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSurface() : float { @@ -222,7 +209,6 @@ class Sphere implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurfaceByRadius(float $r) : float { diff --git a/Math/Shape/D3/Tetrahedron.php b/Math/Shape/D3/Tetrahedron.php index 54b2708db..534240ac0 100644 --- a/Math/Shape/D3/Tetrahedron.php +++ b/Math/Shape/D3/Tetrahedron.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape\D3; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class Tetrahedron implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVolume(float $a) : float { @@ -54,7 +51,6 @@ class Tetrahedron implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSurface(float $a) : float { @@ -69,7 +65,6 @@ class Tetrahedron implements D3ShapeInterface * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFaceArea(float $a) : float { diff --git a/Math/Shape/ShapeInterface.php b/Math/Shape/ShapeInterface.php index 258a84425..951271583 100644 --- a/Math/Shape/ShapeInterface.php +++ b/Math/Shape/ShapeInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Shape; * @category Framework * @package phpOMS\Math * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Average.php b/Math/Statistic/Average.php index 6f6d3c7e3..b24bce3d9 100644 --- a/Math/Statistic/Average.php +++ b/Math/Statistic/Average.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic; * @category Framework * @package phpOMS\Math\Statistic * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -52,7 +50,6 @@ class Average * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function averageChange(array $x, int $h = 1) : float { @@ -74,7 +71,6 @@ class Average * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function totalMovingAverage(array $x, int $order, array $weight = null, bool $symmetric = false) : array { @@ -103,7 +99,6 @@ class Average * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function movingAverage(array $x, int $t, int $order, array $weight = null, bool $symmetric = false) : float { @@ -138,7 +133,6 @@ class Average * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function weightedAverage(array $values, array $weight) : float { @@ -167,7 +161,6 @@ class Average * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function arithmeticMean(array $values) : float { @@ -190,7 +183,6 @@ class Average * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mode($values) { @@ -210,7 +202,6 @@ class Average * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function median(array $values) : float { @@ -242,7 +233,6 @@ class Average * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function geometricMean(array $values, int $offset = 0) : float { @@ -268,7 +258,6 @@ class Average * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function harmonicMean(array $values, int $offset = 0) : float { @@ -303,7 +292,6 @@ class Average * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function angleMean($angles, int $offset = 0) : float { @@ -333,7 +321,6 @@ class Average * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function timeToAngle(string $time) : float { @@ -359,7 +346,6 @@ class Average * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function angleToTime(float $angle) : string { @@ -380,7 +366,6 @@ class Average * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function angleMean2(array $angles, int $offset = 0) : float { diff --git a/Math/Statistic/Basic.php b/Math/Statistic/Basic.php index 38c6595fa..4c3ce2464 100644 --- a/Math/Statistic/Basic.php +++ b/Math/Statistic/Basic.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class Basic * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function freaquency(array $values) : array { diff --git a/Math/Statistic/Correlation.php b/Math/Statistic/Correlation.php index 70b64ec5a..1a997045b 100644 --- a/Math/Statistic/Correlation.php +++ b/Math/Statistic/Correlation.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ class Correlation * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function bravaisPersonCorrelationCoefficient(array $x, array $y) : float { @@ -58,7 +55,6 @@ class Correlation * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function autocorrelationCoefficient(array $x, int $k = 0) : float { @@ -83,7 +79,6 @@ class Correlation * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function boxPierceTest(array $autocorrelations, int $h) : float { @@ -104,7 +99,6 @@ class Correlation * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function ljungBoxTest(array $autocorrelations, int $h) : float { diff --git a/Math/Statistic/Forecast/Error.php b/Math/Statistic/Forecast/Error.php index da7f0f745..75d5c11ff 100644 --- a/Math/Statistic/Forecast/Error.php +++ b/Math/Statistic/Forecast/Error.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Math\Statistic\MeasureOfDispersion; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getForecastError(float $observed, float $forecasted) : float { @@ -59,7 +56,6 @@ class Error * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getForecastErrorArray(array $observed, array $forecasted) : array { @@ -81,7 +77,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPercentageError(float $error, float $observed) : float { @@ -97,7 +92,6 @@ class Error * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPercentageErrorArray(array $errors, array $observed) : array { @@ -118,7 +112,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMeanAbsoulteError(array $errors) : float { @@ -133,7 +126,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMeanSquaredError(array $errors) : float { @@ -148,7 +140,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRootMeanSquaredError(array $errors) : float { @@ -168,7 +159,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCoefficientOfDetermination(array $observed, array $forecasted) : float { @@ -197,7 +187,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSumSquaredError(array $errors) : float { @@ -220,7 +209,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRBarSquared(float $R, int $observations, int $predictors) : float { @@ -237,7 +225,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAkaikeInformationCriterion(float $sse, int $observations, int $predictors) : float { @@ -256,7 +243,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCorrectedAkaikeInformationCriterion(float $aic, int $observations, int $predictors) : float { @@ -273,7 +259,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSchwarzBayesianInformationCriterion(float $sse, int $observations, int $predictors) : float { @@ -289,7 +274,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMeanAbsolutePercentageError(array $observed, array $forecasted) : float { @@ -305,7 +289,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSymmetricMeanAbsolutePercentageError(array $observed, array $forecasted) : float { @@ -326,7 +309,6 @@ class Error * @return array * * @since 1.0.0 - * @author Dennis Eichhorn * todo: move to utils?! implement sqrt for array as well... could be usefull for others (e.g. matrix) */ private static function square(array $values) : array @@ -349,7 +331,6 @@ class Error * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCrossSectionalScaledErrorArray(array $errors, array $observed) : array { @@ -372,7 +353,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCrossSectionalScaledError(float $error, array $observed) : float { @@ -394,7 +374,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMeanAbsoluteScaledError(array $scaledErrors) : float { @@ -409,7 +388,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMeanSquaredScaledError(array $scaledErrors) : float { @@ -426,7 +404,6 @@ class Error * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getScaledErrorArray(array $errors, array $observed, int $m = 1) : array { @@ -450,7 +427,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getScaledError(float $error, array $observed, int $m = 1) : float { @@ -466,7 +442,6 @@ class Error * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function getNaiveForecast(array $observed, int $m = 1) : float { diff --git a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php index 972ca84f9..63c2f7e10 100644 --- a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php +++ b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Forecast/Forecasts.php b/Math/Statistic/Forecast/Forecasts.php index 7e7de433a..f38e845c3 100644 --- a/Math/Statistic/Forecast/Forecasts.php +++ b/Math/Statistic/Forecast/Forecasts.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic\Forecast; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class Forecasts * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getForecastInteval(float $forecast, float $standardDeviation, float $interval = ForecastIntervalMultiplier::P_95) : array { diff --git a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php index cd6c05d72..001289df4 100644 --- a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic\Forecast\Regression; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Forecast/Regression/LevelLogRegression.php b/Math/Statistic/Forecast/Regression/LevelLogRegression.php index e4d91c722..63a219150 100644 --- a/Math/Statistic/Forecast/Regression/LevelLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLogRegression.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic\Forecast\Regression; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Forecast/Regression/LogLevelRegression.php b/Math/Statistic/Forecast/Regression/LogLevelRegression.php index c2a3dab49..bc0102c33 100644 --- a/Math/Statistic/Forecast/Regression/LogLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLevelRegression.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic\Forecast\Regression; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Forecast/Regression/LogLogRegression.php b/Math/Statistic/Forecast/Regression/LogLogRegression.php index d1bd4a25d..2350cc3a4 100644 --- a/Math/Statistic/Forecast/Regression/LogLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLogRegression.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic\Forecast\Regression; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php index ca36a93fa..54715a21a 100644 --- a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php +++ b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Statistic/Forecast/Regression/RegressionAbstract.php b/Math/Statistic/Forecast/Regression/RegressionAbstract.php index cdce46a0c..ca674f01e 100644 --- a/Math/Statistic/Forecast/Regression/RegressionAbstract.php +++ b/Math/Statistic/Forecast/Regression/RegressionAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -35,7 +34,6 @@ abstract class RegressionAbstract * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRegression(array $x, array $y) : array { @@ -60,7 +58,6 @@ abstract class RegressionAbstract * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getStandardErrorOfRegression(array $errors) : float { @@ -86,7 +83,6 @@ abstract class RegressionAbstract * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPredictionInterval(float $forecasted, array $x, array $errors, float $multiplier = ForecastIntervalMultiplier::P_95) : array { @@ -114,7 +110,6 @@ abstract class RegressionAbstract * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function getBeta1(array $x, array $y) : float { @@ -145,7 +140,6 @@ abstract class RegressionAbstract * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function getBeta0(array $x, array $y, float $b1) : float { diff --git a/Math/Statistic/MeasureOfDispersion.php b/Math/Statistic/MeasureOfDispersion.php index 2cf345624..6c66d9622 100644 --- a/Math/Statistic/MeasureOfDispersion.php +++ b/Math/Statistic/MeasureOfDispersion.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Statistic; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class MeasureOfDispersion * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function range(array $values) : float { @@ -64,7 +61,6 @@ class MeasureOfDispersion * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function empiricalVariationcoefficient(array $values) : float { @@ -87,7 +83,6 @@ class MeasureOfDispersion * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function standardDeviation(array $values) : float { @@ -106,7 +101,6 @@ class MeasureOfDispersion * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function sampleVariance(array $values) : float { @@ -131,7 +125,6 @@ class MeasureOfDispersion * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function empiricalVariance(array $values) : float { @@ -164,7 +157,6 @@ class MeasureOfDispersion * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function empiricalCovariance(array $x, array $y) : float { @@ -198,7 +190,6 @@ class MeasureOfDispersion * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getIQR(array $x) : float { @@ -212,7 +203,6 @@ class MeasureOfDispersion * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function meanDeviation(array $x) : float { @@ -234,7 +224,6 @@ class MeasureOfDispersion * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function squaredMeanDeviation(array $x) : float { diff --git a/Math/Stochastic/Distribution/BernoulliDistribution.php b/Math/Stochastic/Distribution/BernoulliDistribution.php index 21d13cb4b..134fb887a 100644 --- a/Math/Stochastic/Distribution/BernoulliDistribution.php +++ b/Math/Stochastic/Distribution/BernoulliDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class BernoulliDistribution * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPmf(float $p, int $k) : float { @@ -62,7 +59,6 @@ class BernoulliDistribution * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode(float $p) : int { @@ -83,7 +79,6 @@ class BernoulliDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(float $p) : float { @@ -98,7 +93,6 @@ class BernoulliDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $p) : float { @@ -119,7 +113,6 @@ class BernoulliDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(float $p) : float { @@ -135,7 +128,6 @@ class BernoulliDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(float $p, float $t) : float { @@ -150,7 +142,6 @@ class BernoulliDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness(float $p) : float { @@ -165,7 +156,6 @@ class BernoulliDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFisherInformation(float $p) : float { @@ -180,7 +170,6 @@ class BernoulliDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis(float $p) : float { diff --git a/Math/Stochastic/Distribution/BetaDistribution.php b/Math/Stochastic/Distribution/BetaDistribution.php index d8379a1f3..2518d7f85 100644 --- a/Math/Stochastic/Distribution/BetaDistribution.php +++ b/Math/Stochastic/Distribution/BetaDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/BinomialDistribution.php b/Math/Stochastic/Distribution/BinomialDistribution.php index 28b853529..8ed40e392 100644 --- a/Math/Stochastic/Distribution/BinomialDistribution.php +++ b/Math/Stochastic/Distribution/BinomialDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Functions\Functions; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ class BinomialDistribution * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode(int $n, float $p) : float { @@ -69,7 +66,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(int $n, float $t, float $p) : float { @@ -85,7 +81,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness(int $n, float $p) : float { @@ -101,7 +96,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFisherInformation(int $n, float $p) : float { @@ -117,7 +111,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis(int $n, float $p) : float { @@ -134,7 +127,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCdf(int $n, int $x, float $p) : float { @@ -159,7 +151,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPmf(int $n, int $k, float $p) : float { @@ -175,7 +166,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(int $n, float $p) : float { @@ -191,7 +181,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(int $n, float $p) : float { @@ -207,7 +196,6 @@ class BinomialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(int $n, float $p) : float { diff --git a/Math/Stochastic/Distribution/CauchyDistribution.php b/Math/Stochastic/Distribution/CauchyDistribution.php index 7fff30f20..4fe8acdd3 100644 --- a/Math/Stochastic/Distribution/CauchyDistribution.php +++ b/Math/Stochastic/Distribution/CauchyDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class CauchyDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPdf(float $x, float $x0, float $gamma) : float { @@ -57,7 +54,6 @@ class CauchyDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCdf(float $x, float $x0, float $gamma) : float { @@ -72,7 +68,6 @@ class CauchyDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode($x0) : float { @@ -87,7 +82,6 @@ class CauchyDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $x0) : float { diff --git a/Math/Stochastic/Distribution/ChiSquaredDistribution.php b/Math/Stochastic/Distribution/ChiSquaredDistribution.php index a6a821eb1..0397f44d3 100644 --- a/Math/Stochastic/Distribution/ChiSquaredDistribution.php +++ b/Math/Stochastic/Distribution/ChiSquaredDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Functions\Functions; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -92,7 +90,6 @@ class ChiSquaredDistribution * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function testHypothesis(array $dataset, array $expected, float $significance = 0.05, int $df = 0) : array { @@ -136,7 +133,6 @@ class ChiSquaredDistribution * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDegreesOfFreedom(array $values) : int { @@ -158,7 +154,6 @@ class ChiSquaredDistribution * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPdf(float $x, int $df) : float { @@ -177,7 +172,6 @@ class ChiSquaredDistribution * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode(int $df) : int { @@ -192,7 +186,6 @@ class ChiSquaredDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(int $df) : float { @@ -207,7 +200,6 @@ class ChiSquaredDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(int $df) : float { @@ -222,7 +214,6 @@ class ChiSquaredDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(int $df) : float { @@ -240,7 +231,6 @@ class ChiSquaredDistribution * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(int $df, float $t) : float { @@ -259,7 +249,6 @@ class ChiSquaredDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness(int $df) : float { @@ -274,7 +263,6 @@ class ChiSquaredDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis(int $df) : float { diff --git a/Math/Stochastic/Distribution/ExponentialDistribution.php b/Math/Stochastic/Distribution/ExponentialDistribution.php index 8938f86be..04e4e00f3 100644 --- a/Math/Stochastic/Distribution/ExponentialDistribution.php +++ b/Math/Stochastic/Distribution/ExponentialDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class ExponentialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPdf(float $x, float $lambda) : float { @@ -55,7 +52,6 @@ class ExponentialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCdf(float $x, float $lambda) : float { @@ -68,7 +64,6 @@ class ExponentialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode() : float { @@ -83,7 +78,6 @@ class ExponentialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(float $lambda) : float { @@ -98,7 +92,6 @@ class ExponentialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $lambda) : float { @@ -113,7 +106,6 @@ class ExponentialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(float $lambda) : float { @@ -131,7 +123,6 @@ class ExponentialDistribution * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(float $t, float $lambda) : float { @@ -148,7 +139,6 @@ class ExponentialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness() : float { @@ -161,7 +151,6 @@ class ExponentialDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis() : float { diff --git a/Math/Stochastic/Distribution/FDistribution.php b/Math/Stochastic/Distribution/FDistribution.php index 668999d95..a15aa1a4e 100644 --- a/Math/Stochastic/Distribution/FDistribution.php +++ b/Math/Stochastic/Distribution/FDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/GammaDistribution.php b/Math/Stochastic/Distribution/GammaDistribution.php index bdda04f03..2a16dcbeb 100644 --- a/Math/Stochastic/Distribution/GammaDistribution.php +++ b/Math/Stochastic/Distribution/GammaDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/GeometricDistribution.php b/Math/Stochastic/Distribution/GeometricDistribution.php index f30d2701f..1f97d3599 100644 --- a/Math/Stochastic/Distribution/GeometricDistribution.php +++ b/Math/Stochastic/Distribution/GeometricDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class GeometricDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPmf(float $p, int $k) : float { @@ -55,7 +52,6 @@ class GeometricDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCdf(float $p, int $k) : float { @@ -68,7 +64,6 @@ class GeometricDistribution * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode() : int { @@ -83,7 +78,6 @@ class GeometricDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(float $p) : float { @@ -98,7 +92,6 @@ class GeometricDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $p) : float { @@ -113,7 +106,6 @@ class GeometricDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(float $p) : float { @@ -129,7 +121,6 @@ class GeometricDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(float $p, float $t) : float { @@ -144,7 +135,6 @@ class GeometricDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness(float $lambda) : float { @@ -159,7 +149,6 @@ class GeometricDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis(float $lambda) : float { diff --git a/Math/Stochastic/Distribution/HypergeometricDistribution.php b/Math/Stochastic/Distribution/HypergeometricDistribution.php index 9fbbf3980..74e313803 100644 --- a/Math/Stochastic/Distribution/HypergeometricDistribution.php +++ b/Math/Stochastic/Distribution/HypergeometricDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/LaplaceDistribution.php b/Math/Stochastic/Distribution/LaplaceDistribution.php index 13e5eb97b..0f00ac030 100644 --- a/Math/Stochastic/Distribution/LaplaceDistribution.php +++ b/Math/Stochastic/Distribution/LaplaceDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class LaplaceDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPdf(float $x, float $mu, float $b) : float { @@ -57,7 +54,6 @@ class LaplaceDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCdf(float $x, float $mu, float $b) : float { @@ -72,7 +68,6 @@ class LaplaceDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode(float $mu) : float { @@ -87,7 +82,6 @@ class LaplaceDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(float $mu) : float { @@ -102,7 +96,6 @@ class LaplaceDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $mu) : float { @@ -117,7 +110,6 @@ class LaplaceDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(float $b) : float { @@ -136,7 +128,6 @@ class LaplaceDistribution * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(float $t, float $mu, float $b) : float { @@ -153,7 +144,6 @@ class LaplaceDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness() : float { @@ -166,7 +156,6 @@ class LaplaceDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis() : float { diff --git a/Math/Stochastic/Distribution/LogDistribution.php b/Math/Stochastic/Distribution/LogDistribution.php index ac8167531..c3455e345 100644 --- a/Math/Stochastic/Distribution/LogDistribution.php +++ b/Math/Stochastic/Distribution/LogDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/LogNormalDistribution.php b/Math/Stochastic/Distribution/LogNormalDistribution.php index da3182a88..0bb977175 100644 --- a/Math/Stochastic/Distribution/LogNormalDistribution.php +++ b/Math/Stochastic/Distribution/LogNormalDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/LogisticDistribution.php b/Math/Stochastic/Distribution/LogisticDistribution.php index ae0c8a3ec..54b8d856a 100644 --- a/Math/Stochastic/Distribution/LogisticDistribution.php +++ b/Math/Stochastic/Distribution/LogisticDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/NormalDistribution.php b/Math/Stochastic/Distribution/NormalDistribution.php index ce3906fbc..747070373 100644 --- a/Math/Stochastic/Distribution/NormalDistribution.php +++ b/Math/Stochastic/Distribution/NormalDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPdf(float $x, float $mu, float $sig) : float { @@ -56,7 +53,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode(float $mu) : float { @@ -71,7 +67,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(float $mu) : float { @@ -86,7 +81,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $mu) : float { @@ -101,7 +95,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(float $sig) : float { @@ -118,7 +111,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(float $t, float $mu, float $sig) : float { @@ -131,7 +123,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness() : float { @@ -146,7 +137,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFisherInformation(float $sig) : float { @@ -159,7 +149,6 @@ class NormalDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis() : float { diff --git a/Math/Stochastic/Distribution/ParetoDistribution.php b/Math/Stochastic/Distribution/ParetoDistribution.php index 7adebdcf8..c646e4dad 100644 --- a/Math/Stochastic/Distribution/ParetoDistribution.php +++ b/Math/Stochastic/Distribution/ParetoDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/PoissonDistribution.php b/Math/Stochastic/Distribution/PoissonDistribution.php index f78fe2ef0..0a8d6c855 100644 --- a/Math/Stochastic/Distribution/PoissonDistribution.php +++ b/Math/Stochastic/Distribution/PoissonDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Functions\Functions; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPmf(int $k, float $lambda) : float { @@ -59,7 +56,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCdf(int $k, float $lambda) : float { @@ -80,7 +76,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode(float $lambda) : float { @@ -95,7 +90,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(float $lambda) : float { @@ -110,7 +104,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $lambda) : float { @@ -125,7 +118,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(float $lambda) : float { @@ -141,7 +133,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(float $lambda, float $t) : float { @@ -156,7 +147,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness(float $lambda) : float { @@ -171,7 +161,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFisherInformation(float $lambda) : float { @@ -186,7 +175,6 @@ class PoissonDistribution * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis(float $lambda) : float { diff --git a/Math/Stochastic/Distribution/TDistribution.php b/Math/Stochastic/Distribution/TDistribution.php index 7ea719aa4..b576f7e8d 100644 --- a/Math/Stochastic/Distribution/TDistribution.php +++ b/Math/Stochastic/Distribution/TDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Distribution/UniformDistributionContinuous.php b/Math/Stochastic/Distribution/UniformDistributionContinuous.php index d90fa9647..29536b71f 100644 --- a/Math/Stochastic/Distribution/UniformDistributionContinuous.php +++ b/Math/Stochastic/Distribution/UniformDistributionContinuous.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMode(float $a, float $b) : float { @@ -57,7 +54,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPdf(float $x, float $a, float $b) : float { @@ -74,7 +70,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCdf(float $x, float $a, float $b) : float { @@ -97,7 +92,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(int $t, float $a, float $b) : float { @@ -110,7 +104,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness() : float { @@ -123,7 +116,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis() : float { @@ -139,7 +131,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $a, float $b) : float { @@ -155,7 +146,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(float $a, float $b) : float { @@ -171,7 +161,6 @@ class UniformDistributionContinuous * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(float $a, float $b) : float { diff --git a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php index bc67b5545..1196d6885 100644 --- a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php +++ b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class UniformDistributionDiscrete * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPmf(float $a, float $b) : float { @@ -59,7 +56,6 @@ class UniformDistributionDiscrete * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCdf(float $k, float $a, float $b) : float { @@ -80,7 +76,6 @@ class UniformDistributionDiscrete * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMgf(int $t, float $a, float $b) : float { @@ -93,7 +88,6 @@ class UniformDistributionDiscrete * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSkewness() : float { @@ -109,7 +103,6 @@ class UniformDistributionDiscrete * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExKurtosis(float $a, float $b) : float { @@ -127,7 +120,6 @@ class UniformDistributionDiscrete * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMedian(float $a, float $b) : float { @@ -143,7 +135,6 @@ class UniformDistributionDiscrete * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMean(float $a, float $b) : float { @@ -159,7 +150,6 @@ class UniformDistributionDiscrete * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getVariance(float $a, float $b) : float { diff --git a/Math/Stochastic/Distribution/WeibullDistribution.php b/Math/Stochastic/Distribution/WeibullDistribution.php index 8c0b93c3f..52554d484 100644 --- a/Math/Stochastic/Distribution/WeibullDistribution.php +++ b/Math/Stochastic/Distribution/WeibullDistribution.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/NaiveBayesFilter.php b/Math/Stochastic/NaiveBayesFilter.php index ebb0d319d..cd3802e89 100644 --- a/Math/Stochastic/NaiveBayesFilter.php +++ b/Math/Stochastic/NaiveBayesFilter.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index db63b7697..326ed4891 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Message; * @category Framework * @package phpOMS\Response * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -46,7 +44,6 @@ abstract class HeaderAbstract * @param bool $overwrite Overwrite if key already exists * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function set(string $key, string $value, bool $overwrite = false); @@ -56,7 +53,6 @@ abstract class HeaderAbstract * @param string $statusCode Status code * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function generate(string $statusCode) /* : void */; @@ -68,7 +64,6 @@ abstract class HeaderAbstract * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function get(string $key) : array; @@ -80,7 +75,6 @@ abstract class HeaderAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function has(string $key) : bool; @@ -88,7 +82,6 @@ abstract class HeaderAbstract * Set header locked. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function lock() /* : void */ { @@ -102,7 +95,6 @@ abstract class HeaderAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isLocked() : bool { diff --git a/Message/Http/BrowserType.php b/Message/Http/BrowserType.php index 3180361e1..e0ee2a1c7 100644 --- a/Message/Http/BrowserType.php +++ b/Message/Http/BrowserType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Request * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Http/Header.php b/Message/Http/Header.php index 4cbbf972a..b6b35a901 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Message\HeaderAbstract; * @category Framework * @package phpOMS\Response * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -45,7 +43,6 @@ class Header extends HeaderAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -92,7 +89,6 @@ class Header extends HeaderAbstract * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function isSecurityHeader(string $key) : bool { @@ -108,7 +104,6 @@ class Header extends HeaderAbstract * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getStatusCode() : int { @@ -121,7 +116,6 @@ class Header extends HeaderAbstract * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getHeaders() : array { @@ -146,7 +140,6 @@ class Header extends HeaderAbstract * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(int $key) : bool { @@ -183,7 +176,6 @@ class Header extends HeaderAbstract * Push all headers. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function push() /* : void */ { @@ -234,7 +226,6 @@ class Header extends HeaderAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generate403() /* : void */ { @@ -249,7 +240,6 @@ class Header extends HeaderAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generate404() /* : void */ { @@ -264,7 +254,6 @@ class Header extends HeaderAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generate406() /* : void */ { @@ -279,7 +268,6 @@ class Header extends HeaderAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generate407() /* : void */ { @@ -292,7 +280,6 @@ class Header extends HeaderAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generate500() /* : void */ { @@ -308,7 +295,6 @@ class Header extends HeaderAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generate503() /* : void */ { diff --git a/Message/Http/OSType.php b/Message/Http/OSType.php index 40746d53d..cc2d211c6 100644 --- a/Message/Http/OSType.php +++ b/Message/Http/OSType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Request * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Http/Request.php b/Message/Http/Request.php index 52d3d82a9..e7f8f61a0 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -31,7 +30,6 @@ use phpOMS\Uri\UriInterface; * @category Framework * @package phpOMS\Request * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -75,7 +73,6 @@ class Request extends RequestAbstract * @param UriInterface $uri Uri * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(Localization $l11n = null, UriInterface $uri = null) { @@ -97,7 +94,6 @@ class Request extends RequestAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function init() /* : void */ { @@ -121,7 +117,6 @@ class Request extends RequestAbstract * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function initCurrentRequest() /* : void */ { @@ -152,7 +147,6 @@ class Request extends RequestAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function loadRequestLanguage() : string { @@ -172,7 +166,6 @@ class Request extends RequestAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function cleanupGlobals() /* : void */ { @@ -188,7 +181,6 @@ class Request extends RequestAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function setupUriBuilder() /* : void */ { @@ -220,7 +212,6 @@ class Request extends RequestAbstract * @todo: maybe change to normal path string e.g. /some/path/here instead of hash! Remember to adjust navigation elements * * @since 1.0.0 - * @author Dennis Eichhorn */ public function createRequestHashs(int $start = 0) /* : void */ { @@ -241,7 +232,6 @@ class Request extends RequestAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isMobile() : bool { @@ -274,7 +264,6 @@ class Request extends RequestAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBrowser() : string { @@ -300,7 +289,6 @@ class Request extends RequestAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setBrowser(string $browser) /* : void */ { @@ -313,7 +301,6 @@ class Request extends RequestAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getOS() : string { @@ -339,7 +326,6 @@ class Request extends RequestAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setOS(string $os) /* : void */ { @@ -362,7 +348,6 @@ class Request extends RequestAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isHttps(int $port = 443) : bool { @@ -383,7 +368,6 @@ class Request extends RequestAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __toString() { @@ -423,7 +407,6 @@ class Request extends RequestAbstract * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFiles() : array { @@ -438,7 +421,6 @@ class Request extends RequestAbstract * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRouteVerb() : int { @@ -462,7 +444,6 @@ class Request extends RequestAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMethod() : string { diff --git a/Message/Http/RequestMethod.php b/Message/Http/RequestMethod.php index a4dc52bf5..38b434e4a 100644 --- a/Message/Http/RequestMethod.php +++ b/Message/Http/RequestMethod.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Request * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Http/RequestStatus.php b/Message/Http/RequestStatus.php index e440da632..4a7f1e52b 100644 --- a/Message/Http/RequestStatus.php +++ b/Message/Http/RequestStatus.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Request * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Http/Response.php b/Message/Http/Response.php index a2726cef6..9ccd27fe1 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\Views\View; * @category Framework * @package phpOMS\Response * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ class Response extends ResponseAbstract implements RenderableInterface * @param Localization $l11n Localization * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(Localization $l11n) { @@ -58,7 +55,6 @@ class Response extends ResponseAbstract implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setResponse(array $response) /* : void */ { @@ -75,7 +71,6 @@ class Response extends ResponseAbstract implements RenderableInterface * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(int $id) : bool { @@ -112,7 +107,6 @@ class Response extends ResponseAbstract implements RenderableInterface * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function render() : string { @@ -135,7 +129,6 @@ class Response extends ResponseAbstract implements RenderableInterface * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function getRaw() : string { diff --git a/Message/Http/Rest.php b/Message/Http/Rest.php index 4ed7e3d9c..e625ec079 100644 --- a/Message/Http/Rest.php +++ b/Message/Http/Rest.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Message\Http; * @category Framework * @package phpOMS\Request * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Mail/Imap.php b/Message/Mail/Imap.php index 072d91f13..9a12a89ab 100644 --- a/Message/Mail/Imap.php +++ b/Message/Mail/Imap.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Message\Mail; * @category Framework * @package phpOMS\Message\Mail * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -58,7 +56,6 @@ class Imap extends Mail * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -82,7 +79,6 @@ class Imap extends Mail * Destructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __destruct() { @@ -101,7 +97,6 @@ class Imap extends Mail * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function connect($host, $user, $password) { @@ -120,7 +115,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBoxes(string $pattern = '*') : array { @@ -133,7 +127,6 @@ class Imap extends Mail * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getQuota() { @@ -148,7 +141,6 @@ class Imap extends Mail * @return Mail * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEmail($id) : Mail { @@ -166,7 +158,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxAll() : array { @@ -181,7 +172,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxOverview(string $option = 'ALL') : array { @@ -196,7 +186,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxNew() : array { @@ -211,7 +200,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxFrom(string $from) : array { @@ -226,7 +214,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxTo(string $to) : array { @@ -241,7 +228,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxCc(string $cc) : array { @@ -256,7 +242,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxBcc(string $bcc) : array { @@ -269,7 +254,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxAnswered() : array { @@ -284,7 +268,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxSubject(string $subject) : array { @@ -299,7 +282,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxSince(\DateTime $since) : array { @@ -312,7 +294,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxUnseen() : array { @@ -325,7 +306,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxSeen() : array { @@ -338,7 +318,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxDeleted() : array { @@ -353,7 +332,6 @@ class Imap extends Mail * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInboxText(string $text) : array { diff --git a/Message/Mail/Mail.php b/Message/Mail/Mail.php index 468a737a1..a4bd6f605 100644 --- a/Message/Mail/Mail.php +++ b/Message/Mail/Mail.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Message\Mail; * @category Framework * @package phpOMS\Message\Mail * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -193,7 +191,6 @@ class Mail * @param mixed $id Id * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($id) { @@ -208,7 +205,6 @@ class Mail * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setBody(string $body) /* : void */ { @@ -223,7 +219,6 @@ class Mail * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setOverview(string $overview) /* : void */ { @@ -238,7 +233,6 @@ class Mail * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setEncoding(int $encoding) /* : void */ { diff --git a/Message/Mail/MailType.php b/Message/Mail/MailType.php index 842d49c1d..1d4259222 100644 --- a/Message/Mail/MailType.php +++ b/Message/Mail/MailType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Message\Mail * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Mail/OAuth.php b/Message/Mail/OAuth.php index 12c0ee75a..d3d74c6fb 100644 --- a/Message/Mail/OAuth.php +++ b/Message/Mail/OAuth.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Mail/Pop3.php b/Message/Mail/Pop3.php index 187512318..3eb780769 100644 --- a/Message/Mail/Pop3.php +++ b/Message/Mail/Pop3.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Mail/Smtp.php b/Message/Mail/Smtp.php index 15b154eae..398b171c3 100644 --- a/Message/Mail/Smtp.php +++ b/Message/Mail/Smtp.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/MessageInterface.php b/Message/MessageInterface.php index 55cb82c68..bfee1cb26 100644 --- a/Message/MessageInterface.php +++ b/Message/MessageInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Message; * @category Framework * @package phpOMS\Response * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -35,7 +33,6 @@ interface MessageInterface * Retrieves the HTTP protocol version as a string. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getProtocolVersion(); @@ -45,7 +42,6 @@ interface MessageInterface * @return HeaderAbstract * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getHeader() : HeaderAbstract; @@ -55,7 +51,6 @@ interface MessageInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBody() : string; @@ -65,7 +60,6 @@ interface MessageInterface * @return int Account id * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAccount() : int; @@ -77,7 +71,6 @@ interface MessageInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAccount(int $account) /* : void */; } diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 1b2108276..439022722 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\Uri\UriInterface; * @category Request * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -144,7 +142,6 @@ abstract class RequestAbstract implements MessageInterface * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -156,7 +153,6 @@ abstract class RequestAbstract implements MessageInterface * @return UriInterface * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getUri() : UriInterface { @@ -169,7 +165,6 @@ abstract class RequestAbstract implements MessageInterface * @param UriInterface $uri * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setUri(UriInterface $uri) /* : void */ { @@ -182,7 +177,6 @@ abstract class RequestAbstract implements MessageInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function getLanguage() : string; @@ -192,7 +186,6 @@ abstract class RequestAbstract implements MessageInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getHash() : array { @@ -225,7 +218,6 @@ abstract class RequestAbstract implements MessageInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function getMethod() : string; @@ -235,7 +227,6 @@ abstract class RequestAbstract implements MessageInterface * @param string $method * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setMethod(string $method) /* : void */ { @@ -278,7 +269,6 @@ abstract class RequestAbstract implements MessageInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setData($key, $value, bool $overwrite = true) : bool { @@ -308,7 +298,6 @@ abstract class RequestAbstract implements MessageInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function lock() /* : void */ { @@ -337,7 +326,6 @@ abstract class RequestAbstract implements MessageInterface * @return HeaderAbstract * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getHeader() : HeaderAbstract { @@ -363,7 +351,6 @@ abstract class RequestAbstract implements MessageInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function getRequestTarget() : string; @@ -373,7 +360,6 @@ abstract class RequestAbstract implements MessageInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function getRouteVerb() : int; } diff --git a/Message/RequestSource.php b/Message/RequestSource.php index e0afe2681..8de611ce2 100644 --- a/Message/RequestSource.php +++ b/Message/RequestSource.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Request * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index e69639d91..70d8bcc32 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Utils\ArrayUtils; * @category Framework * @package phpOMS\Response * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -90,7 +88,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function &get($id) { @@ -107,7 +104,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set($key, $response, bool $overwrite = true) /* : void */ { @@ -165,7 +161,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function toArray() : array; @@ -175,7 +170,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable * @return HeaderAbstract * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getHeader() : HeaderAbstract { @@ -188,7 +182,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function getBody() : string; } diff --git a/Message/ResponseType.php b/Message/ResponseType.php index 415b41a14..05451d45a 100644 --- a/Message/ResponseType.php +++ b/Message/ResponseType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Socket/Request.php b/Message/Socket/Request.php index 6b20298d4..0df2c532f 100644 --- a/Message/Socket/Request.php +++ b/Message/Socket/Request.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Socket/Response.php b/Message/Socket/Response.php index bd0dc5035..f4c35d7b4 100644 --- a/Message/Socket/Response.php +++ b/Message/Socket/Response.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/UploadedFileInterface.php b/Message/UploadedFileInterface.php index 2286e37c1..6c67a060a 100644 --- a/Message/UploadedFileInterface.php +++ b/Message/UploadedFileInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Message; * @category Framework * @package phpOMS\Response * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -35,7 +33,6 @@ interface UploadedFileInterface * Retrieve a stream representing the uploaded file. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStream(); @@ -47,7 +44,6 @@ interface UploadedFileInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function moveTo(string $targetPath); @@ -55,7 +51,6 @@ interface UploadedFileInterface * Retrieve the file size. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSize(); @@ -63,7 +58,6 @@ interface UploadedFileInterface * Retrieve the error associated with the uploaded file. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getError(); @@ -71,7 +65,6 @@ interface UploadedFileInterface * Retrieve the filename sent by the client. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getClientFilename(); @@ -79,7 +72,6 @@ interface UploadedFileInterface * Retrieve the media type sent by the client. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getClientMediaType(); } diff --git a/Model/Html/Head.php b/Model/Html/Head.php index 38d2c23fd..b43066e72 100644 --- a/Model/Html/Head.php +++ b/Model/Html/Head.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\Contract\RenderableInterface; * @category Framework * @package phpOMS/Model * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -99,7 +97,6 @@ class Head implements RenderableInterface * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -110,7 +107,6 @@ class Head implements RenderableInterface * Set page meta. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMeta() : Meta { @@ -123,7 +119,6 @@ class Head implements RenderableInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getTitle() : string { @@ -138,7 +133,6 @@ class Head implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setTitle(string $title) /* : void */ { @@ -154,7 +148,6 @@ class Head implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addAsset(int $type, string $uri) /* : void */ { @@ -169,7 +162,6 @@ class Head implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLanguage(string $language) /* : void */ { @@ -182,7 +174,6 @@ class Head implements RenderableInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function render() : string { @@ -202,7 +193,6 @@ class Head implements RenderableInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function renderStyle() : string { @@ -220,7 +210,6 @@ class Head implements RenderableInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function renderScript() : string { @@ -242,7 +231,6 @@ class Head implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStyle(string $key, string $style, bool $overwrite = true) /* : void */ { @@ -261,7 +249,6 @@ class Head implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setScript(string $key, string $script, bool $overwrite = true) /* : void */ { @@ -276,7 +263,6 @@ class Head implements RenderableInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStyleAll() : array { @@ -289,7 +275,6 @@ class Head implements RenderableInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getScriptAll() : array { @@ -302,7 +287,6 @@ class Head implements RenderableInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function renderAssets() : string { @@ -324,7 +308,6 @@ class Head implements RenderableInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function renderAssetsLate() : string { diff --git a/Model/Html/Meta.php b/Model/Html/Meta.php index 7e2f236f7..903f741d6 100644 --- a/Model/Html/Meta.php +++ b/Model/Html/Meta.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Contract\RenderableInterface; * @category Framework * @package phpOMS/Model * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -81,7 +79,6 @@ class Meta implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addKeyword(string $keyword) { @@ -96,7 +93,6 @@ class Meta implements RenderableInterface * @return string[] Keywords * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getKeywords() : array { @@ -109,7 +105,6 @@ class Meta implements RenderableInterface * @return string Author * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAuthor() : string { @@ -124,7 +119,6 @@ class Meta implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAuthor(string $author) /* : void */ { @@ -137,7 +131,6 @@ class Meta implements RenderableInterface * @return string Charset * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCharset() : string { @@ -152,7 +145,6 @@ class Meta implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCharset(string $charset) /* : void */ { @@ -165,7 +157,6 @@ class Meta implements RenderableInterface * @return string Descritpion * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDescription() : string { @@ -180,7 +171,6 @@ class Meta implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDescription(string $description) /* : void */ { @@ -193,7 +183,6 @@ class Meta implements RenderableInterface * @return string Language * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLanguage() : string { @@ -208,7 +197,6 @@ class Meta implements RenderableInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLanguage(string $language) /* : void */ { diff --git a/Module/ActivateAbstract.php b/Module/ActivateAbstract.php index 59b2e5355..15a9306bf 100644 --- a/Module/ActivateAbstract.php +++ b/Module/ActivateAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\DataStorage\Database\DatabasePool; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ class ActivateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function activate(DatabasePool $dbPool, InfoManager $info) /* : void */ { @@ -60,7 +57,6 @@ class ActivateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function activateRoutes(string $destRoutePath, string $srcRoutePath) /* : void */ { diff --git a/Module/ConsoleInterface.php b/Module/ConsoleInterface.php index dc9aca668..18eae1eb8 100644 --- a/Module/ConsoleInterface.php +++ b/Module/ConsoleInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Module; * @category Module * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ interface ConsoleInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function callConsole(); } diff --git a/Module/DeactivateAbstract.php b/Module/DeactivateAbstract.php index 8d955ca62..659a254e1 100644 --- a/Module/DeactivateAbstract.php +++ b/Module/DeactivateAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\DataStorage\Database\DatabasePool; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ class DeactivateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function deactivate(DatabasePool $dbPool, InfoManager $info) /* : void */ { @@ -60,7 +57,6 @@ class DeactivateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function deactivateRoutes(string $destRoutePath, string $srcRoutePath) /* : void */ { diff --git a/Module/InfoManager.php b/Module/InfoManager.php index 33a66d8e4..7c676fc60 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Utils\ArrayUtils; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/InstallerAbstract.php b/Module/InstallerAbstract.php index e616c583e..1f220d97a 100644 --- a/Module/InstallerAbstract.php +++ b/Module/InstallerAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\Utils\Parser\Php\ArrayParser; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -99,7 +97,6 @@ class InstallerAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function install(string $modulePath, DatabasePool $dbPool, InfoManager $info) /* : void */ { @@ -117,7 +114,6 @@ class InstallerAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function activate(DatabasePool $dbPool, InfoManager $info) /* : void */ { @@ -135,7 +131,6 @@ class InstallerAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function reInit(string $modulePath, InfoManager $info) /* : void */ { @@ -153,7 +148,6 @@ class InstallerAbstract * @throws PermissionException * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function initRoutes(string $modulePath, InfoManager $info) /* : void */ { @@ -180,7 +174,6 @@ class InstallerAbstract * @throws PermissionException * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function installRoutes(string $destRoutePath, string $srcRoutePath) /* : void */ { diff --git a/Module/ModuleAbstract.php b/Module/ModuleAbstract.php index 9dab3c781..699b2de70 100644 --- a/Module/ModuleAbstract.php +++ b/Module/ModuleAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Module; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -105,7 +103,6 @@ abstract class ModuleAbstract * Install external. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function installExternal() /* : void */ { @@ -120,7 +117,6 @@ abstract class ModuleAbstract * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getLocalization(string $language, string $destination) : array { @@ -174,7 +170,6 @@ abstract class ModuleAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEventId() : string { diff --git a/Module/ModuleFactory.php b/Module/ModuleFactory.php index 62f60a550..7b9f74cf4 100644 --- a/Module/ModuleFactory.php +++ b/Module/ModuleFactory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Autoloader; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -58,7 +56,6 @@ class ModuleFactory * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -73,7 +70,6 @@ class ModuleFactory * @return ModuleAbstract * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getInstance(string $module, ApplicationAbstract $app) : ModuleAbstract { @@ -103,7 +99,6 @@ class ModuleFactory * @param ModuleAbstract $obj Current module * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function registerRequesting(ModuleAbstract $obj) /* : void */ { @@ -122,7 +117,6 @@ class ModuleFactory * @param ModuleAbstract $obj Current module * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function registerProvided(ModuleAbstract $obj) /* : void */ { diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index de77d3e46..bcbc6ae8f 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -31,7 +30,6 @@ use phpOMS\System\File\PathException; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -101,7 +99,6 @@ class ModuleManager * @param ApplicationAbstract $app Application * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(ApplicationAbstract $app, string $modulePath = '') { diff --git a/Module/NullModule.php b/Module/NullModule.php index fa1054b03..726dc7696 100644 --- a/Module/NullModule.php +++ b/Module/NullModule.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Module; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/SocketInterface.php b/Module/SocketInterface.php index 872fefbac..68a8ec1c5 100644 --- a/Module/SocketInterface.php +++ b/Module/SocketInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Module; * @category Module * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ interface SocketInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function callSock(); } diff --git a/Module/UninstallAbstract.php b/Module/UninstallAbstract.php index 571f3803b..3bb620955 100644 --- a/Module/UninstallAbstract.php +++ b/Module/UninstallAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\DatabasePool; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ class UninstallAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function uninstall(DatabasePool $dbPool, InfoManager $info) /* : void */ { diff --git a/Module/UpdateAbstract.php b/Module/UpdateAbstract.php index 6fd6491dc..29a36ea03 100644 --- a/Module/UpdateAbstract.php +++ b/Module/UpdateAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\DatabasePool; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ class UpdateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function update(DatabasePool $dbPool, InfoManager $info) /* : void */ { diff --git a/Module/WebInterface.php b/Module/WebInterface.php index 16e5ba4f8..c53e8d8dd 100644 --- a/Module/WebInterface.php +++ b/Module/WebInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Module; * @category Framework * @package phpOMS\Module * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Pattern/Mediator.php b/Pattern/Mediator.php index 13fb0392d..a4b6c3848 100644 --- a/Pattern/Mediator.php +++ b/Pattern/Mediator.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Pattern; * @category Pattern * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ interface Mediator extends \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function attach(string $group, \Closure $callback, bool $remove = false) : bool; @@ -55,7 +52,6 @@ interface Mediator extends \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function detach(string $group) : bool; @@ -70,7 +66,6 @@ interface Mediator extends \Countable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addGroup(string $group, string $id) /* : void */; @@ -86,7 +81,6 @@ interface Mediator extends \Countable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function trigger(string $group, string $id, bool $reset = false) /* : void */; } diff --git a/Pattern/Multition.php b/Pattern/Multition.php index 9f9ea99eb..130663ae3 100644 --- a/Pattern/Multition.php +++ b/Pattern/Multition.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Pattern; * @category Pattern * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ interface Multition * @return self * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __clone(); } diff --git a/Pattern/Observer.php b/Pattern/Observer.php index 635ff0513..33b777d79 100644 --- a/Pattern/Observer.php +++ b/Pattern/Observer.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Pattern; * @category Pattern * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ interface Observer * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function update(Subject $subject); } diff --git a/Pattern/Singleton.php b/Pattern/Singleton.php index 2ef013943..47fe776cd 100644 --- a/Pattern/Singleton.php +++ b/Pattern/Singleton.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Pattern; * @category Pattern * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ interface Singleton * @return Singleton * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getInstance() : Singleton; @@ -47,7 +44,6 @@ interface Singleton * @return self * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __clone(); } diff --git a/Pattern/Subject.php b/Pattern/Subject.php index 1054beac4..302d64155 100644 --- a/Pattern/Subject.php +++ b/Pattern/Subject.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Pattern; * @category Pattern * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ interface Subject * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function attach(Observer $observer); @@ -52,7 +49,6 @@ interface Subject * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function detach(Observer $observer); @@ -62,7 +58,6 @@ interface Subject * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function notify(); } diff --git a/Router/RouteVerb.php b/Router/RouteVerb.php index 902836360..d489c886d 100644 --- a/Router/RouteVerb.php +++ b/Router/RouteVerb.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Router * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Router/Router.php b/Router/Router.php index 324875181..6192a7250 100644 --- a/Router/Router.php +++ b/Router/Router.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Message\RequestAbstract; * @category Framework * @package phpOMS\Router * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -45,7 +43,6 @@ class Router * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -59,7 +56,6 @@ class Router * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function importFromFile(string $path) : bool { @@ -83,7 +79,6 @@ class Router * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(string $route, $destination, int $verb = RouteVerb::GET) /* : void */ { @@ -108,7 +103,6 @@ class Router * @throws \InvalidArgumentException * * @since 1.0.0 - * @author Dennis Eichhorn */ public function route($request, int $verb = RouteVerb::GET) : array { @@ -144,7 +138,6 @@ class Router * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function match(string $route, int $routeVerb, string $uri, int $remoteVerb = RouteVerb::GET) : bool { diff --git a/Security/Encryption/Encryption.php b/Security/Encryption/Encryption.php index 1bb5e5c08..6a0c5d51a 100644 --- a/Security/Encryption/Encryption.php +++ b/Security/Encryption/Encryption.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Security\Encryption; * @category Framework * @package phpOMS\Security\Encryption * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/Client/Client.php b/Socket/Client/Client.php index 91a2dc651..a59ce3081 100644 --- a/Socket/Client/Client.php +++ b/Socket/Client/Client.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Socket\SocketAbstract; * @category Framework * @package phpOMS\Socket\Client * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class Client extends SocketAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -55,7 +52,6 @@ class Client extends SocketAbstract * Disconnect from server. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function disconnect() { diff --git a/Socket/Client/ClientConnection.php b/Socket/Client/ClientConnection.php index 4f98812f5..b93a68bad 100644 --- a/Socket/Client/ClientConnection.php +++ b/Socket/Client/ClientConnection.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Socket\Client; * @category Framework * @package phpOMS\Socket\Client * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/Client/NullClientConnection.php b/Socket/Client/NullClientConnection.php index b098375cd..dc9ea28a4 100644 --- a/Socket/Client/NullClientConnection.php +++ b/Socket/Client/NullClientConnection.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Socket\Client; * @category Framework * @package phpOMS\Socket\Client * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/CommandManager.php b/Socket/CommandManager.php index fe1fdd729..f53104d05 100644 --- a/Socket/CommandManager.php +++ b/Socket/CommandManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -49,7 +48,6 @@ class CommandManager implements \Countable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { diff --git a/Socket/Packets/Header.php b/Socket/Packets/Header.php index 0202493ce..dbf0aa0e9 100644 --- a/Socket/Packets/Header.php +++ b/Socket/Packets/Header.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Socket\Packets; * @category System * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -84,7 +82,6 @@ class Header implements \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLength() { @@ -97,7 +94,6 @@ class Header implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLength($length) /* : void */ { @@ -108,7 +104,6 @@ class Header implements \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getType() { @@ -121,7 +116,6 @@ class Header implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setType($type) /* : void */ { @@ -132,7 +126,6 @@ class Header implements \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSubtype() { @@ -145,7 +138,6 @@ class Header implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setSubtype($subtype) /* : void */ { @@ -158,7 +150,6 @@ class Header implements \Serializable * @return string Json serialization * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serialize() { @@ -171,7 +162,6 @@ class Header implements \Serializable * @return string Json serialization * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __toString() { @@ -186,7 +176,6 @@ class Header implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function unserialize($string) { diff --git a/Socket/Packets/PacketAbstract.php b/Socket/Packets/PacketAbstract.php index f54316589..658a48ab2 100644 --- a/Socket/Packets/PacketAbstract.php +++ b/Socket/Packets/PacketAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ namespace phpOMS\Socket\Packets; * @category System * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/Packets/PacketManager.php b/Socket/Packets/PacketManager.php index 799eefd31..65a12b0aa 100644 --- a/Socket/Packets/PacketManager.php +++ b/Socket/Packets/PacketManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Socket\Server\ClientManager; * @category System * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -59,7 +57,6 @@ class PacketManager * @param ClientManager $user Client Manager * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(CommandManager $cmd, ClientManager $user) { @@ -75,7 +72,6 @@ class PacketManager * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function handle(string $data, $client) { diff --git a/Socket/Packets/PacketType.php b/Socket/Packets/PacketType.php index 7a9f510a0..24d952959 100644 --- a/Socket/Packets/PacketType.php +++ b/Socket/Packets/PacketType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Socket\Packets * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/Server/ClientManager.php b/Socket/Server/ClientManager.php index cacf08c87..f39b52965 100644 --- a/Socket/Server/ClientManager.php +++ b/Socket/Server/ClientManager.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Socket/Server/Server.php b/Socket/Server/Server.php index bfd115a75..732f28b87 100644 --- a/Socket/Server/Server.php +++ b/Socket/Server/Server.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Socket\SocketAbstract; * @category Framework * @package phpOMS\Socket\Server * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -78,7 +76,6 @@ class Server extends SocketAbstract * @param \Socket\SocketApplication $app socketApplication * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($app) { @@ -93,7 +90,6 @@ class Server extends SocketAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function hasInternet() : bool { @@ -127,7 +123,6 @@ class Server extends SocketAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLimit(int $limit) /* : void */ { diff --git a/Socket/SocketAbstract.php b/Socket/SocketAbstract.php index 70d837547..3fcdd98be 100644 --- a/Socket/SocketAbstract.php +++ b/Socket/SocketAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Socket; * @category Socket * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -79,7 +77,6 @@ abstract class SocketAbstract implements SocketInterface * Destructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __destruct() { diff --git a/Socket/SocketInterface.php b/Socket/SocketInterface.php index eccc9d640..c91503611 100644 --- a/Socket/SocketInterface.php +++ b/Socket/SocketInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Socket; * @category Socket * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/SocketType.php b/Socket/SocketType.php index 4a2b07640..f55364518 100644 --- a/Socket/SocketType.php +++ b/Socket/SocketType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Socket * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Collection/Collection.php b/Stdlib/Collection/Collection.php index 8b65563fe..c2b47ca02 100644 --- a/Stdlib/Collection/Collection.php +++ b/Stdlib/Collection/Collection.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Utils\ArrayUtils; * @category Framework * @package phpOMS\Stdlib * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -46,7 +44,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @param array $data Collection data * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(array $data) { @@ -59,7 +56,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return array Collection array representation * * @since 1.0.0 - * @author Dennis Eichhorn */ public function toArray() : array { @@ -72,7 +68,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function jsonSerialize() { @@ -87,7 +82,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function avg($filter = null) { @@ -102,7 +96,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function sum($filter = null) { @@ -135,7 +128,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() { @@ -152,7 +144,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return Collection[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function chunk(int $size) : array { @@ -172,7 +163,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return Collection * * @since 1.0.0 - * @author Dennis Eichhorn */ public function collapse() : Collection { @@ -211,7 +201,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function contains($find) : bool { @@ -238,7 +227,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function diff($compare) : array { @@ -278,7 +266,6 @@ class Collection implements \Countable, \ArrayAccess, \Iterator, \JsonSerializab * @return Collection * * @since 1.0.0 - * @author Dennis Eichhorn */ public function every(int $n) : Collection { diff --git a/Stdlib/Graph/BinaryTree.php b/Stdlib/Graph/BinaryTree.php index a3dced390..c4248d548 100644 --- a/Stdlib/Graph/BinaryTree.php +++ b/Stdlib/Graph/BinaryTree.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Stdlib\Graph; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -53,7 +51,6 @@ class BinaryTree extends Tree * @return Node Left node * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLeft(Node $base) { @@ -71,7 +68,6 @@ class BinaryTree extends Tree * @return Node Right node * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRight(Node $base) { @@ -90,7 +86,6 @@ class BinaryTree extends Tree * @return BinaryTree * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLeft(Node $base, Node $left) : BinaryTree { @@ -114,7 +109,6 @@ class BinaryTree extends Tree * @return BinaryTree * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setRight(Node $base, Node $right) /* : void */ { @@ -134,7 +128,6 @@ class BinaryTree extends Tree * @param \Closure $callback Task to perform on node * * @since 1.0.0 - * @author Dennis Eichhorn */ public function inOrder(Node $node, \Closure $callback) { @@ -151,7 +144,6 @@ class BinaryTree extends Tree * @param Node[] &$order Ordered nodes by horizontal distance * * @since 1.0.0 - * @author Dennis Eichhorn */ private function getVerticalOrder(Node $node, int $horizontalDistance = 0, array &$order) { @@ -179,7 +171,6 @@ class BinaryTree extends Tree * @param \Closure $callback Task to perform on node * * @since 1.0.0 - * @author Dennis Eichhorn */ public function verticalOrder(Node $node, \Closure $callback) { @@ -202,7 +193,6 @@ class BinaryTree extends Tree * @return bool True if tree is symmetric, false if tree is not symmetric * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isSymmetric(Node $node1 = null, Node $node2 = null) : bool { diff --git a/Stdlib/Graph/Edge.php b/Stdlib/Graph/Edge.php index 279d722b8..b6c3b293e 100644 --- a/Stdlib/Graph/Edge.php +++ b/Stdlib/Graph/Edge.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Stdlib\Graph; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Graph/Graph.php b/Stdlib/Graph/Graph.php index 1cb6b0f54..c1d733fab 100644 --- a/Stdlib/Graph/Graph.php +++ b/Stdlib/Graph/Graph.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Stdlib\Graph; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -54,7 +52,6 @@ class Graph * @return Graph * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addNode(Node $node) : Graph { @@ -72,7 +69,6 @@ class Graph * @return Graph * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addNodeRelative(Node $relative, Node $node) : Graph { @@ -88,7 +84,6 @@ class Graph * @return Graph * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setNode($key, Node $node) : Graph { @@ -105,7 +100,6 @@ class Graph * @return Graph * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addEdge(Edge $edge) : Graph { @@ -123,7 +117,6 @@ class Graph * @return Graph * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setEdge($key, Edge $edge) /* : void */ { @@ -140,7 +133,6 @@ class Graph * @return Node * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getNode($key) : Node { @@ -153,7 +145,6 @@ class Graph * @return Node[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getNodes() : array { @@ -168,7 +159,6 @@ class Graph * @return Edge * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEdge($key) : Edge { @@ -183,7 +173,6 @@ class Graph * @return Edge[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEdgesOfNode($node) : array { @@ -211,7 +200,6 @@ class Graph * @return Node[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getNeighbors($node) : array { @@ -241,7 +229,6 @@ class Graph * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDimension() : int { @@ -255,7 +242,6 @@ class Graph * @return Edge[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBridges() : array { @@ -269,7 +255,6 @@ class Graph * @return Tree * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getKruskalMinimalSpanningTree() : Tree { @@ -283,7 +268,6 @@ class Graph * @return Tree * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPrimMinimalSpanningTree() : Tree { @@ -297,7 +281,6 @@ class Graph * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCircle() : array { @@ -310,7 +293,6 @@ class Graph * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFloydWarshallShortestPath() : array { @@ -323,7 +305,6 @@ class Graph * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDijkstraShortestPath() : array { @@ -336,7 +317,6 @@ class Graph * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function depthFirstTraversal() : array { @@ -349,7 +329,6 @@ class Graph * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function breadthFirstTraversal() : array { @@ -362,7 +341,6 @@ class Graph * @return Node[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function longestPath() : array { @@ -378,7 +356,6 @@ class Graph * @return Node[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function longestPathBetweenNodes(Node $node1, Node $node2) : array { @@ -393,7 +370,6 @@ class Graph * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getOrder() : int { @@ -408,7 +384,6 @@ class Graph * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSize() : int { @@ -423,7 +398,6 @@ class Graph * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDiameter() : int { diff --git a/Stdlib/Graph/Node.php b/Stdlib/Graph/Node.php index 7d097db7f..5be599353 100644 --- a/Stdlib/Graph/Node.php +++ b/Stdlib/Graph/Node.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Stdlib\Graph; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Graph/Tree.php b/Stdlib/Graph/Tree.php index 7654b3f72..312d0b5b7 100644 --- a/Stdlib/Graph/Tree.php +++ b/Stdlib/Graph/Tree.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Stdlib\Graph; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ class Tree extends Graph * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -59,7 +56,6 @@ class Tree extends Graph * @return Tree * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addRelativeNode(Node $base, Node $node) : Tree { @@ -77,7 +73,6 @@ class Tree extends Graph * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMaxDepth(Node $node = null) : int { @@ -105,7 +100,6 @@ class Tree extends Graph * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMinDepth(Node $node = null) : int { @@ -136,7 +130,6 @@ class Tree extends Graph * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function levelOrder(Node $node, \Closure $callback) { @@ -156,7 +149,6 @@ class Tree extends Graph * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isLeaf(Node $node) : bool { @@ -172,7 +164,6 @@ class Tree extends Graph * @return Node[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLevelNodes(int $level, Node $node) : array { @@ -199,7 +190,6 @@ class Tree extends Graph * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isFull(int $type) : bool { @@ -225,7 +215,6 @@ class Tree extends Graph * @param \Closure $callback Task to perform on node * * @since 1.0.0 - * @author Dennis Eichhorn */ public function preOrder(Node $node, \Closure $callback) { if(count($this->nodes) === 0) { @@ -248,7 +237,6 @@ class Tree extends Graph * @param \Closure $callback Task to perform on node * * @since 1.0.0 - * @author Dennis Eichhorn */ public function postOrder(Node $node, \Closure $callback) { if(count($this->nodes) === 0) { diff --git a/Stdlib/Map/KeyType.php b/Stdlib/Map/KeyType.php index 1e51e11f9..b2f435429 100644 --- a/Stdlib/Map/KeyType.php +++ b/Stdlib/Map/KeyType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Stdlib * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Map/MultiMap.php b/Stdlib/Map/MultiMap.php index 14051a3be..864d19f3a 100644 --- a/Stdlib/Map/MultiMap.php +++ b/Stdlib/Map/MultiMap.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Utils\Permutation; * @category Framework * @package phpOMS\Stdlib * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -72,7 +70,6 @@ class MultiMap implements \Countable * @param int $order Order of the keys is important (only required for multiple keys) * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(int $key = KeyType::SINGLE, int $order = OrderType::LOOSE) { diff --git a/Stdlib/Map/OrderType.php b/Stdlib/Map/OrderType.php index 3155a6309..aa7ecd0bb 100644 --- a/Stdlib/Map/OrderType.php +++ b/Stdlib/Map/OrderType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Stdlib * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Queue/PriorityMode.php b/Stdlib/Queue/PriorityMode.php index 8f2274d01..8f4744a40 100644 --- a/Stdlib/Queue/PriorityMode.php +++ b/Stdlib/Queue/PriorityMode.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Stdlib * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Queue/PriorityQueue.php b/Stdlib/Queue/PriorityQueue.php index 885ffbc81..1dcff87b4 100644 --- a/Stdlib/Queue/PriorityQueue.php +++ b/Stdlib/Queue/PriorityQueue.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Stdlib\Queue; * @category Framework * @package phpOMS\Stdlib * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -51,7 +49,6 @@ class PriorityQueue implements \Countable, \Serializable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -66,7 +63,6 @@ class PriorityQueue implements \Countable, \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function insert($data, float $priority = 1.0) : int { @@ -100,7 +96,6 @@ class PriorityQueue implements \Countable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function increaseAll(float $increase = 0.1) /* : void */ { @@ -115,7 +110,6 @@ class PriorityQueue implements \Countable, \Serializable * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function pop() { @@ -130,7 +124,6 @@ class PriorityQueue implements \Countable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function delete(int $id = null) /* : void */ { @@ -145,7 +138,6 @@ class PriorityQueue implements \Countable, \Serializable * Delete last element. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove() { @@ -161,7 +153,6 @@ class PriorityQueue implements \Countable, \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setPriority(int $id, float $priority) /* : void */ { @@ -176,7 +167,6 @@ class PriorityQueue implements \Countable, \Serializable * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPriority(int $id) : float { @@ -207,7 +197,6 @@ class PriorityQueue implements \Countable, \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function unserialize($data) : array { diff --git a/System/File/ContainerInterface.php b/System/File/ContainerInterface.php index c8c746e90..2b2f0774a 100644 --- a/System/File/ContainerInterface.php +++ b/System/File/ContainerInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\System\File; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ interface ContainerInterface * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function created(string $path) : \DateTime; @@ -52,7 +49,6 @@ interface ContainerInterface * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function changed(string $path) : \DateTime; @@ -64,7 +60,6 @@ interface ContainerInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function owner(string $path) : int; @@ -76,7 +71,6 @@ interface ContainerInterface * @return string Permissions (e.g. 0644); * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function permission(string $path) : string; @@ -90,7 +84,6 @@ interface ContainerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function parent(string $path) : string; @@ -102,7 +95,6 @@ interface ContainerInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function create(string $path) : bool; @@ -114,7 +106,6 @@ interface ContainerInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function delete(string $path) : bool; @@ -128,7 +119,6 @@ interface ContainerInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function copy(string $from, string $to, bool $overwrite = false) : bool; @@ -142,7 +132,6 @@ interface ContainerInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function move(string $from, string $to, bool $overwrite = false) : bool; @@ -155,7 +144,6 @@ interface ContainerInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function size(string $path, bool $recursive = true) : int; @@ -167,7 +155,6 @@ interface ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function exists(string $path) : bool; @@ -179,7 +166,6 @@ interface ContainerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function name(string $path) : string; @@ -191,7 +177,6 @@ interface ContainerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function basename(string $path) : string; @@ -204,7 +189,6 @@ interface ContainerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function sanitize(string $path, string $replace = '') : string; @@ -218,7 +202,6 @@ interface ContainerInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCount(bool $recursive = false) : int; @@ -230,7 +213,6 @@ interface ContainerInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSize(bool $recursive = false) : int; @@ -240,7 +222,6 @@ interface ContainerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string; @@ -250,7 +231,6 @@ interface ContainerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPath() : string; @@ -262,7 +242,6 @@ interface ContainerInterface * @return ContainerInterface * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getParent() : ContainerInterface; @@ -272,7 +251,6 @@ interface ContainerInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public function createNode() : bool; @@ -285,7 +263,6 @@ interface ContainerInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public function copyNode(string $to, bool $overwrite = false) : bool; @@ -298,7 +275,6 @@ interface ContainerInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public function moveNode(string $to, bool $overwrite = false) : bool; @@ -308,7 +284,6 @@ interface ContainerInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public function deleteNode() : bool; @@ -318,7 +293,6 @@ interface ContainerInterface * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCreatedAt() : \DateTime; @@ -328,7 +302,6 @@ interface ContainerInterface * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getChangedAt() : \DateTime; @@ -338,7 +311,6 @@ interface ContainerInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getOwner() : int; @@ -348,7 +320,6 @@ interface ContainerInterface * @return string Permissions (e.g. 0644); * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPermission() : string; @@ -359,7 +330,6 @@ interface ContainerInterface * Sub-sub-resources are only initialized once they are needed. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function index(); } diff --git a/System/File/ContentPutMode.php b/System/File/ContentPutMode.php index f3241131e..5e9b4a7cb 100644 --- a/System/File/ContentPutMode.php +++ b/System/File/ContentPutMode.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\System * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/DirectoryInterface.php b/System/File/DirectoryInterface.php index ebecee064..d7ac51a69 100644 --- a/System/File/DirectoryInterface.php +++ b/System/File/DirectoryInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\System\File; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ interface DirectoryInterface extends ContainerInterface, \Iterator, \ArrayAccess * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function count(string $path, bool $recursive = true, array $ignore = []) : int; @@ -56,7 +53,6 @@ interface DirectoryInterface extends ContainerInterface, \Iterator, \ArrayAccess * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getNode(string $name); @@ -68,7 +64,6 @@ interface DirectoryInterface extends ContainerInterface, \Iterator, \ArrayAccess * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addNode($file) : bool; } diff --git a/System/File/ExtensionType.php b/System/File/ExtensionType.php index 8efd6a066..0a4b568b2 100644 --- a/System/File/ExtensionType.php +++ b/System/File/ExtensionType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\System * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/FileInterface.php b/System/File/FileInterface.php index c234395ac..7e5d1a3f5 100644 --- a/System/File/FileInterface.php +++ b/System/File/FileInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\System\File; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ interface FileInterface extends ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function put(string $path, string $content, int $mode = ContentPutMode::APPEND | ContentPutMode::CREATE) : bool; @@ -58,7 +55,6 @@ interface FileInterface extends ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function set(string $path, string $content) : bool; @@ -73,7 +69,6 @@ interface FileInterface extends ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function append(string $path, string $content) : bool; @@ -88,7 +83,6 @@ interface FileInterface extends ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function prepend(string $path, string $content) : bool; @@ -100,7 +94,6 @@ interface FileInterface extends ContainerInterface * @return string Content of file * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function get(string $path) : string; @@ -112,7 +105,6 @@ interface FileInterface extends ContainerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function extension(string $path) : string; @@ -125,7 +117,6 @@ interface FileInterface extends ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function putContent(string $content, int $mode = ContentPutMode::APPEND | ContentPutMode::CREATE) : bool; @@ -139,7 +130,6 @@ interface FileInterface extends ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setContent(string $content) : bool; @@ -153,7 +143,6 @@ interface FileInterface extends ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function appendContent(string $content) : bool; @@ -167,7 +156,6 @@ interface FileInterface extends ContainerInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function prependContent(string $content) : bool; @@ -177,7 +165,6 @@ interface FileInterface extends ContainerInterface * @return string Content of file * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getContent() : string; @@ -187,7 +174,6 @@ interface FileInterface extends ContainerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getExtension() : string; } diff --git a/System/File/FileUtils.php b/System/File/FileUtils.php index 48091f70c..f5335355e 100644 --- a/System/File/FileUtils.php +++ b/System/File/FileUtils.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\System\File; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/Ftp/Directory.php b/System/File/Ftp/Directory.php index aa0d550d1..0467c04a2 100644 --- a/System/File/Ftp/Directory.php +++ b/System/File/Ftp/Directory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -32,7 +31,6 @@ use phpOMS\System\File\Local\Directory as DirectoryLocal; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/Ftp/File.php b/System/File/Ftp/File.php index fd4dd9132..aa7b538ce 100644 --- a/System/File/Ftp/File.php +++ b/System/File/Ftp/File.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -33,7 +32,6 @@ use phpOMS\System\File\Local\Directory as DirectoryLocal; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -232,7 +230,6 @@ class File extends FileAbstract implements FileInterface * @return string Returns the directory name of the file. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function dirname(string $path) : string { @@ -247,7 +244,6 @@ class File extends FileAbstract implements FileInterface * @return string Returns the directory name of the file. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function dirpath(string $path) : string { @@ -340,7 +336,6 @@ class File extends FileAbstract implements FileInterface * @return ContainerInterface * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getParent() : ContainerInterface { @@ -353,7 +348,6 @@ class File extends FileAbstract implements FileInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public function createNode() : bool { @@ -369,7 +363,6 @@ class File extends FileAbstract implements FileInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public function copyNode(string $to, bool $overwrite = false) : bool { @@ -385,7 +378,6 @@ class File extends FileAbstract implements FileInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public function moveNode(string $to, bool $overwrite = false) : bool { @@ -398,7 +390,6 @@ class File extends FileAbstract implements FileInterface * @return bool True on success and false on failure * * @since 1.0.0 - * @author Dennis Eichhorn */ public function deleteNode() : bool { @@ -414,7 +405,6 @@ class File extends FileAbstract implements FileInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function putContent(string $content, int $mode = ContentPutMode::APPEND | ContentPutMode::CREATE) : bool { @@ -431,7 +421,6 @@ class File extends FileAbstract implements FileInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setContent(string $content) : bool { @@ -448,7 +437,6 @@ class File extends FileAbstract implements FileInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function appendContent(string $content) : bool { @@ -465,7 +453,6 @@ class File extends FileAbstract implements FileInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function prependContent(string $content) : bool { @@ -478,7 +465,6 @@ class File extends FileAbstract implements FileInterface * @return string Content of file * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getContent() : string { @@ -491,7 +477,6 @@ class File extends FileAbstract implements FileInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getExtension() : string { diff --git a/System/File/Ftp/FtpStorage.php b/System/File/Ftp/FtpStorage.php index 6656db956..00ded654c 100644 --- a/System/File/Ftp/FtpStorage.php +++ b/System/File/Ftp/FtpStorage.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\System\File\StorageAbstract; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/Local/Directory.php b/System/File/Local/Directory.php index 1938f1bb6..0ff410ec0 100644 --- a/System/File/Local/Directory.php +++ b/System/File/Local/Directory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\Utils\StringUtils; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -60,7 +58,6 @@ class Directory extends FileAbstract implements DirectoryInterface * @param string $filter Filter * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $path, string $filter = '*') { @@ -81,7 +78,6 @@ class Directory extends FileAbstract implements DirectoryInterface * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function list(string $path, string $filter = '*') : array { diff --git a/System/File/Local/File.php b/System/File/Local/File.php index 7271bd188..e64cd03a6 100644 --- a/System/File/Local/File.php +++ b/System/File/Local/File.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\System\File\PathException; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ class File extends FileAbstract implements FileInterface * @param string $path Path * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $path) { @@ -226,7 +223,6 @@ class File extends FileAbstract implements FileInterface * @return string Returns the directory name of the file. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function dirname(string $path) : string { @@ -241,7 +237,6 @@ class File extends FileAbstract implements FileInterface * @return string Returns the directory name of the file. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function dirpath(string $path) : string { @@ -312,7 +307,6 @@ class File extends FileAbstract implements FileInterface * @return string Returns the directory name of the file. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDirName() : string { @@ -325,7 +319,6 @@ class File extends FileAbstract implements FileInterface * @return string Returns the directory path of the file. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDirPath() : string { diff --git a/System/File/Local/FileAbstract.php b/System/File/Local/FileAbstract.php index 57274f2ac..f6b4d7924 100644 --- a/System/File/Local/FileAbstract.php +++ b/System/File/Local/FileAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\System\File\ContainerInterface; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -103,7 +101,6 @@ abstract class FileAbstract implements ContainerInterface * @param string $path Path * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $path) { diff --git a/System/File/Local/LocalStorage.php b/System/File/Local/LocalStorage.php index 52cf714cb..a5149d3c1 100644 --- a/System/File/Local/LocalStorage.php +++ b/System/File/Local/LocalStorage.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\System\File\StorageAbstract; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/PathException.php b/System/File/PathException.php index db9745f60..c971f0685 100644 --- a/System/File/PathException.php +++ b/System/File/PathException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\System\File; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class PathException extends \UnexpectedValueException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $message, int $code = 0, \Exception $previous = null) { diff --git a/System/File/PermissionException.php b/System/File/PermissionException.php index 599b9bebd..07d796781 100644 --- a/System/File/PermissionException.php +++ b/System/File/PermissionException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\System\File; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class PermissionException extends \RuntimeException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $message, int $code = 0, \Exception $previous = null) { diff --git a/System/File/Storage.php b/System/File/Storage.php index 33a434045..12cac0349 100644 --- a/System/File/Storage.php +++ b/System/File/Storage.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\System\File; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ final class Storage * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -61,7 +58,6 @@ final class Storage * @throws \Exception Throws exception in case of invalid storage * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function env(string $env = 'local') : StorageAbstract { @@ -96,7 +92,6 @@ final class Storage * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function register(string $name, $class) : bool { diff --git a/System/File/StorageAbstract.php b/System/File/StorageAbstract.php index cfa447d7e..4a785ec63 100644 --- a/System/File/StorageAbstract.php +++ b/System/File/StorageAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\System\File; * @category Framework * @package phpOMS\System\File * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -52,7 +50,6 @@ abstract class StorageAbstract implements DirectoryInterface, FileInterface * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -64,7 +61,6 @@ abstract class StorageAbstract implements DirectoryInterface, FileInterface * @return mixed Storage instance. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getInstance() : StorageAbstract { @@ -81,7 +77,6 @@ abstract class StorageAbstract implements DirectoryInterface, FileInterface * @return int Storage type. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getType() : int { diff --git a/System/MimeType.php b/System/MimeType.php index bcbfa6ce7..87660f3f7 100644 --- a/System/MimeType.php +++ b/System/MimeType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\System * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/OperatingSystem.php b/System/OperatingSystem.php index 7eb5a80e5..1b3aa3b16 100644 --- a/System/OperatingSystem.php +++ b/System/OperatingSystem.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\System; * @category Framework * @package phpOMS\System * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -36,7 +34,6 @@ final class OperatingSystem * @return int|SystemType * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSystem() : int { diff --git a/System/SystemType.php b/System/SystemType.php index 4cd863a59..cc0260e0c 100644 --- a/System/SystemType.php +++ b/System/SystemType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\System * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/SystemUtils.php b/System/SystemUtils.php index 07a51fbac..fac52c2b4 100644 --- a/System/SystemUtils.php +++ b/System/SystemUtils.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\System; * @category Framework * @package phpOMS\System * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -35,7 +33,6 @@ class SystemUtils * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { diff --git a/UnhandledHandler.php b/UnhandledHandler.php index c698d221a..3484ae806 100644 --- a/UnhandledHandler.php +++ b/UnhandledHandler.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -37,7 +36,6 @@ final class UnhandledHandler * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function exceptionHandler($e) /* : void */ { @@ -65,7 +63,6 @@ final class UnhandledHandler * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function errorHandler(int $errno, string $errstr, string $errfile, int $errline) : bool { @@ -109,7 +106,6 @@ final class UnhandledHandler * Shutdown handler. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function shutdownHandler() /* : void */ { diff --git a/Uri/Http.php b/Uri/Http.php index 2530fb28a..44e7e4212 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Utils\StringUtils; * @category Framework * @package phpOMS/Uri * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -137,7 +135,6 @@ class Http implements UriInterface * @param string $uri Root path for subdirectory * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $uri) { @@ -180,7 +177,6 @@ class Http implements UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCurrent() : string { @@ -202,7 +198,6 @@ class Http implements UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRootPath() : string { @@ -248,7 +243,6 @@ class Http implements UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPass() : string { @@ -331,7 +325,6 @@ class Http implements UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getUser() : string { diff --git a/Uri/InvalidUriException.php b/Uri/InvalidUriException.php index 3b12131b8..f267abc3b 100644 --- a/Uri/InvalidUriException.php +++ b/Uri/InvalidUriException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Uri; * @category Framework * @package phpOMS/Uri * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class InvalidUriException extends \UnexpectedValueException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $message, int $code = 0, \Exception $previous = null) { diff --git a/Uri/UriFactory.php b/Uri/UriFactory.php index 49e46a677..b4c7b52f5 100644 --- a/Uri/UriFactory.php +++ b/Uri/UriFactory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Uri; * @category Framework * @package phpOMS/Uri * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -45,7 +43,6 @@ class UriFactory * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -59,7 +56,6 @@ class UriFactory * @return null|string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getQuery(string $key) /* : ?string */ { @@ -76,7 +72,6 @@ class UriFactory * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function setQuery(string $key, string $value, bool $overwrite = true) : bool { @@ -95,7 +90,6 @@ class UriFactory * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function clearAll() : bool { @@ -112,7 +106,6 @@ class UriFactory * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function setupUriBuilder(UriInterface $uri) /* : void */ { @@ -136,7 +129,6 @@ class UriFactory * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function clear(string $key) : bool { @@ -157,7 +149,6 @@ class UriFactory * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function clearLike(string $pattern) : bool { @@ -183,7 +174,6 @@ class UriFactory * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function unique(string $url) : string { @@ -233,7 +223,6 @@ class UriFactory * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function build(string $uri, array $toMatch = []) /* : ?string */ { diff --git a/Uri/UriInterface.php b/Uri/UriInterface.php index 2a6b6d960..64adde028 100644 --- a/Uri/UriInterface.php +++ b/Uri/UriInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Uri; * @category Framework * @package phpOMS/Uri * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ interface UriInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isValid(string $uri) : bool; @@ -49,7 +46,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getScheme() : string; @@ -59,7 +55,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAuthority() : string; @@ -69,7 +64,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getUserInfo() : string; @@ -79,7 +73,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getHost() : string; @@ -89,7 +82,6 @@ interface UriInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPort() : int; @@ -99,7 +91,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPath() : string; @@ -111,7 +102,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPathElement(int $pos) : string; @@ -123,7 +113,6 @@ interface UriInterface * @return string|array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getQuery(string $key = null); @@ -133,7 +122,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFragment() : string; @@ -143,7 +131,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __toString(); @@ -153,7 +140,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBase() : string; @@ -163,7 +149,6 @@ interface UriInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRoute() : string; @@ -175,7 +160,6 @@ interface UriInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(string $uri); } diff --git a/Uri/UriScheme.php b/Uri/UriScheme.php index e9d19850a..5d1cdb527 100644 --- a/Uri/UriScheme.php +++ b/Uri/UriScheme.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS/Uri * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/ArrayUtils.php b/Utils/ArrayUtils.php index 6ed1c3412..17f99ea34 100644 --- a/Utils/ArrayUtils.php +++ b/Utils/ArrayUtils.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -35,7 +33,6 @@ class ArrayUtils * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -51,7 +48,6 @@ class ArrayUtils * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function unsetArray(string $path, array $data, string $delim) : array { @@ -90,7 +86,6 @@ class ArrayUtils * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function setArray(string $path, array $data, $value, string $delim, bool $overwrite = false) : array { @@ -127,7 +122,6 @@ class ArrayUtils * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function inArrayRecursive($needle, array $haystack) : bool { @@ -169,7 +163,6 @@ class ArrayUtils * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function stringify(array $array) : string { @@ -221,7 +214,6 @@ class ArrayUtils * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function arrayToCSV(array $data, string $delimiter = ';', string $enclosure = '"', string $escape = '\\') : string { @@ -246,7 +238,6 @@ class ArrayUtils * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getArg(string $id, array $args) /* : ?string */ { @@ -267,7 +258,6 @@ class ArrayUtils * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function arrayFlatten(array $array) : array { @@ -298,7 +288,6 @@ class ArrayUtils * @return int|float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function arraySum(array $array, int $start = 0, int $count = 0) { @@ -322,7 +311,6 @@ class ArrayUtils * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function arraySumRecursive(array $array) { diff --git a/Utils/Barcode/Aztec.php b/Utils/Barcode/Aztec.php index c8b578772..009e25b7d 100644 --- a/Utils/Barcode/Aztec.php +++ b/Utils/Barcode/Aztec.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/C128Abstract.php b/Utils/Barcode/C128Abstract.php index 0da7e9b3a..bfff4b358 100644 --- a/Utils/Barcode/C128Abstract.php +++ b/Utils/Barcode/C128Abstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Exception\InvalidEnumValue; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/C128a.php b/Utils/Barcode/C128a.php index 877a4b9a6..7c0356c22 100644 --- a/Utils/Barcode/C128a.php +++ b/Utils/Barcode/C128a.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/C128b.php b/Utils/Barcode/C128b.php index 4aa9ff616..8d9f5480e 100644 --- a/Utils/Barcode/C128b.php +++ b/Utils/Barcode/C128b.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/C128c.php b/Utils/Barcode/C128c.php index b66500bec..511d8e41e 100644 --- a/Utils/Barcode/C128c.php +++ b/Utils/Barcode/C128c.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/C25.php b/Utils/Barcode/C25.php index 9cb3fac68..574097846 100644 --- a/Utils/Barcode/C25.php +++ b/Utils/Barcode/C25.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/C39.php b/Utils/Barcode/C39.php index 0629cde18..69ebdb1fb 100644 --- a/Utils/Barcode/C39.php +++ b/Utils/Barcode/C39.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/Codebar.php b/Utils/Barcode/Codebar.php index 2a4a37bb5..0084208dd 100644 --- a/Utils/Barcode/Codebar.php +++ b/Utils/Barcode/Codebar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/Datamatrix.php b/Utils/Barcode/Datamatrix.php index 78984bd58..6c47be94f 100644 --- a/Utils/Barcode/Datamatrix.php +++ b/Utils/Barcode/Datamatrix.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/HIBCC.php b/Utils/Barcode/HIBCC.php index 1dd19af24..188dd843f 100644 --- a/Utils/Barcode/HIBCC.php +++ b/Utils/Barcode/HIBCC.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/OrientationType.php b/Utils/Barcode/OrientationType.php index 9c3ae56f4..13302b5d2 100644 --- a/Utils/Barcode/OrientationType.php +++ b/Utils/Barcode/OrientationType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/QR.php b/Utils/Barcode/QR.php index 537277a10..627a6abcf 100644 --- a/Utils/Barcode/QR.php +++ b/Utils/Barcode/QR.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Barcode; * @category Log * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/ColorUtils.php b/Utils/ColorUtils.php index a6f3ce7e7..46170b0ce 100644 --- a/Utils/ColorUtils.php +++ b/Utils/ColorUtils.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ class ColorUtils * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRGBGradient(int $value, array $start, array $stop, array $end) { @@ -92,7 +89,6 @@ class ColorUtils * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function intToRgb(int $rgbInt) : array { diff --git a/Utils/Compression/CompressionInterface.php b/Utils/Compression/CompressionInterface.php index b2acceefb..123c375c6 100644 --- a/Utils/Compression/CompressionInterface.php +++ b/Utils/Compression/CompressionInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Compression; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ interface CompressionInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function compress(string $source) : string; @@ -50,7 +47,6 @@ interface CompressionInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ 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 0e296beb0..de2da1103 100644 --- a/Utils/Compression/LZW.php +++ b/Utils/Compression/LZW.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Compression; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/AngleType.php b/Utils/Converter/AngleType.php index a7436f2d4..0213446e2 100644 --- a/Utils/Converter/AngleType.php +++ b/Utils/Converter/AngleType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/AreaType.php b/Utils/Converter/AreaType.php index f36286998..624bb68f1 100644 --- a/Utils/Converter/AreaType.php +++ b/Utils/Converter/AreaType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/Currency.php b/Utils/Converter/Currency.php index dd9b350ad..6ae5d2f94 100644 --- a/Utils/Converter/Currency.php +++ b/Utils/Converter/Currency.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\Uri\Http; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -50,7 +48,6 @@ class Currency * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -62,7 +59,6 @@ class Currency * Can be used in order to refresh them. Be careful currency rates only get updated once a day from the ECB website. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function resetCurrencies() /* : void */ { @@ -78,7 +74,6 @@ class Currency * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function fromEurTo(float $value, string $to) : float { @@ -100,7 +95,6 @@ class Currency * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getEcbEuroRates() : array { @@ -135,7 +129,6 @@ class Currency * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function fromToEur(float $value, string $from) : float { @@ -159,7 +152,6 @@ class Currency * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertCurrency(float $value, string $from, string $to) : float { diff --git a/Utils/Converter/EnergyPowerType.php b/Utils/Converter/EnergyPowerType.php index db21c3c8c..ccf6c44b3 100644 --- a/Utils/Converter/EnergyPowerType.php +++ b/Utils/Converter/EnergyPowerType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/File.php b/Utils/Converter/File.php index bb757d635..75fd2e1b6 100644 --- a/Utils/Converter/File.php +++ b/Utils/Converter/File.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Converter; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -35,7 +33,6 @@ class File * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -49,7 +46,6 @@ class File * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function byteSizeToString(int $bytes) : string { @@ -72,7 +68,6 @@ class File * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function kilobyteSizeToString(int $kilobytes) : string { diff --git a/Utils/Converter/FileSizeType.php b/Utils/Converter/FileSizeType.php index 5fa2ee08d..4a7f49bca 100644 --- a/Utils/Converter/FileSizeType.php +++ b/Utils/Converter/FileSizeType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/Ip.php b/Utils/Converter/Ip.php index 50ec71b73..5a0dbb342 100644 --- a/Utils/Converter/Ip.php +++ b/Utils/Converter/Ip.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Converter; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/LengthType.php b/Utils/Converter/LengthType.php index a58b23b22..d6f215216 100644 --- a/Utils/Converter/LengthType.php +++ b/Utils/Converter/LengthType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/Measurement.php b/Utils/Converter/Measurement.php index 93ee74a2a..ca1e27545 100644 --- a/Utils/Converter/Measurement.php +++ b/Utils/Converter/Measurement.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Converter; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertTemperature(float $value, string $from = TemperatureType::FAHRENHEIT, string $to = TemperatureType::CELSIUS) : float { @@ -115,7 +112,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertWeight(float $value, string $from = WeightType::GRAM, string $to = WeightType::KILOGRAM) : float { @@ -225,7 +221,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertLength(float $value, string $from = LengthType::METERS, string $to = LengthType::KILOMETERS) : float { @@ -377,7 +372,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertArea(float $value, string $from = AreaType::SQUARE_METERS, string $to = AreaType::SQUARE_KILOMETERS) : float { @@ -481,7 +475,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertVolume(float $value, string $from = VolumeType::LITER, string $to = VolumeType::LITER) : float { @@ -735,7 +728,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertSpeed(float $value, string $from = SpeedType::KILOMETERS_PER_HOUR, string $to = SpeedType::KILOMETERS_PER_HOUR) : float { @@ -965,7 +957,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertTime(float $value, string $from = TimeType::SECONDS, string $to = TimeType::HOURS) : float { @@ -1045,7 +1036,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertAngle(float $value, string $from = AngleType::DEGREE, string $to = AngleType::DEGREE) : float { @@ -1131,7 +1121,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertPressure(float $value, string $from = PressureType::PASCALS, string $to = PressureType::BAR) : float { @@ -1233,7 +1222,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertEnergie(float $value, string $from = EnergyPowerType::JOULS, string $to = EnergyPowerType::KILOWATT_HOUERS) : float { @@ -1310,7 +1298,6 @@ class Measurement * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertFileSize(float $value, string $from = FileSizeType::BYTE, string $to = FileSizeType::MEGABYTE) : float { diff --git a/Utils/Converter/Numeric.php b/Utils/Converter/Numeric.php index c61b5d006..a9a7d811b 100644 --- a/Utils/Converter/Numeric.php +++ b/Utils/Converter/Numeric.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Converter; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -43,7 +41,6 @@ class Numeric * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -59,7 +56,6 @@ class Numeric * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function convertBase(string $numberInput, string $fromBaseInput, string $toBaseInput) : string { @@ -109,7 +105,6 @@ class Numeric * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function arabicToRoman(int $arabic) : string { @@ -136,7 +131,6 @@ class Numeric * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function romanToArabic(string $roman) : int { @@ -162,7 +156,6 @@ class Numeric * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function numericToAlpha(int $number) : string { @@ -184,7 +177,6 @@ class Numeric * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function alphaToNumeric(string $alpha) : int { diff --git a/Utils/Converter/PressureType.php b/Utils/Converter/PressureType.php index fb19f8835..06a1ea756 100644 --- a/Utils/Converter/PressureType.php +++ b/Utils/Converter/PressureType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/SpeedType.php b/Utils/Converter/SpeedType.php index d2cc42457..6bc981eb4 100644 --- a/Utils/Converter/SpeedType.php +++ b/Utils/Converter/SpeedType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/TemperatureType.php b/Utils/Converter/TemperatureType.php index 3d54b765e..fbcc90867 100644 --- a/Utils/Converter/TemperatureType.php +++ b/Utils/Converter/TemperatureType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/TimeType.php b/Utils/Converter/TimeType.php index 0d0d1dba1..bd875d18f 100644 --- a/Utils/Converter/TimeType.php +++ b/Utils/Converter/TimeType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/VolumeType.php b/Utils/Converter/VolumeType.php index 7d5513c98..a0cd9fd24 100644 --- a/Utils/Converter/VolumeType.php +++ b/Utils/Converter/VolumeType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/WeightType.php b/Utils/Converter/WeightType.php index 927f0a109..39e3d28dd 100644 --- a/Utils/Converter/WeightType.php +++ b/Utils/Converter/WeightType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/EDIAbstract.php b/Utils/EDI/AnsiX12/EDIAbstract.php index 2aecc8305..7a6f87e02 100644 --- a/Utils/EDI/AnsiX12/EDIAbstract.php +++ b/Utils/EDI/AnsiX12/EDIAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/FunctionalGroupHeader.php b/Utils/EDI/AnsiX12/FunctionalGroupHeader.php index 8e7d2ee3c..e41840a4d 100644 --- a/Utils/EDI/AnsiX12/FunctionalGroupHeader.php +++ b/Utils/EDI/AnsiX12/FunctionalGroupHeader.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\EDI\AnsiX12; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/Header.php b/Utils/EDI/AnsiX12/Header.php index 9337825f2..25859f3bd 100644 --- a/Utils/EDI/AnsiX12/Header.php +++ b/Utils/EDI/AnsiX12/Header.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\EDI\AnsiX12; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/InterchangeControlHeader.php b/Utils/EDI/AnsiX12/InterchangeControlHeader.php index 3bc81dd69..ada8d7df4 100644 --- a/Utils/EDI/AnsiX12/InterchangeControlHeader.php +++ b/Utils/EDI/AnsiX12/InterchangeControlHeader.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Utils\EDI\AnsiX12; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php index 88a13d1a5..6e6acfa37 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Utils\EDI\AnsiX12\EDIAbstract; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php index 4280cb007..b6908a744 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Heading.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Heading.php index 07a78a5e0..a680d69ca 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Heading.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Heading.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php index 30d397da6..2a3234ec7 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php index 3f166448b..d4649d24f 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; * @category Framework * @package phpOMS\Utils\Converter * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Encoding/Caesar.php b/Utils/Encoding/Caesar.php index 9576a6e6e..f335d64d0 100644 --- a/Utils/Encoding/Caesar.php +++ b/Utils/Encoding/Caesar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Encoding; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Encoding/EncodingInterface.php b/Utils/Encoding/EncodingInterface.php index 1471f0c9b..51b187015 100644 --- a/Utils/Encoding/EncodingInterface.php +++ b/Utils/Encoding/EncodingInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Encoding; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ interface EncodingInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function encode($source); @@ -50,7 +47,6 @@ interface EncodingInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function decode($decoded); } \ No newline at end of file diff --git a/Utils/Encoding/Gray.php b/Utils/Encoding/Gray.php index 121c59090..a72fe3be7 100644 --- a/Utils/Encoding/Gray.php +++ b/Utils/Encoding/Gray.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Encoding; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Encoding/Huffman/Dictionary.php b/Utils/Encoding/Huffman/Dictionary.php index 054a1dfad..44393ad65 100644 --- a/Utils/Encoding/Huffman/Dictionary.php +++ b/Utils/Encoding/Huffman/Dictionary.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Encoding\Huffman; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -60,7 +58,6 @@ final class Dictionary * @param string $source Source to create the dictionary from * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $source = '') { @@ -77,7 +74,6 @@ final class Dictionary * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function generate(string $source) /* : void */ { @@ -113,7 +109,6 @@ final class Dictionary * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function fill(string $entry, string $value = '') /* : void */ { @@ -143,7 +138,6 @@ final class Dictionary * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(string $entry, string $value) /* : void */ { @@ -182,7 +176,6 @@ final class Dictionary * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(string $entry) : string { @@ -205,7 +198,6 @@ final class Dictionary * @return null|string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEntry(&$value) /* : ?string */ { diff --git a/Utils/Encoding/Huffman/Huffman.php b/Utils/Encoding/Huffman/Huffman.php index b2185abb0..c6b0cf056 100644 --- a/Utils/Encoding/Huffman/Huffman.php +++ b/Utils/Encoding/Huffman/Huffman.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Encoding\Huffman; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ final class Huffman * Remove dictionary * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeDictionary() /* : void */ { @@ -55,7 +52,6 @@ final class Huffman * @return Dictionary * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDictionary() : Dictionary { @@ -68,7 +64,6 @@ final class Huffman * @param Dictionary $dictionary Huffman dictionary * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDictionary(Dictionary $dictionary) /* : void */ { @@ -83,7 +78,6 @@ final class Huffman * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function encode(string $source) : string { @@ -122,7 +116,6 @@ final class Huffman * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function decode(string $raw) : string { diff --git a/Utils/Encoding/XorEncoding.php b/Utils/Encoding/XorEncoding.php index 7c84d7774..f74654e65 100644 --- a/Utils/Encoding/XorEncoding.php +++ b/Utils/Encoding/XorEncoding.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Encoding; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Excel/Excel.php b/Utils/Excel/Excel.php index bd4a4d5c4..cd2683710 100644 --- a/Utils/Excel/Excel.php +++ b/Utils/Excel/Excel.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Git/Author.php b/Utils/Git/Author.php index a9b030ce3..a7778d16b 100644 --- a/Utils/Git/Author.php +++ b/Utils/Git/Author.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Git; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -77,7 +75,6 @@ class Author * @param string $email Author email * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $name = '', string $email = '') { @@ -91,7 +88,6 @@ class Author * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -104,7 +100,6 @@ class Author * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEmail() : string { @@ -117,7 +112,6 @@ class Author * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCommitCount() : int { @@ -132,7 +126,6 @@ class Author * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCommitCount(int $count) /* : void */ { @@ -147,7 +140,6 @@ class Author * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAdditionCount(int $count) /* : void */ { @@ -160,7 +152,6 @@ class Author * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAdditionCount() : int { @@ -175,7 +166,6 @@ class Author * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setRemovalCount(int $count) /* : void */ { @@ -188,7 +178,6 @@ class Author * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRemovalCount() : int { diff --git a/Utils/Git/Branch.php b/Utils/Git/Branch.php index a075eece7..6b05b80cd 100644 --- a/Utils/Git/Branch.php +++ b/Utils/Git/Branch.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Git; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ class Branch * @param string $name Branch name * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $name = '') { @@ -57,7 +54,6 @@ class Branch * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -70,7 +66,6 @@ class Branch * @param string $name Branch name * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName(string $name) /* : void */ { diff --git a/Utils/Git/Commit.php b/Utils/Git/Commit.php index 180c53cb5..600f432c0 100644 --- a/Utils/Git/Commit.php +++ b/Utils/Git/Commit.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Git; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -100,7 +98,6 @@ class Commit * @param string $id Commit hash * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $id = '') { @@ -116,7 +113,6 @@ class Commit * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getId() : string { @@ -131,7 +127,6 @@ class Commit * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addFile(string $path) : bool { @@ -150,7 +145,6 @@ class Commit * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMessage() : string { @@ -163,7 +157,6 @@ class Commit * @param string $message Commit message * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setMessage(string $message) /* : void */ { @@ -176,7 +169,6 @@ class Commit * @return string[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFiles() : array { @@ -191,7 +183,6 @@ class Commit * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeFile(string $path) : bool { @@ -210,7 +201,6 @@ class Commit * @return Author * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAuthor() : Author { @@ -223,7 +213,6 @@ class Commit * @param Author $author Commit author * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAuthor(Author $author) /* : void */ { @@ -236,7 +225,6 @@ class Commit * @return Branch * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBranch() : Branch { @@ -249,7 +237,6 @@ class Commit * @param Branch $branch Commit branch * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setBranch(Branch $branch) /* : void */ { @@ -262,7 +249,6 @@ class Commit * @return Tag * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getTag() : Tag { @@ -275,7 +261,6 @@ class Commit * @param Tag $tag Commit tag * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setTag(Tag $tag) /* : void */ { @@ -288,7 +273,6 @@ class Commit * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDate() : \DateTime { @@ -303,7 +287,6 @@ class Commit * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDate(\DateTime $date) /* : void */ { @@ -316,7 +299,6 @@ class Commit * @return Repository * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRepository() : Repository { @@ -329,7 +311,6 @@ class Commit * @param Repository $repository Commit repository * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setRepository(Repository $repository) /* : void */ { @@ -347,7 +328,6 @@ class Commit * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function addChange(string $path, int $line, string $old, string $new) /* : void */ { diff --git a/Utils/Git/Git.php b/Utils/Git/Git.php index 1fa318a29..d4be0f85e 100644 --- a/Utils/Git/Git.php +++ b/Utils/Git/Git.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\System\File\PathException; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -46,7 +44,6 @@ class Git * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function test() : bool { @@ -69,7 +66,6 @@ class Git * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getBin() : string { @@ -84,7 +80,6 @@ class Git * @throws PathException * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function setBin(string $path) /* : void */ { diff --git a/Utils/Git/Repository.php b/Utils/Git/Repository.php index 6457f8c02..21b6e173b 100644 --- a/Utils/Git/Repository.php +++ b/Utils/Git/Repository.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Utils\StringUtils; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -71,7 +69,6 @@ class Repository * @param string $path Repository path * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $path) { @@ -87,7 +84,6 @@ class Repository * @throws PathException * * @since 1.0.0 - * @author Dennis Eichhorn */ private function setPath(string $path) /* : void */ { @@ -118,7 +114,6 @@ class Repository * @return Branch * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getActiveBranch() : Branch { @@ -139,7 +134,6 @@ class Repository * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBranches() : array { @@ -167,7 +161,6 @@ class Repository * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function run(string $cmd) : array { @@ -208,7 +201,6 @@ class Repository * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parseLines(string $lines) : array { @@ -235,7 +227,6 @@ class Repository * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function create(string $source = null, bool $bare = false) { @@ -256,7 +247,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function status() : string { @@ -273,7 +263,6 @@ class Repository * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add($files = '*') : string { @@ -297,7 +286,6 @@ class Repository * @throws \InvalidArgumentException * * @since 1.0.0 - * @author Dennis Eichhorn */ public function rm($files = '*', bool $cached = false) : string { @@ -319,7 +307,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function commit(Commit $commit, $all = true) : string { @@ -336,7 +323,6 @@ class Repository * @throws PathException in case the target is not a valid directory * * @since 1.0.0 - * @author Dennis Eichhorn */ public function cloneTo(string $target) : string { @@ -357,7 +343,6 @@ class Repository * @throws PathException in case the source repository is not valid * * @since 1.0.0 - * @author Dennis Eichhorn */ public function cloneFrom(string $source) : string { @@ -378,7 +363,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function cloneRemote(string $source) : string { @@ -396,7 +380,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function clean(bool $dirs = false, bool $force = false) : string { @@ -412,7 +395,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function createBranch(Branch $branch, bool $force = false) : string { @@ -425,7 +407,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -445,7 +426,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDirectoryPath() : string { @@ -458,7 +438,6 @@ class Repository * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBranchesRemote() : array { @@ -484,7 +463,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function checkout(Branch $branch) : string { @@ -502,7 +480,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function merge(Branch $branch) : string { @@ -515,7 +492,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function fetch() : string { @@ -530,7 +506,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function createTag(Tag $tag) : string { @@ -545,7 +520,6 @@ class Repository * @return Tag[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getTags(string $pattern = '') : array { @@ -569,7 +543,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function push(string $remote, Branch $branch) : string { @@ -587,7 +560,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function pull(string $remote, Branch $branch) : string { @@ -604,7 +576,6 @@ class Repository * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDescription(string $description) /* : void */ { @@ -617,7 +588,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDescription() : string { @@ -632,7 +602,6 @@ class Repository * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function countFiles() : int { @@ -651,7 +620,6 @@ class Repository * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLOC(array $extensions = ['*']) : int { @@ -693,7 +661,6 @@ class Repository * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getContributors(\DateTime $start = null, \DateTime $end = null) : array { @@ -733,7 +700,6 @@ class Repository * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCommitsCount(\DateTime $start = null, \DateTime $end = null) : array { @@ -767,7 +733,6 @@ class Repository * @return array ['added' => ?, 'removed'=> ?] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAdditionsRemovalsByContributor(Author $author, \DateTime $start = null, \DateTime $end = null) : array { @@ -790,7 +755,6 @@ class Repository * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRemote() : string { @@ -807,7 +771,6 @@ class Repository * @return Commit[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCommitsBy(\DateTime $start = null, \DateTime $end = null, Author $author = null) : array { @@ -851,7 +814,6 @@ class Repository * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCommit(string $commit) : Commit { @@ -903,7 +865,6 @@ class Repository * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getNewest(int $limit = 1) : Commit { diff --git a/Utils/Git/Tag.php b/Utils/Git/Tag.php index 60a22d862..6e8c441c0 100644 --- a/Utils/Git/Tag.php +++ b/Utils/Git/Tag.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Git; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -52,7 +50,6 @@ class Tag * @param string $name Tag name/version * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $name = '') { @@ -65,7 +62,6 @@ class Tag * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMessage() : string { @@ -78,7 +74,6 @@ class Tag * @param string $message Tag message * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setMessage(string $message) /* : void */ { @@ -91,7 +86,6 @@ class Tag * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { diff --git a/Utils/IO/Csv/CsvDatabaseMapper.php b/Utils/IO/Csv/CsvDatabaseMapper.php index 44db78a49..2455a57a6 100644 --- a/Utils/IO/Csv/CsvDatabaseMapper.php +++ b/Utils/IO/Csv/CsvDatabaseMapper.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/IO/Csv/CsvInterface.php b/Utils/IO/Csv/CsvInterface.php index 63ae0ddf9..2e2e8eed6 100644 --- a/Utils/IO/Csv/CsvInterface.php +++ b/Utils/IO/Csv/CsvInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/IO/Csv/CsvSettings.php b/Utils/IO/Csv/CsvSettings.php index d65af6511..3a85d9645 100644 --- a/Utils/IO/Csv/CsvSettings.php +++ b/Utils/IO/Csv/CsvSettings.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/IO/Excel/ExcelDatabaseMapper.php b/Utils/IO/Excel/ExcelDatabaseMapper.php index 558d78033..3a2dcaa1c 100644 --- a/Utils/IO/Excel/ExcelDatabaseMapper.php +++ b/Utils/IO/Excel/ExcelDatabaseMapper.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/IO/Excel/ExcelInterface.php b/Utils/IO/Excel/ExcelInterface.php index fed8c698d..6efec043f 100644 --- a/Utils/IO/Excel/ExcelInterface.php +++ b/Utils/IO/Excel/ExcelInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\IO\Excel; * @category Framework * @package Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ interface ExcelInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function exportExcel($path); @@ -51,7 +48,6 @@ interface ExcelInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function importExcel($path); } diff --git a/Utils/IO/ExchangeInterface.php b/Utils/IO/ExchangeInterface.php index 7e1702d38..3e3a65978 100644 --- a/Utils/IO/ExchangeInterface.php +++ b/Utils/IO/ExchangeInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Utils\IO\Pdf\PdfInterface; * @category Framework * @package phpOMS\Utils\IO * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/IODatabaseMapper.php b/Utils/IO/IODatabaseMapper.php index f37e9b6d9..dede8c986 100644 --- a/Utils/IO/IODatabaseMapper.php +++ b/Utils/IO/IODatabaseMapper.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/IO/Json/InvalidJsonException.php b/Utils/IO/Json/InvalidJsonException.php index 0de462932..0526e4cf9 100644 --- a/Utils/IO/Json/InvalidJsonException.php +++ b/Utils/IO/Json/InvalidJsonException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\IO\Json; * @category Framework * @package phpOMS\Utils\IO\Json * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class InvalidJsonException extends \UnexpectedValueException * @param \Exception Previous exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($message, $code = 0, \Exception $previous = null) { diff --git a/Utils/IO/Json/JsonInterface.php b/Utils/IO/Json/JsonInterface.php index 566d7a12e..7bb07d74e 100644 --- a/Utils/IO/Json/JsonInterface.php +++ b/Utils/IO/Json/JsonInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\IO\Json; * @category Framework * @package Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ interface JsonInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function exportJson($path); @@ -51,7 +48,6 @@ interface JsonInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function importJson($path); } diff --git a/Utils/IO/Pdf/PdfInterface.php b/Utils/IO/Pdf/PdfInterface.php index cec1a312f..ae892b048 100644 --- a/Utils/IO/Pdf/PdfInterface.php +++ b/Utils/IO/Pdf/PdfInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\IO\Pdf; * @category Framework * @package Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ interface PdfInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function exportPdf($path); } diff --git a/Utils/IO/Zip/ArchiveInterface.php b/Utils/IO/Zip/ArchiveInterface.php index 361a14557..90041ca41 100644 --- a/Utils/IO/Zip/ArchiveInterface.php +++ b/Utils/IO/Zip/ArchiveInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\IO\Zip; * @category Framework * @package phpOMS\Utils\IO * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ interface ArchiveInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function pack($sources, string $destination, bool $overwrite = true) : bool; @@ -51,7 +48,6 @@ interface ArchiveInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function unpack(string $source, string $destination) : bool; } diff --git a/Utils/IO/Zip/Gz.php b/Utils/IO/Zip/Gz.php index 330e1383f..93fa83291 100644 --- a/Utils/IO/Zip/Gz.php +++ b/Utils/IO/Zip/Gz.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\IO\Zip; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/Zip/Tar.php b/Utils/IO/Zip/Tar.php index 69834dc6c..5bd843f39 100644 --- a/Utils/IO/Zip/Tar.php +++ b/Utils/IO/Zip/Tar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\IO\Zip; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/Zip/TarGz.php b/Utils/IO/Zip/TarGz.php index 81f3e27ae..631db38e2 100644 --- a/Utils/IO/Zip/TarGz.php +++ b/Utils/IO/Zip/TarGz.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\IO\Zip; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/Zip/Zip.php b/Utils/IO/Zip/Zip.php index 7cb6a7f68..68034b41a 100644 --- a/Utils/IO/Zip/Zip.php +++ b/Utils/IO/Zip/Zip.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Utils\IO\Zip; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/ImageUtils.php b/Utils/ImageUtils.php index b1c3b41f7..f9a232139 100644 --- a/Utils/ImageUtils.php +++ b/Utils/ImageUtils.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Utils; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class ImageUtils * @return string Decoded image * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function decodeBase64Image(string $img) : string { diff --git a/Utils/JobQueue/Job.php b/Utils/JobQueue/Job.php index 6132be1d6..72232284b 100644 --- a/Utils/JobQueue/Job.php +++ b/Utils/JobQueue/Job.php @@ -8,7 +8,6 @@ * } * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Utils\JobQueue; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/JobQueue/JobQueue.php b/Utils/JobQueue/JobQueue.php index c7f11426a..fab7d84ec 100644 --- a/Utils/JobQueue/JobQueue.php +++ b/Utils/JobQueue/JobQueue.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Stdlib\Queue\PriorityQueue; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/JsonBuilder.php b/Utils/JsonBuilder.php index b0a1e29f5..bd277c6ee 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/PDF/Pdf.php b/Utils/PDF/Pdf.php index 4eb73e4c7..075b7ae54 100644 --- a/Utils/PDF/Pdf.php +++ b/Utils/PDF/Pdf.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Parser/LaTex/Expressions/Product.php b/Utils/Parser/LaTex/Expressions/Product.php index ce8743ba7..7cbd03887 100644 --- a/Utils/Parser/LaTex/Expressions/Product.php +++ b/Utils/Parser/LaTex/Expressions/Product.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Parser/LaTex/Expressions/Sum.php b/Utils/Parser/LaTex/Expressions/Sum.php index 4fe3616de..65f9ccf8c 100644 --- a/Utils/Parser/LaTex/Expressions/Sum.php +++ b/Utils/Parser/LaTex/Expressions/Sum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Parser/LaTex/Expressions/Trigonometry.php b/Utils/Parser/LaTex/Expressions/Trigonometry.php index 3d28f89ac..289572f23 100644 --- a/Utils/Parser/LaTex/Expressions/Trigonometry.php +++ b/Utils/Parser/LaTex/Expressions/Trigonometry.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Parser/LaTex/LaTexParser.php b/Utils/Parser/LaTex/LaTexParser.php index 4065a395a..e7e4a24c5 100644 --- a/Utils/Parser/LaTex/LaTexParser.php +++ b/Utils/Parser/LaTex/LaTexParser.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Parser/LaTex/Types/Interval.php b/Utils/Parser/LaTex/Types/Interval.php index 5ee143061..f168a6673 100644 --- a/Utils/Parser/LaTex/Types/Interval.php +++ b/Utils/Parser/LaTex/Types/Interval.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Parser/LaTex/Types/MathFunction.php b/Utils/Parser/LaTex/Types/MathFunction.php index 214106437..e6cefd512 100644 --- a/Utils/Parser/LaTex/Types/MathFunction.php +++ b/Utils/Parser/LaTex/Types/MathFunction.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Parser/LaTex/Types/Variable.php b/Utils/Parser/LaTex/Types/Variable.php index a380564b9..3d09fa7cc 100644 --- a/Utils/Parser/LaTex/Types/Variable.php +++ b/Utils/Parser/LaTex/Types/Variable.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/Parser/Markdown/Markdown.php b/Utils/Parser/Markdown/Markdown.php index a87da3829..7bab60a53 100644 --- a/Utils/Parser/Markdown/Markdown.php +++ b/Utils/Parser/Markdown/Markdown.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Parser\Markdown; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Parser/Php/ArrayParser.php b/Utils/Parser/Php/ArrayParser.php index b23b91db2..15dd20344 100644 --- a/Utils/Parser/Php/ArrayParser.php +++ b/Utils/Parser/Php/ArrayParser.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Utils\Parser\Php; * @category Framework * @package phpOMS\Utils\Parser * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class ArrayParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function serializeArray(array $arr) : string { diff --git a/Utils/Parser/Php/ClassParser.php b/Utils/Parser/Php/ClassParser.php index f9c71e1c3..1fd8ac242 100644 --- a/Utils/Parser/Php/ClassParser.php +++ b/Utils/Parser/Php/ClassParser.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Utils\Parser\Php; * @category Framework * @package phpOMS\Utils\Parser * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -152,7 +150,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function createFile(string $path) /* : void */ { @@ -167,7 +164,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setFinal(bool $final) /* : void */ { @@ -180,7 +176,6 @@ class ClassParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isFinal() : bool { @@ -195,7 +190,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAbstract(bool $abstract) /* : void */ { @@ -208,7 +202,6 @@ class ClassParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isAbstract() : bool { @@ -221,7 +214,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getType() : string { @@ -238,7 +230,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setType(string $type) /* : void */ { @@ -251,7 +242,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getExtends() : string { @@ -266,7 +256,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setExtends(string $extends) /* : void */ { @@ -279,7 +268,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeExtends() /* : void */ { @@ -292,7 +280,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getNamespace() : string { @@ -307,7 +294,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setNamespace(string $namespace) /* : void */ { @@ -320,7 +306,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeNamespace() /* : void */ { @@ -336,7 +321,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addUse(string $namespace, string $as = null) /* : void */ { @@ -355,7 +339,6 @@ class ClassParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeUse($id) : bool { @@ -374,7 +357,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -389,7 +371,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName(string $name) /* : void */ { @@ -404,7 +385,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addImplements(string $implements) /* : void */ { @@ -421,7 +401,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addInclude(string $include) /* : void */ { @@ -438,7 +417,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addRequire(string $require) /* : void */ { @@ -456,7 +434,6 @@ class ClassParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addTrait(string $trait, string $as = null) /* : void */ { @@ -475,7 +452,6 @@ class ClassParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeTrait($id) : bool { @@ -496,7 +472,6 @@ class ClassParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addMember(MemberParser $member) /* : void */ { @@ -511,7 +486,6 @@ class ClassParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeMember(string $name) : bool { @@ -532,7 +506,6 @@ class ClassParser * @return MemberParser * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMember(string $name) : MemberParser { @@ -547,7 +520,6 @@ class ClassParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addFunction(FunctionParser $function) { @@ -562,7 +534,6 @@ class ClassParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeFunction(string $name) : bool { @@ -583,7 +554,6 @@ class ClassParser * @return FunctionParser * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getFunction(string $name) : FunctionParser { @@ -596,7 +566,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serialize() : string { @@ -632,7 +601,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function serializeRequire(string $keyword, array $source) : string { @@ -654,7 +622,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function serializeNamespace() : string { @@ -674,7 +641,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function serializeUse(array $source) : string { @@ -696,7 +662,6 @@ class ClassParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function serializeClass() : string { diff --git a/Utils/Parser/Php/ClassType.php b/Utils/Parser/Php/ClassType.php index 0d9ad6b18..d1ebd9be4 100644 --- a/Utils/Parser/Php/ClassType.php +++ b/Utils/Parser/Php/ClassType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Parser * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Parser/Php/FunctionParser.php b/Utils/Parser/Php/FunctionParser.php index 18a96622b..0c0faa3e9 100644 --- a/Utils/Parser/Php/FunctionParser.php +++ b/Utils/Parser/Php/FunctionParser.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Utils\Parser\Php; * @category Framework * @package phpOMS\Utils\Parser * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -102,7 +100,6 @@ class FunctionParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -117,7 +114,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName(string $name) /* : void */ { @@ -132,7 +128,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function seBody(string $body) /* : void */ { @@ -145,7 +140,6 @@ class FunctionParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getBody() : string { @@ -158,7 +152,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeBody() /* : void */ { @@ -171,7 +164,6 @@ class FunctionParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getVisibility() : string { @@ -186,7 +178,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setVisibility(string $visibility) /* : void */ { @@ -201,7 +192,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStatic(bool $static) /* : void */ { @@ -214,7 +204,6 @@ class FunctionParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isStatic() : bool { @@ -229,7 +218,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setFinal(bool $final) /* : void */ { @@ -242,7 +230,6 @@ class FunctionParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isFinal() : bool { @@ -257,7 +244,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAbstract(bool $abstract) /* : void */ { @@ -276,7 +262,6 @@ class FunctionParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isAbstract() : bool { @@ -289,7 +274,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeReturn() /* : void */ { @@ -302,7 +286,6 @@ class FunctionParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getReturn() : string { @@ -317,7 +300,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setReturn(string $return) /* : void */ { @@ -334,7 +316,6 @@ class FunctionParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addParameter(string $name, string $typehint = null, string $default = null) /* : void */ { @@ -356,7 +337,6 @@ class FunctionParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serialize() { @@ -404,7 +384,6 @@ class FunctionParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function addIndent(string $body) : string { diff --git a/Utils/Parser/Php/MemberParser.php b/Utils/Parser/Php/MemberParser.php index ea34e4190..c712f1ca8 100644 --- a/Utils/Parser/Php/MemberParser.php +++ b/Utils/Parser/Php/MemberParser.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Utils\Parser\Php; * @category Framework * @package phpOMS\Utils\Parser * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -78,7 +76,6 @@ class MemberParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getName() : string { @@ -93,7 +90,6 @@ class MemberParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setName(string $name) /* : void */ { @@ -106,7 +102,6 @@ class MemberParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getVisibility() : string { @@ -121,7 +116,6 @@ class MemberParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setVisibility(string $visibility) /* : void */ { @@ -136,7 +130,6 @@ class MemberParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStatic(bool $static) /* : void */ { @@ -153,7 +146,6 @@ class MemberParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isStatic() : bool { @@ -168,7 +160,6 @@ class MemberParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setConst(bool $const) /* : void */ { @@ -185,7 +176,6 @@ class MemberParser * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function isConst() : bool { @@ -200,7 +190,6 @@ class MemberParser * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDefault($default) /* : void */ { @@ -213,7 +202,6 @@ class MemberParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serialize() : string { @@ -243,7 +231,6 @@ class MemberParser * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function parseVariable($value) : string { diff --git a/Utils/Parser/Php/Visibility.php b/Utils/Parser/Php/Visibility.php index 30582a54f..afe0bcc6b 100644 --- a/Utils/Parser/Php/Visibility.php +++ b/Utils/Parser/Php/Visibility.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Utils\Parser * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Permutation.php b/Utils/Permutation.php index 7da4cb9b3..1f0424a06 100644 --- a/Utils/Permutation.php +++ b/Utils/Permutation.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class Permutation * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function permut(array $toPermute, array $result = []) : array { @@ -69,7 +66,6 @@ class Permutation * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isPermutation(string $a, string $b) : bool { @@ -85,7 +81,6 @@ class Permutation * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isPalindrome(string $a, string $filter = 'a-zA-Z0-9') : bool { @@ -105,7 +100,6 @@ class Permutation * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function permutate($toPermute, array $key) { diff --git a/Utils/RnG/Address.php b/Utils/RnG/Address.php index fad29fc32..3b93f6d32 100644 --- a/Utils/RnG/Address.php +++ b/Utils/RnG/Address.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/RnG/ArrayRandomize.php b/Utils/RnG/ArrayRandomize.php index 8d93b9d13..845b4c87f 100644 --- a/Utils/RnG/ArrayRandomize.php +++ b/Utils/RnG/ArrayRandomize.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\RnG; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class ArrayRandomize * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function yates(array $arr) : array { @@ -61,7 +58,6 @@ class ArrayRandomize * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function knuth(array $arr) : array { diff --git a/Utils/RnG/City.php b/Utils/RnG/City.php index eccf12fdd..51f4a4d82 100644 --- a/Utils/RnG/City.php +++ b/Utils/RnG/City.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/RnG/DateTime.php b/Utils/RnG/DateTime.php index fb3791953..2617d670d 100644 --- a/Utils/RnG/DateTime.php +++ b/Utils/RnG/DateTime.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\RnG; * @category Framework * @package Utils\RnG * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -40,7 +38,6 @@ class DateTime * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function generateDateTime(string $start, string $end) : \DateTime { diff --git a/Utils/RnG/DistributionType.php b/Utils/RnG/DistributionType.php index 395efdf65..93bfb4401 100644 --- a/Utils/RnG/DistributionType.php +++ b/Utils/RnG/DistributionType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package Utils/RnG * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/Email.php b/Utils/RnG/Email.php index 28f5a1c16..688a9304d 100644 --- a/Utils/RnG/Email.php +++ b/Utils/RnG/Email.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/RnG/File.php b/Utils/RnG/File.php index ff6fbbbf4..f5ef2494b 100644 --- a/Utils/RnG/File.php +++ b/Utils/RnG/File.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Utils\RnG; * @category DataStorage * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -113,7 +111,6 @@ class File * @return false|array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function generateExtension($source = null, $distribution = DistributionType::UNIFORM) { diff --git a/Utils/RnG/Iban.php b/Utils/RnG/Iban.php index 5cbf9fab8..91b468ea8 100644 --- a/Utils/RnG/Iban.php +++ b/Utils/RnG/Iban.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/RnG/LinearCongruentialGenerator.php b/Utils/RnG/LinearCongruentialGenerator.php index 65c51b42b..f6059c111 100644 --- a/Utils/RnG/LinearCongruentialGenerator.php +++ b/Utils/RnG/LinearCongruentialGenerator.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\RnG; * @category Framework * @package phpOMS\Asset * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class LinearCongruentialGenerator * @return \Closure * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function bsd(int $seed) { @@ -55,7 +52,6 @@ class LinearCongruentialGenerator * @return \Closure * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function msvcrt(int $seed) { diff --git a/Utils/RnG/Name.php b/Utils/RnG/Name.php index bc2b3a9ba..206e3f27f 100644 --- a/Utils/RnG/Name.php +++ b/Utils/RnG/Name.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\RnG; * @category Framework * @package Utils\RnG * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -482,7 +480,6 @@ class Name * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function generateName(array $type, string $origin = 'western') : string { diff --git a/Utils/RnG/Numeric.php b/Utils/RnG/Numeric.php index d35fee2b6..264a5c902 100644 --- a/Utils/RnG/Numeric.php +++ b/Utils/RnG/Numeric.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/RnG/Phone.php b/Utils/RnG/Phone.php index c25e5809b..d14c08c09 100644 --- a/Utils/RnG/Phone.php +++ b/Utils/RnG/Phone.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Utils\RnG; * @category Framework * @package Utils\RnG * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -42,7 +40,6 @@ class Phone * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function generatePhone($isInt = true, $layout = ['struct' => '+$1 ($2) $3-$4', 'size' => [null, diff --git a/Utils/RnG/PostalZip.php b/Utils/RnG/PostalZip.php index 146803a45..e46b40854 100644 --- a/Utils/RnG/PostalZip.php +++ b/Utils/RnG/PostalZip.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Utils/RnG/StringUtils.php b/Utils/RnG/StringUtils.php index 11fcfd01d..ca144d445 100644 --- a/Utils/RnG/StringUtils.php +++ b/Utils/RnG/StringUtils.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\RnG; * @category Framework * @package Utils\RnG * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ class StringUtils * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function generateString(int $min = 10, int $max = 10, string $charset = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') : string { diff --git a/Utils/RnG/Text.php b/Utils/RnG/Text.php index 57ba6b014..0aa897978 100644 --- a/Utils/RnG/Text.php +++ b/Utils/RnG/Text.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\RnG; * @category Framework * @package RnG * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -248,7 +246,6 @@ class Text * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setFormatting($hasFormatting) /* : void */ { @@ -263,7 +260,6 @@ class Text * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setParagraphs($hasParagraphs) /* : void */ { @@ -276,7 +272,6 @@ class Text * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSentences() : int { @@ -292,7 +287,6 @@ class Text * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function generateText(int $length, $words = null) : string { @@ -383,7 +377,6 @@ class Text * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generatePunctuation(int $length) : array { @@ -450,7 +443,6 @@ class Text * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generateParagraph(int $length) /* : void */ { @@ -481,7 +473,6 @@ class Text * @return string[] * * @since 1.0.0 - * @author Dennis Eichhorn */ private function generateFormatting(int $length) : array { diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php index 39571ef75..c2e3ce9ef 100644 --- a/Utils/StringUtils.php +++ b/Utils/StringUtils.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Utils; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -39,7 +37,6 @@ class StringUtils * This class is purely static and is preventing any initialization * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { diff --git a/Utils/TaskSchedule/Cron.php b/Utils/TaskSchedule/Cron.php index 8316b693c..9dc00af64 100644 --- a/Utils/TaskSchedule/Cron.php +++ b/Utils/TaskSchedule/Cron.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\TaskSchedule; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/CronJob.php b/Utils/TaskSchedule/CronJob.php index 41d5f28d8..7cdaf9a1e 100644 --- a/Utils/TaskSchedule/CronJob.php +++ b/Utils/TaskSchedule/CronJob.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\TaskSchedule; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -38,7 +36,6 @@ class CronJob extends TaskAbstract implements \Serializable * @param string $cmd Command to execute * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(Interval $interval = null, $cmd = '') { @@ -57,7 +54,6 @@ class CronJob extends TaskAbstract implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serialize() { @@ -78,7 +74,6 @@ class CronJob extends TaskAbstract implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function printValue(array $value) : string { @@ -105,7 +100,6 @@ class CronJob extends TaskAbstract implements \Serializable * @param string $serialized To unserialize * * @since 1.0.0 - * @author Dennis Eichhorn */ public function unserialize($serialized) { diff --git a/Utils/TaskSchedule/Interval.php b/Utils/TaskSchedule/Interval.php index 08c9e3c12..65073c9dc 100644 --- a/Utils/TaskSchedule/Interval.php +++ b/Utils/TaskSchedule/Interval.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\TaskSchedule; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -101,7 +99,6 @@ class Interval implements \Serializable * @param string $interval Interval to parse * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $interval = null) { @@ -118,7 +115,6 @@ class Interval implements \Serializable * @param string $serialized String to unserialize * * @since 1.0.0 - * @author Dennis Eichhorn */ public function unserialize($serialized) { @@ -140,7 +136,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parseMinute(string $minute) : array { @@ -155,7 +150,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parseHour(string $hour) : array { @@ -170,7 +164,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parseDayOfMonth(string $dayOfMonth) : array { @@ -185,7 +178,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parseMonth(string $month) : array { @@ -200,7 +192,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parseDayOfWeek(string $dayOfWeek) : array { @@ -215,7 +206,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parseYear(string $year) : array { @@ -228,7 +218,6 @@ class Interval implements \Serializable * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStart() : \DateTime { @@ -243,7 +232,6 @@ class Interval implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStart(\DateTime $start) /* : void */ { @@ -256,7 +244,6 @@ class Interval implements \Serializable * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEnd() { @@ -271,7 +258,6 @@ class Interval implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setEnd(\DateTime $end) /* : void */ { @@ -284,7 +270,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMinute() : array { @@ -301,7 +286,6 @@ class Interval implements \Serializable * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setMinute(array $minute, int $step = 0, bool $any = false) /* : void */ { @@ -327,7 +311,6 @@ class Interval implements \Serializable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function validateTime(array $times, int $step, int $lowest, int $highest) : bool { @@ -350,7 +333,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getHour() : array { @@ -367,7 +349,6 @@ class Interval implements \Serializable * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setHour(array $hour, int $step = 0, bool $any = false) /* : void */ { @@ -388,7 +369,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDayOfMonth() : array { @@ -407,7 +387,6 @@ class Interval implements \Serializable * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDayOfMonth(array $dayOfMonth, int $step = 0, bool $any = false, bool $last = false, int $nearest = 0) /* : void */ { @@ -433,7 +412,6 @@ class Interval implements \Serializable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function validateDayOfMonth(array $array) : bool { @@ -459,7 +437,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDayOfWeek() : array { @@ -477,7 +454,6 @@ class Interval implements \Serializable * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDayOfWeek(array $dayOfWeek, int $step = 0, bool $any = false, bool $last = false) /* : void */ { @@ -502,7 +478,6 @@ class Interval implements \Serializable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function validateDayOfWeek(array $array) : bool { @@ -525,7 +500,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getMonth() : array { @@ -542,7 +516,6 @@ class Interval implements \Serializable * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setMonth(array $month, int $step = 0, bool $any = false) /* : void */ { @@ -563,7 +536,6 @@ class Interval implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getYear() : array { @@ -580,7 +552,6 @@ class Interval implements \Serializable * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setYear(array $year, int $step = 0, bool $any = false) /* : void */ { @@ -604,7 +575,6 @@ class Interval implements \Serializable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function validateYear(array $array) : bool { @@ -617,7 +587,6 @@ class Interval implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serialize() { @@ -640,7 +609,6 @@ class Interval implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serializeTime($time, $step) /* : void */ { @@ -664,7 +632,6 @@ class Interval implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serializeDayOfMonth() /* : void */ { @@ -692,7 +659,6 @@ class Interval implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serializeDayOfWeek() /* : void */ { diff --git a/Utils/TaskSchedule/InvalidTaskParameterException.php b/Utils/TaskSchedule/InvalidTaskParameterException.php index 82b262332..2f16e76fb 100644 --- a/Utils/TaskSchedule/InvalidTaskParameterException.php +++ b/Utils/TaskSchedule/InvalidTaskParameterException.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Utils\TaskSchedule; * @category System * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/Schedule.php b/Utils/TaskSchedule/Schedule.php index 9df08d3af..0e50eb08c 100644 --- a/Utils/TaskSchedule/Schedule.php +++ b/Utils/TaskSchedule/Schedule.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\TaskSchedule; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ class Schedule extends TaskAbstract implements \Serializable * @param string $cmd Command to execute * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $name, string $cmd = '') { diff --git a/Utils/TaskSchedule/SchedulerAbstract.php b/Utils/TaskSchedule/SchedulerAbstract.php index e9015b77a..d1b0f1df7 100644 --- a/Utils/TaskSchedule/SchedulerAbstract.php +++ b/Utils/TaskSchedule/SchedulerAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\System\File\PathException; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -53,7 +51,6 @@ abstract class SchedulerAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getBin() : string { @@ -68,7 +65,6 @@ abstract class SchedulerAbstract * @throws PathException * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function setBin(string $path) /* : void */ { @@ -85,7 +81,6 @@ abstract class SchedulerAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function test() : bool { diff --git a/Utils/TaskSchedule/SchedulerFactory.php b/Utils/TaskSchedule/SchedulerFactory.php index b5f990ace..3ff5b77db 100644 --- a/Utils/TaskSchedule/SchedulerFactory.php +++ b/Utils/TaskSchedule/SchedulerFactory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\System\SystemType; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -41,7 +39,6 @@ final class SchedulerFactory * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function create() : SchedulerAbstract { diff --git a/Utils/TaskSchedule/TaskAbstract.php b/Utils/TaskSchedule/TaskAbstract.php index e58dfe510..1ae256c7f 100644 --- a/Utils/TaskSchedule/TaskAbstract.php +++ b/Utils/TaskSchedule/TaskAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\TaskSchedule; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -81,7 +79,6 @@ abstract class TaskAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getId() : string { @@ -94,7 +91,6 @@ abstract class TaskAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCommand() : string { @@ -109,7 +105,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setCommand(string $command) /* : void */ { @@ -122,7 +117,6 @@ abstract class TaskAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRun() : string { @@ -137,7 +131,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setRun(string $run) /* : void */ { @@ -150,7 +143,6 @@ abstract class TaskAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStatus() : string { @@ -165,7 +157,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStatus(string $status) /* : void */ { @@ -178,7 +169,6 @@ abstract class TaskAbstract * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getNextRunTime() { @@ -193,7 +183,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setNextRunTime(\DateTime $nextRunTime) /* : void */ { @@ -206,7 +195,6 @@ abstract class TaskAbstract * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLastRuntime() { @@ -221,7 +209,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setLastRuntime(\DateTime $lastRunTime) /* : void */ { @@ -234,7 +221,6 @@ abstract class TaskAbstract * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getStart() { @@ -249,7 +235,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setStart(\DateTime $start) /* : void */ { @@ -262,7 +247,6 @@ abstract class TaskAbstract * @return \DateTime * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getEnd() { @@ -277,7 +261,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setEnd(\DateTime $end) /* : void */ { @@ -290,7 +273,6 @@ abstract class TaskAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAuthor() : string { @@ -305,7 +287,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setAuthor(string $author) /* : void */ { @@ -318,7 +299,6 @@ abstract class TaskAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getComment() : string { @@ -333,7 +313,6 @@ abstract class TaskAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setComment(string $comment) /* : void */ { @@ -346,7 +325,6 @@ abstract class TaskAbstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addResult(string $result) { diff --git a/Utils/TaskSchedule/TaskFactory.php b/Utils/TaskSchedule/TaskFactory.php index 7e44d9ba7..f3fd56f23 100644 --- a/Utils/TaskSchedule/TaskFactory.php +++ b/Utils/TaskSchedule/TaskFactory.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\System\SystemType; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -44,7 +42,6 @@ final class TaskFactory * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function create(string $id = null, string $cmd = '') : TaskAbstract { diff --git a/Utils/TaskSchedule/TaskScheduler.php b/Utils/TaskSchedule/TaskScheduler.php index d5516d32c..15cb82000 100644 --- a/Utils/TaskSchedule/TaskScheduler.php +++ b/Utils/TaskSchedule/TaskScheduler.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Validation\Base\DateTime; * @category Framework * @package phpOMS\Utils\TaskSchedule * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TestUtils.php b/Utils/TestUtils.php index 6c1949466..dda7cdd83 100644 --- a/Utils/TestUtils.php +++ b/Utils/TestUtils.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils; * @category Framework * @package phpOMS\Utils * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Barcode/Barcode.php b/Validation/Barcode/Barcode.php index b225a6c9a..c430c2488 100644 --- a/Validation/Barcode/Barcode.php +++ b/Validation/Barcode/Barcode.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/Barcode11.php b/Validation/Barcode/Barcode11.php index ea227ca97..695b20908 100644 --- a/Validation/Barcode/Barcode11.php +++ b/Validation/Barcode/Barcode11.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/Barcode128.php b/Validation/Barcode/Barcode128.php index 80cd676e8..010fb97b8 100644 --- a/Validation/Barcode/Barcode128.php +++ b/Validation/Barcode/Barcode128.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/Barcode25.php b/Validation/Barcode/Barcode25.php index b810adff5..09bf3dc07 100644 --- a/Validation/Barcode/Barcode25.php +++ b/Validation/Barcode/Barcode25.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/Barcode39.php b/Validation/Barcode/Barcode39.php index ee51dec8e..70c5f1002 100644 --- a/Validation/Barcode/Barcode39.php +++ b/Validation/Barcode/Barcode39.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/Barcode93.php b/Validation/Barcode/Barcode93.php index fa1089343..614b30bcd 100644 --- a/Validation/Barcode/Barcode93.php +++ b/Validation/Barcode/Barcode93.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/BarcodeCodebar.php b/Validation/Barcode/BarcodeCodebar.php index 24277b588..76131dc3e 100644 --- a/Validation/Barcode/BarcodeCodebar.php +++ b/Validation/Barcode/BarcodeCodebar.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/BarcodeDatamatrix.php b/Validation/Barcode/BarcodeDatamatrix.php index 578b93ba7..b62e422ec 100644 --- a/Validation/Barcode/BarcodeDatamatrix.php +++ b/Validation/Barcode/BarcodeDatamatrix.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/BarcodeEAN.php b/Validation/Barcode/BarcodeEAN.php index f3bf49e89..8952d78ae 100644 --- a/Validation/Barcode/BarcodeEAN.php +++ b/Validation/Barcode/BarcodeEAN.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/BarcodeMSI.php b/Validation/Barcode/BarcodeMSI.php index e98a1a05a..3107cd6df 100644 --- a/Validation/Barcode/BarcodeMSI.php +++ b/Validation/Barcode/BarcodeMSI.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Barcode/QrCode.php b/Validation/Barcode/QrCode.php index e59c127c3..ae122da02 100644 --- a/Validation/Barcode/QrCode.php +++ b/Validation/Barcode/QrCode.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Base/BIC.php b/Validation/Base/BIC.php index 9a6b70a4a..26d584ffa 100644 --- a/Validation/Base/BIC.php +++ b/Validation/Base/BIC.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Validation\ValidatorAbstract; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ class BIC extends ValidatorAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { diff --git a/Validation/Base/CreditCard.php b/Validation/Base/CreditCard.php index 488512f96..4c55c03d6 100644 --- a/Validation/Base/CreditCard.php +++ b/Validation/Base/CreditCard.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Validation\ValidatorAbstract; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ abstract class CreditCard extends ValidatorAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -82,7 +79,6 @@ abstract class CreditCard extends ValidatorAbstract * @return bool Returns true if the number is a valid credit card and false if it isn't. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function luhnTest(string $num) : bool { diff --git a/Validation/Base/DateTime.php b/Validation/Base/DateTime.php index c53284a51..9b10b51de 100644 --- a/Validation/Base/DateTime.php +++ b/Validation/Base/DateTime.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Validation\ValidatorAbstract; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ abstract class DateTime extends ValidatorAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { diff --git a/Validation/Base/Email.php b/Validation/Base/Email.php index 679e5a863..6091e70e1 100644 --- a/Validation/Base/Email.php +++ b/Validation/Base/Email.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Validation\ValidatorAbstract; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ class Email extends ValidatorAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { diff --git a/Validation/Base/Hostname.php b/Validation/Base/Hostname.php index 69794ae29..9421c9c5c 100644 --- a/Validation/Base/Hostname.php +++ b/Validation/Base/Hostname.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Validation\ValidatorAbstract; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ abstract class Hostname extends ValidatorAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { diff --git a/Validation/Base/Iban.php b/Validation/Base/Iban.php index 291ddc8a5..1c2a9c56b 100644 --- a/Validation/Base/Iban.php +++ b/Validation/Base/Iban.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Validation\ValidatorAbstract; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ abstract class Iban extends ValidatorAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -49,7 +46,6 @@ abstract class Iban extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isValid($value) : bool { @@ -100,7 +96,6 @@ abstract class Iban extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function validateZeros(string $iban, string $layout) : bool { @@ -129,7 +124,6 @@ abstract class Iban extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function validateNumeric(string $iban, string $layout) : bool { @@ -157,7 +151,6 @@ abstract class Iban extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function validateChecksum(string $iban) : bool { diff --git a/Validation/Base/IbanEnum.php b/Validation/Base/IbanEnum.php index 917da45e9..c6a9af503 100644 --- a/Validation/Base/IbanEnum.php +++ b/Validation/Base/IbanEnum.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Localization * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Base/IbanErrorType.php b/Validation/Base/IbanErrorType.php index e12201f89..29880dc1c 100644 --- a/Validation/Base/IbanErrorType.php +++ b/Validation/Base/IbanErrorType.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Datatypes * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Base/Ip.php b/Validation/Base/Ip.php index fdc00dfc3..6404d4b54 100644 --- a/Validation/Base/Ip.php +++ b/Validation/Base/Ip.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Validation\ValidatorAbstract; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ abstract class Ip extends ValidatorAbstract * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { diff --git a/Validation/ModelValidationTrait.php b/Validation/ModelValidationTrait.php index 4d1850cf8..6ad5b9321 100644 --- a/Validation/ModelValidationTrait.php +++ b/Validation/ModelValidationTrait.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -38,7 +37,6 @@ trait ModelValidationTrait * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setForce($var, $name) /* : void */ { @@ -60,7 +58,6 @@ trait ModelValidationTrait * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function isValid($var, $name) : bool { @@ -85,7 +82,6 @@ trait ModelValidationTrait * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function setValidation($var, $name) /* : void */ { diff --git a/Validation/Validator.php b/Validation/Validator.php index fbb2cf45f..a322b8e5c 100644 --- a/Validation/Validator.php +++ b/Validation/Validator.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -38,7 +37,6 @@ final class Validator extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isValid($var, array $constraints) : bool { @@ -63,7 +61,6 @@ final class Validator extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isType($var, $constraint) : bool { @@ -90,7 +87,6 @@ final class Validator extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function hasLength(string $var, int $min = 0, int $max = PHP_INT_MAX) : bool { @@ -112,7 +108,6 @@ final class Validator extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function contains(string $var, $substr) : bool { @@ -128,7 +123,6 @@ final class Validator extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function matches(string $var, string $pattern) : bool { @@ -145,7 +139,6 @@ final class Validator extends ValidatorAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function hasLimit($var, $min = 0, $max = PHP_INT_MAX) : bool { diff --git a/Validation/ValidatorAbstract.php b/Validation/ValidatorAbstract.php index 7a9aeac77..6f46d6693 100644 --- a/Validation/ValidatorAbstract.php +++ b/Validation/ValidatorAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Validation; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index 3e74c1f3c..4af491a32 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Validation; * @category Validation * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Version/Version.php b/Version/Version.php index 53af6b114..a8601cbb5 100644 --- a/Version/Version.php +++ b/Version/Version.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ namespace phpOMS\Version; * @category Version * @package Framework * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -37,7 +35,6 @@ class Version * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ private function __construct() { @@ -52,7 +49,6 @@ class Version * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function compare(string $ver1, string $ver2) : int { diff --git a/Views/View.php b/Views/View.php index ef8e19c70..d44a33ae1 100644 --- a/Views/View.php +++ b/Views/View.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Message\ResponseAbstract; * @category Framework * @package phpOMS/Views * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -83,7 +81,6 @@ class View extends ViewAbstract * @param ResponseAbstract $response Request * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(ApplicationAbstract $app, RequestAbstract $request, ResponseAbstract $response) { @@ -99,7 +96,6 @@ class View extends ViewAbstract * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getData(string $id) { @@ -113,7 +109,6 @@ class View extends ViewAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setData(string $id, $data) /* : void */ { @@ -128,7 +123,6 @@ class View extends ViewAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeData(string $id) : bool { @@ -148,7 +142,6 @@ class View extends ViewAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addData(string $id, $data) : bool { @@ -173,7 +166,6 @@ class View extends ViewAbstract * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function getText(string $translation, string $module = null, string $theme = null) : string { @@ -208,7 +200,6 @@ class View extends ViewAbstract * @return RequestAbstract * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRequest() : RequestAbstract { @@ -219,7 +210,6 @@ class View extends ViewAbstract * @return ResponseAbstract * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getResponse() : ResponseAbstract { diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index ffba85390..3fa68895e 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\System\File\PathException; * @category Framework * @package phpOMS/Views * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 @@ -53,7 +51,6 @@ abstract class ViewAbstract implements \Serializable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -68,7 +65,6 @@ abstract class ViewAbstract implements \Serializable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ private static function viewSort(array $a, array $b) : int { @@ -85,7 +81,6 @@ abstract class ViewAbstract implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getTemplate() : string { @@ -100,7 +95,6 @@ abstract class ViewAbstract implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setTemplate(string $template) /* : void */ { @@ -111,7 +105,6 @@ abstract class ViewAbstract implements \Serializable * @return View[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getViews() : array { @@ -124,7 +117,6 @@ abstract class ViewAbstract implements \Serializable * @return false|View * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getView($id) { @@ -143,7 +135,6 @@ abstract class ViewAbstract implements \Serializable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeView(string $id) : bool { @@ -166,7 +157,6 @@ abstract class ViewAbstract implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function editView(string $id, View $view, $order = null) /* : void */ { @@ -184,7 +174,6 @@ abstract class ViewAbstract implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) /* : void */ { @@ -203,7 +192,6 @@ abstract class ViewAbstract implements \Serializable * @return string|array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function serialize() { @@ -220,7 +208,6 @@ abstract class ViewAbstract implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function toArray() : array { @@ -243,7 +230,6 @@ abstract class ViewAbstract implements \Serializable * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function render(...$data) : string { @@ -273,7 +259,6 @@ abstract class ViewAbstract implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function unserialize($raw) { diff --git a/Views/ViewLayout.php b/Views/ViewLayout.php index 7cfc79040..d4f36f611 100644 --- a/Views/ViewLayout.php +++ b/Views/ViewLayout.php @@ -7,7 +7,6 @@ * @category TBD * @package TBD * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * @category Framework * @package phpOMS\Socket * @author OMS Development Team - * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0