From a33481a646b02e1fa4a2f2c3315bb3d1fbe695f6 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 12 Jul 2017 14:40:40 +0200 Subject: [PATCH 001/103] Create draft --- Utils/IO/Zip/Gz.php | 87 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 86 insertions(+), 1 deletion(-) diff --git a/Utils/IO/Zip/Gz.php b/Utils/IO/Zip/Gz.php index 8b1378917..cf23e9939 100644 --- a/Utils/IO/Zip/Gz.php +++ b/Utils/IO/Zip/Gz.php @@ -1 +1,86 @@ - + + * @author Dennis Eichhorn + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); +namespace phpOMS\Utils\IO\Zip; +/** + * Zip class for handling zip files. + * + * Providing basic zip support + * + * @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 + */ +class Gz implements ArchiveInterface +{ + /** + * Create zip. + * + * @param string $sources Files and directories to compress + * @param string $destination Output destination + * @param bool $overwrite Overwrite if destination is existing + * + * @return bool + * + * @since 1.0.0 + * @author Dennis Eichhorn + */ + public static function pack(string $source, string $destination, bool $overwrite = true) : bool + { + $destination = str_replace('\\', '/', realpath($destination)); + if (!$overwrite && file_exists($destination)) { + return false; + } + + if(($gz = gzopen($destination, 'w')) === false) { + return false; + } + + $src = fopen($source, 'r'); + while(!feof($src)) { + gzwrite($gz, fgets($src)); + } + + fclose($src); + + return gzclose($gz); + } + + public static function unpack(string $source, string $destination) : bool + { + $destination = str_replace('\\', '/', realpath($destination)); + if (!$overwrite && file_exists($destination)) { + return false; + } + + if(($gz = gzopen($source, 'w')) === false) { + return false; + } + + $dest = fopen($destination, 'w'); + while (!gzeof($handle)) { + fwrite($dest, gzgets($handle, 4096)); + } + + fclose($dest); + + return gzclose($gz); + } +} From 4c012c55c7dc77b065a33bd398fa0a0ec42f73d0 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 12 Jul 2017 14:43:41 +0200 Subject: [PATCH 002/103] Change reads to bytes instead of lines --- Utils/IO/Zip/Gz.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Utils/IO/Zip/Gz.php b/Utils/IO/Zip/Gz.php index cf23e9939..3be1221de 100644 --- a/Utils/IO/Zip/Gz.php +++ b/Utils/IO/Zip/Gz.php @@ -55,7 +55,7 @@ class Gz implements ArchiveInterface $src = fopen($source, 'r'); while(!feof($src)) { - gzwrite($gz, fgets($src)); + gzwrite($gz, fread($src, 4096)); } fclose($src); @@ -76,7 +76,7 @@ class Gz implements ArchiveInterface $dest = fopen($destination, 'w'); while (!gzeof($handle)) { - fwrite($dest, gzgets($handle, 4096)); + fwrite($dest, gzread($handle, 4096)); } fclose($dest); From 4523c6120d8fcbbc3ce6b282af138e37f2fa7904 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 12 Jul 2017 14:51:19 +0200 Subject: [PATCH 003/103] Update ArchiveInterface.php --- Utils/IO/Zip/ArchiveInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils/IO/Zip/ArchiveInterface.php b/Utils/IO/Zip/ArchiveInterface.php index ebfdc544a..ac4edbc05 100644 --- a/Utils/IO/Zip/ArchiveInterface.php +++ b/Utils/IO/Zip/ArchiveInterface.php @@ -40,7 +40,7 @@ interface ArchiveInterface * @since 1.0.0 * @author Dennis Eichhorn */ - public static function pack(array $sources, string $destination, bool $overwrite = true) : bool + public static function pack($sources, string $destination, bool $overwrite = true) : bool /** * Unpack archive. From 9898c478d259de3fa72a2c17c4af045ce5590612 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 12 Jul 2017 19:54:57 +0200 Subject: [PATCH 004/103] Fix duplicated function bug --- Uri/Http.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Uri/Http.php b/Uri/Http.php index 5d8de7bbf..2530fb28a 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -268,14 +268,6 @@ class Http implements UriInterface return substr_count($this->rootPath, '/') - 1; } - /** - * {@inheritdoc} - */ - public function getPathOffset() : int - { - return substr_count($this->rootPath, '/') - 1; - } - /** * {@inheritdoc} */ From ac5f327293646632eda893003c073720d26a0ac2 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 12 Jul 2017 19:55:05 +0200 Subject: [PATCH 005/103] Draft archives --- Utils/IO/Zip/ArchiveInterface.php | 4 +- Utils/IO/Zip/Gz.php | 14 ++---- Utils/IO/Zip/Tar.php | 84 +++++++++++++++++++++++++++++++ Utils/IO/Zip/TarGz.php | 61 ++++++++++++++++++++++ Utils/IO/Zip/Zip.php | 14 ++---- 5 files changed, 155 insertions(+), 22 deletions(-) diff --git a/Utils/IO/Zip/ArchiveInterface.php b/Utils/IO/Zip/ArchiveInterface.php index ac4edbc05..361a14557 100644 --- a/Utils/IO/Zip/ArchiveInterface.php +++ b/Utils/IO/Zip/ArchiveInterface.php @@ -31,7 +31,7 @@ interface ArchiveInterface /** * Create archive. * - * @param string[] $sources Files and directories to compress + * @param string $sources Files and directories to compress * @param string $destination Output destination * @param bool $overwrite Overwrite if destination is existing * @@ -40,7 +40,7 @@ interface ArchiveInterface * @since 1.0.0 * @author Dennis Eichhorn */ - public static function pack($sources, string $destination, bool $overwrite = true) : bool + public static function pack($sources, string $destination, bool $overwrite = true) : bool; /** * Unpack archive. diff --git a/Utils/IO/Zip/Gz.php b/Utils/IO/Zip/Gz.php index 3be1221de..330e1383f 100644 --- a/Utils/IO/Zip/Gz.php +++ b/Utils/IO/Zip/Gz.php @@ -31,16 +31,7 @@ namespace phpOMS\Utils\IO\Zip; class Gz implements ArchiveInterface { /** - * Create zip. - * - * @param string $sources Files and directories to compress - * @param string $destination Output destination - * @param bool $overwrite Overwrite if destination is existing - * - * @return bool - * - * @since 1.0.0 - * @author Dennis Eichhorn + * {@inheritdoc} */ public static function pack(string $source, string $destination, bool $overwrite = true) : bool { @@ -63,6 +54,9 @@ class Gz implements ArchiveInterface return gzclose($gz); } + /** + * {@inheritdoc} + */ public static function unpack(string $source, string $destination) : bool { $destination = str_replace('\\', '/', realpath($destination)); diff --git a/Utils/IO/Zip/Tar.php b/Utils/IO/Zip/Tar.php index 8b1378917..69834dc6c 100644 --- a/Utils/IO/Zip/Tar.php +++ b/Utils/IO/Zip/Tar.php @@ -1 +1,85 @@ + + * @author Dennis Eichhorn + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); +namespace phpOMS\Utils\IO\Zip; +/** + * Zip class for handling zip files. + * + * Providing basic zip support + * + * @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 + */ +class Tar implements ArchiveInterface +{ + /** + * {@inheritdoc} + */ + public static function pack(array $source, string $destination, bool $overwrite = true) : bool + { + $destination = str_replace('\\', '/', realpath($destination)); + if (!$overwrite && file_exists($destination)) { + return false; + } + + foreach ($sources as $source) { + $source = str_replace('\\', '/', realpath($source)); + + if (!file_exists($source)) { + continue; + } + + if (is_dir($source)) { + $files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($source), \RecursiveIteratorIterator::SELF_FIRST); + + foreach ($files as $file) { + $file = str_replace('\\', '/', $file); + + /* Ignore . and .. */ + if (in_array(mb_substr($file, mb_strrpos($file, '/') + 1), ['.', '..'])) { + continue; + } + + $file = realpath($file); + + if (is_dir($file)) { + // todo: do work here + } elseif (is_file($file)) { + // todo: do work here + } + } + } elseif (is_file($source)) { + // todo: do work here + } + } + + fwrite($tar, pack('a1024', '')); + } + + /** + * {@inheritdoc} + */ + public static function unpack(string $source, string $destination) : bool + { + + } +} diff --git a/Utils/IO/Zip/TarGz.php b/Utils/IO/Zip/TarGz.php index 8b1378917..81f3e27ae 100644 --- a/Utils/IO/Zip/TarGz.php +++ b/Utils/IO/Zip/TarGz.php @@ -1 +1,62 @@ + + * @author Dennis Eichhorn + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); +namespace phpOMS\Utils\IO\Zip; +/** + * Zip class for handling zip files. + * + * Providing basic zip support + * + * @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 + */ +class TarGz implements ArchiveInterface +{ + /** + * {@inheritdoc} + */ + public static function pack(array $source, string $destination, bool $overwrite = true) : bool + { + if(!Tar::pack($source, $destination . '.tmp', $overwrite)) { + return false; + } + $pack = Gz::pack($destination . '.tmp', $destination, $overwrite); + unlink($destination . '.tmp'); + + return $pack; + } + + /** + * {@inheritdoc} + */ + public static function unpack(string $source, string $destination) : bool + { + if(!Gz::unpack($source, $destination . '.tmp')) { + return false; + } + + $unpacked = Tar::unpack($destination . '.tmp', $destination); + unlink($destination . '.tmp'); + + return $unpacked; + } +} diff --git a/Utils/IO/Zip/Zip.php b/Utils/IO/Zip/Zip.php index f13b17fa0..7cb6a7f68 100644 --- a/Utils/IO/Zip/Zip.php +++ b/Utils/IO/Zip/Zip.php @@ -34,16 +34,7 @@ class Zip implements ArchiveInterface { /** - * Create zip. - * - * @param string[] $sources Files and directories to compress - * @param string $destination Output destination - * @param bool $overwrite Overwrite if destination is existing - * - * @return bool - * - * @since 1.0.0 - * @author Dennis Eichhorn + * {@inheritdoc} */ public static function pack(array $sources, string $destination, bool $overwrite = true) : bool { @@ -92,6 +83,9 @@ class Zip implements ArchiveInterface return $zip->close(); } + /** + * {@inheritdoc} + */ public static function unpack(string $source, string $destination) : bool { $destination = str_replace('\\', '/', realpath($destination)); From c8605e4f96a5e62480c10bfc3b17e6dace6777cc Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 13 Jul 2017 10:49:38 +0200 Subject: [PATCH 006/103] Create AssignmentProblem.php --- Math/Optimization/AssignmentProblem.php | 1 + 1 file changed, 1 insertion(+) create mode 100644 Math/Optimization/AssignmentProblem.php diff --git a/Math/Optimization/AssignmentProblem.php b/Math/Optimization/AssignmentProblem.php new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/Math/Optimization/AssignmentProblem.php @@ -0,0 +1 @@ + From 521cd5366e656df2f32e953ce54d9c0e67717691 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 13 Jul 2017 10:49:50 +0200 Subject: [PATCH 007/103] Create TransportationProblem.php --- Math/Optimization/TransportationProblem.php | 1 + 1 file changed, 1 insertion(+) create mode 100644 Math/Optimization/TransportationProblem.php diff --git a/Math/Optimization/TransportationProblem.php b/Math/Optimization/TransportationProblem.php new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/Math/Optimization/TransportationProblem.php @@ -0,0 +1 @@ + From f0d0fccf6e1e91f902404d38c37e2912f1502c79 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 13 Jul 2017 13:01:30 +0200 Subject: [PATCH 008/103] Create MarketShareEstimation.php --- Business/Sales/MarketShareEstimation.php | 49 ++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 Business/Sales/MarketShareEstimation.php diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php new file mode 100644 index 000000000..e41c89b58 --- /dev/null +++ b/Business/Sales/MarketShareEstimation.php @@ -0,0 +1,49 @@ + + * @author Dennis Eichhorn + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); +namespace phpOMS\Business\Sales; +/** + * Market share calculations + * + * @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 + */ +class MarketShareEstimation { + public static function getRankFromMarketShare(int $participants, float $marketShare, float $modifier = 1.0) : int + { + $sum = 0.0; + for($i = 0; $i < $participants; $i++) { + $sum += 1 / pow($i+1, $modifier); + } + + return (int) round(pow(1 / ($marketShare * $sum); 1 / $modifier)); + } + + public static function getMarketShareFromRank(int $participants, int $rank, float $modifier = 1.0) : float + { + $sum = 0.0; + for($i = 0; $i < $participants; $i++) { + $sum += 1 / pow($i+1, $modifier); + } + + return (1 / pow($rank, $modifier)) / $sum; + } +} From ffa8d39031135d67c64d0fe5b6f6abe4034f0604 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 18 Jul 2017 15:39:18 +0200 Subject: [PATCH 009/103] Create NaiveBayesFilter draft --- Math/Stochastic/NaiveBayesFilter.php | 63 ++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 Math/Stochastic/NaiveBayesFilter.php diff --git a/Math/Stochastic/NaiveBayesFilter.php b/Math/Stochastic/NaiveBayesFilter.php new file mode 100644 index 000000000..ebb0d319d --- /dev/null +++ b/Math/Stochastic/NaiveBayesFilter.php @@ -0,0 +1,63 @@ + + * @author Dennis Eichhorn + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); +namespace phpOMS\Math\Stochastic; +/** + * Bernulli 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 + */ +class NaiveBayesFilter +{ + private $dict = []; + + public function __construct() + { + } + + public function trainMatch($matched) \* : void *\ + { + } + + public function trainMismatch($mismatch) \* : void *\ + { + } + + public function match($toMatch) : float + { + $normalizedDict = $this->normalizeDictionary(); + + $n = 0.0; + foreach($toMatch as $element) { + if(isset($normalizedDict[$element])) { + $n += log(1-$normalizedDict[$element]['match'] / $normalizedDict[$element]['total']) - log($normalizedDict[$element]['match'] / $normalizedDict[$element]['total']); + } + } + + return 1 / (1+exp(M_E, $n)); + } + + private function normalizeDictionary() : array + { + return $this->dict; + } +} From 1c72b75fc314ba23f395794ad27716b8971a4c6c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 18 Jul 2017 15:50:06 +0200 Subject: [PATCH 010/103] Optimize function --- Math/Functions/Functions.php | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Math/Functions/Functions.php b/Math/Functions/Functions.php index a4381130a..c8332f253 100644 --- a/Math/Functions/Functions.php +++ b/Math/Functions/Functions.php @@ -239,11 +239,7 @@ class Functions */ public static function isOdd($a) : bool { - if ($a & 1) { - return true; - } - - return false; + return $a & 1; } /** @@ -258,11 +254,7 @@ class Functions */ public static function isEven($a) : bool { - if ($a & 1) { - return false; - } - - return true; + return !($a & 1) } /** From 77a1dae3e48f62e4567204f3a9b2b33cb319f3b3 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 18 Jul 2017 19:57:01 +0200 Subject: [PATCH 011/103] Fix website link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e1dd432a1..a900bbcb8 100644 --- a/README.md +++ b/README.md @@ -35,4 +35,4 @@ Are you interested in joining us? Feel free to contact us at spl1nes.com@gmail.c * Developers: 1 * Languages: PHP, JS, Java, HTML, CSS * Dependencies: d3.js, THREE.js, tcpdf, PhpExcel -* Website: [http://orange-management.de/Website](http://orange-management.de/Website) +* Website: [http://website.orange-management.de](http://website.orange-management.de) From 97afd6a6915d9dffb91dc6e04feb2adade900c9e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 18 Jul 2017 21:32:20 +0200 Subject: [PATCH 012/103] Fix line ending bug --- Math/Functions/Functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Math/Functions/Functions.php b/Math/Functions/Functions.php index c8332f253..9de4215b6 100644 --- a/Math/Functions/Functions.php +++ b/Math/Functions/Functions.php @@ -254,7 +254,7 @@ class Functions */ public static function isEven($a) : bool { - return !($a & 1) + return !($a & 1); } /** From 6931b5e6ec96c63026b8f977c8171433a0340bfe Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 19 Jul 2017 11:22:31 +0200 Subject: [PATCH 013/103] Create test utils --- Utils/TestUtils.php | 76 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 Utils/TestUtils.php diff --git a/Utils/TestUtils.php b/Utils/TestUtils.php new file mode 100644 index 000000000..37b1ea2f1 --- /dev/null +++ b/Utils/TestUtils.php @@ -0,0 +1,76 @@ + + * @author Dennis Eichhorn + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); +namespace phpOMS\Utils; +/** + * Array 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 + */ +class TestUtils +{ + public static function setMember($obj, $name, $value) : bool + { + $reflectionClass = new \ReflectionClass(get_class($obj)); + + if(!$reflectionClass->hasProperty($name)) { + return false; + } + + $reflectionProperty = $reflectionClass->getProperty($name); + + if (!($accessible = $reflectionProperty->isPublic())) { + $reflectionProperty->setAccessible(true); + } + + $reflectionProperty->setValue($obj, $value); + + if (!$accessible) { + $reflectionProperty->setAccessible(false); + } + + return true; + } + + public static function getMember($obj, $name) + { + $reflectionClass = new \ReflectionClass(get_class($obj)); + + if(!$reflectionClass->hasProperty($name)) { + return null; + } + + $reflectionProperty = $reflectionClass->getProperty($name); + + if (!($accessible = $reflectionProperty->isPublic())) { + $reflectionProperty->setAccessible(true); + } + + $value = $reflectionProperty->getValue($obj); + + if (!$accessible) { + $reflectionProperty->setAccessible(false); + } + + return $value; + } +} From d428dbdd04e4ac395a6cef66ab90fa388916582b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 19 Jul 2017 11:23:46 +0200 Subject: [PATCH 014/103] Update TestUtils.php --- Utils/TestUtils.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Utils/TestUtils.php b/Utils/TestUtils.php index 37b1ea2f1..6c1949466 100644 --- a/Utils/TestUtils.php +++ b/Utils/TestUtils.php @@ -16,7 +16,9 @@ declare(strict_types=1); namespace phpOMS\Utils; /** - * Array utils. + * Test utils. + * + * Only for testing purposes. MUST NOT be used for other purposes. * * @category Framework * @package phpOMS\Utils From ff3d253588096c65597f38b614139191c22c9372 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 20 Jul 2017 18:10:26 +0200 Subject: [PATCH 015/103] Remove @author docblock --- Account/Account.php | 26 --------- Account/AccountManager.php | 7 --- Account/AccountStatus.php | 2 - Account/AccountType.php | 2 - Account/Group.php | 12 ---- Account/GroupStatus.php | 2 - Account/NullAccount.php | 2 - Algorithm/AlgorithmType.php | 2 - Algorithm/Knappsack/Backpack.php | 2 - Algorithm/Knappsack/ItemInterface.php | 2 - ApplicationAbstract.php | 2 - Asset/AssetManager.php | 7 --- Asset/AssetType.php | 2 - Auth/Auth.php | 5 -- Auth/LoginReturnType.php | 2 - AutoloadException.php | 3 - Autoloader.php | 4 -- Business/Marketing/NetPromoterScore.php | 5 -- Business/Sales/MarketShareEstimation.php | 2 - Config/OptionsInterface.php | 6 -- Config/OptionsTrait.php | 1 - Config/SettingsAbstract.php | 4 -- Console/CommandManager.php | 2 - Contract/ArrayableInterface.php | 3 - Contract/RenderableInterface.php | 3 - DataStorage/Cache/CacheFactory.php | 4 -- DataStorage/Cache/CacheInterface.php | 12 ---- DataStorage/Cache/CachePool.php | 7 --- DataStorage/Cache/CacheStatus.php | 2 - DataStorage/Cache/CacheType.php | 2 - DataStorage/Cache/FileCache.php | 7 --- DataStorage/Cache/MemCache.php | 6 -- DataStorage/Cache/NullCache.php | 2 - DataStorage/Cache/RedisCache.php | 2 - DataStorage/Cache/WinCache.php | 2 - DataStorage/Cookie/CookieJar.php | 9 --- DataStorage/DataMapperInterface.php | 11 ---- DataStorage/Database/BuilderAbstract.php | 5 -- .../Connection/ConnectionAbstract.php | 4 -- .../Connection/ConnectionException.php | 1 - .../Database/Connection/ConnectionFactory.php | 4 -- .../Connection/ConnectionInterface.php | 8 --- .../Database/Connection/MysqlConnection.php | 3 - .../Connection/PostgresConnection.php | 1 - .../Database/Connection/SQLiteConnection.php | 3 - .../Connection/SqlServerConnection.php | 3 - .../Database/Connector/MysqlConnector.php | 1 - .../Database/Connector/PostgresConnector.php | 1 - .../Database/Connector/SQLiteConnector.php | 1 - .../Database/Connector/SqlServerConnector.php | 1 - DataStorage/Database/DataMapperAbstract.php | 51 ----------------- .../Database/DatabaseExceptionFactory.php | 4 -- DataStorage/Database/DatabasePool.php | 7 --- DataStorage/Database/DatabaseStatus.php | 2 - DataStorage/Database/DatabaseType.php | 2 - DataStorage/Database/GrammarAbstract.php | 9 --- DataStorage/Database/Query/Builder.php | 57 ------------------- DataStorage/Database/Query/Column.php | 4 -- DataStorage/Database/Query/Expression.php | 1 - .../Database/Query/Grammar/Grammar.php | 15 ----- .../Query/Grammar/GrammarInterface.php | 1 - .../Query/Grammar/MicrosoftGrammar.php | 3 - .../Database/Query/Grammar/MysqlGrammar.php | 3 - .../Database/Query/Grammar/OracleGrammar.php | 3 - .../Query/Grammar/PostgresGrammar.php | 3 - .../Database/Query/Grammar/SQLiteGrammar.php | 3 - DataStorage/Database/Query/JoinType.php | 2 - DataStorage/Database/Query/QueryType.php | 2 - DataStorage/Database/Query/Where.php | 2 - DataStorage/Database/RelationType.php | 2 - DataStorage/Database/Schema/Builder.php | 4 -- .../Schema/Exception/TableException.php | 4 -- .../Database/Schema/Grammar/Grammar.php | 4 -- .../Schema/Grammar/GrammarInterface.php | 1 - .../Database/Schema/Grammar/MysqlGrammar.php | 4 -- .../Schema/Grammar/PostgresGrammar.php | 1 - .../Database/Schema/Grammar/SQLiteGrammar.php | 1 - .../Schema/Grammar/SqlServerGrammar.php | 1 - DataStorage/Database/Schema/QueryType.php | 2 - DataStorage/LockException.php | 3 - DataStorage/Session/ConsoleSession.php | 3 - DataStorage/Session/HttpSession.php | 7 --- DataStorage/Session/SessionInterface.php | 8 --- DataStorage/Session/SocketSession.php | 3 - DataStorage/Web/Builder.php | 2 - Datatypes/Address.php | 9 --- Datatypes/AddressType.php | 2 - Datatypes/Enum.php | 9 --- Datatypes/EnumArray.php | 6 -- Datatypes/ExactFloat.php | 1 - Datatypes/Exception/InvalidEnumName.php | 3 - Datatypes/Exception/InvalidEnumValue.php | 3 - Datatypes/Iban.php | 19 ------- Datatypes/Location.php | 17 ------ Datatypes/NullLocation.php | 2 - Datatypes/PhoneType.php | 2 - Datatypes/SmartDateTime.php | 11 ---- Dispatcher/Dispatcher.php | 9 --- Event/EventManager.php | 4 -- Html/TagType.php | 2 - Localization/ISO3166CharEnum.php | 2 - Localization/ISO3166NameEnum.php | 2 - Localization/ISO3166NumEnum.php | 2 - Localization/ISO3166TwoEnum.php | 2 - Localization/ISO4217CharEnum.php | 2 - Localization/ISO4217DecimalEnum.php | 2 - Localization/ISO4217Enum.php | 2 - Localization/ISO4217NumEnum.php | 2 - Localization/ISO4217SubUnitEnum.php | 2 - Localization/ISO4217SymbolEnum.php | 2 - Localization/ISO639Enum.php | 2 - Localization/ISO639x1Enum.php | 2 - Localization/ISO639x2Enum.php | 2 - Localization/ISO8601EnumArray.php | 2 - Localization/L11nManager.php | 8 --- Localization/Localization.php | 21 ------- Localization/Money.php | 18 ------ Localization/NullLocalization.php | 2 - Localization/PhoneEnum.php | 2 - Localization/TimeZoneEnumArray.php | 2 - Log/FileLogger.php | 5 -- Log/LogLevel.php | 2 - Log/LoggerInterface.php | 2 - Math/Differential/FiniteDifference.php | 5 -- Math/Finance/Depreciation.php | 1 - Math/Finance/FinanceFormulas.php | 2 - Math/Finance/Forecasting/AR.php | 1 - Math/Finance/Forecasting/ARCH.php | 1 - Math/Finance/Forecasting/ARFIMA.php | 1 - Math/Finance/Forecasting/ARIMA.php | 1 - Math/Finance/Forecasting/ARMA.php | 1 - .../Forecasting/ClassicalDecomposition.php | 9 --- .../ExponentialSmoothing.php | 1 - .../ExponentialSmoothing/SeasonalType.php | 2 - .../ExponentialSmoothing/TrendType.php | 2 - Math/Finance/Forecasting/GARCH.php | 1 - Math/Finance/Forecasting/MA.php | 1 - Math/Finance/Forecasting/NAR.php | 1 - Math/Finance/Forecasting/NMA.php | 1 - Math/Finance/Forecasting/SARIMA.php | 1 - Math/Finance/Forecasting/SmoothingType.php | 2 - Math/Finance/Loan.php | 2 - Math/Finance/Lorenzkurve.php | 2 - Math/Finance/StockBonds.php | 2 - Math/Functions/Fibunacci.php | 5 -- Math/Functions/Functions.php | 12 ---- Math/Geometry/ConvexHull/MonotoneChain.php | 5 -- Math/Integral/Gauss.php | 1 - Math/Matrix/Cholesky.php | 1 - Math/Matrix/DimensionException.php | 3 - Math/Matrix/IdentityMatrix.php | 3 - Math/Matrix/InverseType.php | 2 - Math/Matrix/Matrix.php | 26 --------- Math/Matrix/Vector.php | 3 - Math/Number/Complex.php | 1 - Math/Number/Integer.php | 3 - Math/Number/Irrational.php | 1 - Math/Number/Natural.php | 3 - Math/Number/NumberType.php | 2 - Math/Number/Numbers.php | 2 - Math/Number/OperationInterface.php | 8 --- Math/Number/Prime.php | 2 - Math/Number/Rational.php | 1 - Math/Number/Real.php | 1 - .../CubicSplineInterpolation.php | 2 - .../Interpolation/LinearInterpolation.php | 2 - .../Interpolation/PolynomialInterpolation.php | 2 - .../GeneticAlgorithmInterface.php | 2 - Math/Optimization/Graph/Dijkstra.php | 1 - Math/Optimization/Graph/EdgeInterface.php | 7 --- Math/Optimization/Graph/FloydWarshall.php | 1 - Math/Optimization/Graph/Graph.php | 13 ----- Math/Optimization/Graph/NullEdge.php | 2 - Math/Optimization/Graph/NullVertice.php | 2 - Math/Optimization/Graph/VerticeInterface.php | 5 -- Math/Optimization/Knappsack/Backpack.php | 1 - Math/Optimization/Knappsack/BruteForce.php | 1 - Math/Optimization/Knappsack/GA.php | 1 - Math/Optimization/Knappsack/Item.php | 1 - Math/Optimization/Knappsack/ItemPool.php | 1 - Math/Optimization/Knappsack/Population.php | 1 - .../ShiftScheduling/BruteForce.php | 1 - Math/Optimization/ShiftScheduling/GA.php | 1 - .../ShiftScheduling/Population.php | 1 - Math/Optimization/ShiftScheduling/Workday.php | 1 - Math/Optimization/ShiftScheduling/Worker.php | 1 - .../ShiftScheduling/WorkerPool.php | 1 - Math/Optimization/TSP/BruteForce.php | 5 -- Math/Optimization/TSP/City.php | 8 --- Math/Optimization/TSP/CityPool.php | 8 --- Math/Optimization/TSP/GA.php | 7 --- Math/Optimization/TSP/Population.php | 10 ---- Math/Optimization/TSP/Tour.php | 10 ---- Math/Parser/Evaluator.php | 3 - Math/Shape/D2/Circle.php | 6 -- Math/Shape/D2/D2ShapeInterface.php | 2 - Math/Shape/D2/Ellipse.php | 4 -- Math/Shape/D2/Polygon.php | 9 --- Math/Shape/D2/Quadrilateral.php | 1 - Math/Shape/D2/Rectangle.php | 5 -- Math/Shape/D2/Trapezoid.php | 9 --- Math/Shape/D2/Triangle.php | 5 -- Math/Shape/D3/Cone.php | 6 -- Math/Shape/D3/Cuboid.php | 4 -- Math/Shape/D3/Cylinder.php | 5 -- Math/Shape/D3/D3ShapeInterface.php | 2 - Math/Shape/D3/Prism.php | 1 - Math/Shape/D3/RectangularPyramid.php | 5 -- Math/Shape/D3/Sphere.php | 14 ----- Math/Shape/D3/Tetrahedron.php | 5 -- Math/Shape/ShapeInterface.php | 2 - Math/Statistic/Average.php | 15 ----- Math/Statistic/Basic.php | 3 - Math/Statistic/Correlation.php | 6 -- Math/Statistic/Forecast/Error.php | 25 -------- .../Forecast/ForecastIntervalMultiplier.php | 2 - Math/Statistic/Forecast/Forecasts.php | 3 - .../Regression/LevelLevelRegression.php | 2 - .../Regression/LevelLogRegression.php | 2 - .../Regression/LogLevelRegression.php | 2 - .../Forecast/Regression/LogLogRegression.php | 2 - .../Regression/MultipleLinearRegression.php | 1 - .../Regression/RegressionAbstract.php | 6 -- Math/Statistic/MeasureOfDispersion.php | 11 ---- .../Distribution/BernoulliDistribution.php | 11 ---- .../Distribution/BetaDistribution.php | 1 - .../Distribution/BinomialDistribution.php | 12 ---- .../Distribution/CauchyDistribution.php | 6 -- .../Distribution/ChiSquaredDistribution.php | 12 ---- .../Distribution/ExponentialDistribution.php | 11 ---- .../Stochastic/Distribution/FDistribution.php | 1 - .../Distribution/GammaDistribution.php | 1 - .../Distribution/GeometricDistribution.php | 11 ---- .../HypergeometricDistribution.php | 1 - .../Distribution/LaplaceDistribution.php | 11 ---- .../Distribution/LogDistribution.php | 1 - .../Distribution/LogNormalDistribution.php | 1 - .../Distribution/LogisticDistribution.php | 1 - .../Distribution/NormalDistribution.php | 11 ---- .../Distribution/ParetoDistribution.php | 1 - .../Distribution/PoissonDistribution.php | 12 ---- .../Stochastic/Distribution/TDistribution.php | 1 - .../UniformDistributionContinuous.php | 11 ---- .../UniformDistributionDiscrete.php | 10 ---- .../Distribution/WeibullDistribution.php | 1 - Math/Stochastic/NaiveBayesFilter.php | 2 - Message/HeaderAbstract.php | 8 --- Message/Http/BrowserType.php | 2 - Message/Http/Header.php | 14 ----- Message/Http/OSType.php | 2 - Message/Http/Request.php | 19 ------- Message/Http/RequestMethod.php | 2 - Message/Http/RequestStatus.php | 2 - Message/Http/Response.php | 7 --- Message/Http/Rest.php | 2 - Message/Mail/Imap.php | 22 ------- Message/Mail/Mail.php | 6 -- Message/Mail/MailType.php | 2 - Message/Mail/OAuth.php | 1 - Message/Mail/Pop3.php | 1 - Message/Mail/Smtp.php | 1 - Message/MessageInterface.php | 7 --- Message/RequestAbstract.php | 14 ----- Message/RequestSource.php | 2 - Message/ResponseAbstract.php | 7 --- Message/ResponseType.php | 2 - Message/Socket/Request.php | 1 - Message/Socket/Response.php | 1 - Message/UploadedFileInterface.php | 8 --- Model/Html/Head.php | 17 ------ Model/Html/Meta.php | 12 ---- Module/ActivateAbstract.php | 4 -- Module/ConsoleInterface.php | 3 - Module/DeactivateAbstract.php | 4 -- Module/InfoManager.php | 2 - Module/InstallerAbstract.php | 7 --- Module/ModuleAbstract.php | 5 -- Module/ModuleFactory.php | 6 -- Module/ModuleManager.php | 3 - Module/NullModule.php | 2 - Module/SocketInterface.php | 3 - Module/UninstallAbstract.php | 3 - Module/UpdateAbstract.php | 3 - Module/WebInterface.php | 2 - Pattern/Mediator.php | 6 -- Pattern/Multition.php | 3 - Pattern/Observer.php | 3 - Pattern/Singleton.php | 4 -- Pattern/Subject.php | 5 -- Router/RouteVerb.php | 2 - Router/Router.php | 7 --- Security/Encryption/Encryption.php | 2 - Socket/Client/Client.php | 4 -- Socket/Client/ClientConnection.php | 2 - Socket/Client/NullClientConnection.php | 2 - Socket/CommandManager.php | 2 - Socket/Packets/Header.php | 11 ---- Socket/Packets/PacketAbstract.php | 2 - Socket/Packets/PacketManager.php | 4 -- Socket/Packets/PacketType.php | 2 - Socket/Server/ClientManager.php | 1 - Socket/Server/Server.php | 5 -- Socket/SocketAbstract.php | 3 - Socket/SocketInterface.php | 2 - Socket/SocketType.php | 2 - Stdlib/Collection/Collection.php | 13 ----- Stdlib/Graph/BinaryTree.php | 10 ---- Stdlib/Graph/Edge.php | 2 - Stdlib/Graph/Graph.php | 26 --------- Stdlib/Graph/Node.php | 2 - Stdlib/Graph/Tree.php | 12 ---- Stdlib/Map/KeyType.php | 2 - Stdlib/Map/MultiMap.php | 3 - Stdlib/Map/OrderType.php | 2 - Stdlib/Queue/PriorityMode.php | 2 - Stdlib/Queue/PriorityQueue.php | 11 ---- System/File/ContainerInterface.php | 30 ---------- System/File/ContentPutMode.php | 2 - System/File/DirectoryInterface.php | 5 -- System/File/ExtensionType.php | 2 - System/File/FileInterface.php | 14 ----- System/File/FileUtils.php | 2 - System/File/Ftp/Directory.php | 2 - System/File/Ftp/File.php | 15 ----- System/File/Ftp/FtpStorage.php | 2 - System/File/Local/Directory.php | 4 -- System/File/Local/File.php | 7 --- System/File/Local/FileAbstract.php | 3 - System/File/Local/LocalStorage.php | 2 - System/File/PathException.php | 3 - System/File/PermissionException.php | 3 - System/File/Storage.php | 5 -- System/File/StorageAbstract.php | 5 -- System/MimeType.php | 2 - System/OperatingSystem.php | 3 - System/SystemType.php | 2 - System/SystemUtils.php | 3 - UnhandledHandler.php | 4 -- Uri/Http.php | 7 --- Uri/InvalidUriException.php | 3 - Uri/UriFactory.php | 11 ---- Uri/UriInterface.php | 16 ------ Uri/UriScheme.php | 2 - Utils/ArrayUtils.php | 12 ---- Utils/Barcode/Aztec.php | 2 - Utils/Barcode/C128Abstract.php | 2 - Utils/Barcode/C128a.php | 2 - Utils/Barcode/C128b.php | 2 - Utils/Barcode/C128c.php | 2 - Utils/Barcode/C25.php | 2 - Utils/Barcode/C39.php | 2 - Utils/Barcode/Codebar.php | 2 - Utils/Barcode/Datamatrix.php | 2 - Utils/Barcode/HIBCC.php | 2 - Utils/Barcode/OrientationType.php | 2 - Utils/Barcode/QR.php | 2 - Utils/ColorUtils.php | 4 -- Utils/Compression/CompressionInterface.php | 4 -- Utils/Compression/LZW.php | 2 - Utils/Converter/AngleType.php | 2 - Utils/Converter/AreaType.php | 2 - Utils/Converter/Currency.php | 8 --- Utils/Converter/EnergyPowerType.php | 2 - Utils/Converter/File.php | 5 -- Utils/Converter/FileSizeType.php | 2 - Utils/Converter/Ip.php | 2 - Utils/Converter/LengthType.php | 2 - Utils/Converter/Measurement.php | 13 ----- Utils/Converter/Numeric.php | 8 --- Utils/Converter/PressureType.php | 2 - Utils/Converter/SpeedType.php | 2 - Utils/Converter/TemperatureType.php | 2 - Utils/Converter/TimeType.php | 2 - Utils/Converter/VolumeType.php | 2 - Utils/Converter/WeightType.php | 2 - Utils/EDI/AnsiX12/EDIAbstract.php | 2 - Utils/EDI/AnsiX12/FunctionalGroupHeader.php | 2 - Utils/EDI/AnsiX12/Header.php | 2 - .../EDI/AnsiX12/InterchangeControlHeader.php | 2 - .../AnsiX12/Purchase/PurchaseOrder/EDI850.php | 2 - .../Purchase/PurchaseOrder/EDI850Detail.php | 2 - .../Purchase/PurchaseOrder/EDI850Heading.php | 2 - .../Purchase/PurchaseOrder/EDI850Summary.php | 2 - .../PurchaseOrder/TransactionSetHeader.php | 2 - Utils/Encoding/Caesar.php | 2 - Utils/Encoding/EncodingInterface.php | 4 -- Utils/Encoding/Gray.php | 2 - Utils/Encoding/Huffman/Dictionary.php | 8 --- Utils/Encoding/Huffman/Huffman.php | 7 --- Utils/Encoding/XorEncoding.php | 2 - Utils/Excel/Excel.php | 1 - Utils/Git/Author.php | 11 ---- Utils/Git/Branch.php | 5 -- Utils/Git/Commit.php | 20 ------- Utils/Git/Git.php | 5 -- Utils/Git/Repository.php | 39 ------------- Utils/Git/Tag.php | 6 -- Utils/IO/Csv/CsvDatabaseMapper.php | 1 - Utils/IO/Csv/CsvInterface.php | 1 - Utils/IO/Csv/CsvSettings.php | 1 - Utils/IO/Excel/ExcelDatabaseMapper.php | 1 - Utils/IO/Excel/ExcelInterface.php | 4 -- Utils/IO/ExchangeInterface.php | 2 - Utils/IO/IODatabaseMapper.php | 1 - Utils/IO/Json/InvalidJsonException.php | 3 - Utils/IO/Json/JsonInterface.php | 4 -- Utils/IO/Pdf/PdfInterface.php | 3 - Utils/IO/Zip/ArchiveInterface.php | 4 -- Utils/IO/Zip/Gz.php | 2 - Utils/IO/Zip/Tar.php | 2 - Utils/IO/Zip/TarGz.php | 2 - Utils/IO/Zip/Zip.php | 2 - Utils/ImageUtils.php | 3 - Utils/JobQueue/Job.php | 2 - Utils/JobQueue/JobQueue.php | 2 - Utils/JsonBuilder.php | 2 - Utils/PDF/Pdf.php | 1 - Utils/Parser/LaTex/Expressions/Product.php | 1 - Utils/Parser/LaTex/Expressions/Sum.php | 1 - .../Parser/LaTex/Expressions/Trigonometry.php | 1 - Utils/Parser/LaTex/LaTexParser.php | 1 - Utils/Parser/LaTex/Types/Interval.php | 1 - Utils/Parser/LaTex/Types/MathFunction.php | 1 - Utils/Parser/LaTex/Types/Variable.php | 1 - Utils/Parser/Markdown/Markdown.php | 2 - Utils/Parser/Php/ArrayParser.php | 3 - Utils/Parser/Php/ClassParser.php | 35 ------------ Utils/Parser/Php/ClassType.php | 2 - Utils/Parser/Php/FunctionParser.php | 21 ------- Utils/Parser/Php/MemberParser.php | 13 ----- Utils/Parser/Php/Visibility.php | 2 - Utils/Permutation.php | 6 -- Utils/RnG/Address.php | 1 - Utils/RnG/ArrayRandomize.php | 4 -- Utils/RnG/City.php | 1 - Utils/RnG/DateTime.php | 3 - Utils/RnG/DistributionType.php | 2 - Utils/RnG/Email.php | 1 - Utils/RnG/File.php | 3 - Utils/RnG/Iban.php | 1 - Utils/RnG/LinearCongruentialGenerator.php | 4 -- Utils/RnG/Name.php | 3 - Utils/RnG/Numeric.php | 1 - Utils/RnG/Phone.php | 3 - Utils/RnG/PostalZip.php | 1 - Utils/RnG/StringUtils.php | 3 - Utils/RnG/Text.php | 9 --- Utils/StringUtils.php | 3 - Utils/TaskSchedule/Cron.php | 2 - Utils/TaskSchedule/CronJob.php | 6 -- Utils/TaskSchedule/Interval.php | 34 ----------- .../InvalidTaskParameterException.php | 2 - Utils/TaskSchedule/Schedule.php | 3 - Utils/TaskSchedule/SchedulerAbstract.php | 5 -- Utils/TaskSchedule/SchedulerFactory.php | 3 - Utils/TaskSchedule/TaskAbstract.php | 22 ------- Utils/TaskSchedule/TaskFactory.php | 3 - Utils/TaskSchedule/TaskScheduler.php | 2 - Utils/TestUtils.php | 2 - Validation/Barcode/Barcode.php | 1 - Validation/Barcode/Barcode11.php | 1 - Validation/Barcode/Barcode128.php | 1 - Validation/Barcode/Barcode25.php | 1 - Validation/Barcode/Barcode39.php | 1 - Validation/Barcode/Barcode93.php | 1 - Validation/Barcode/BarcodeCodebar.php | 1 - Validation/Barcode/BarcodeDatamatrix.php | 1 - Validation/Barcode/BarcodeEAN.php | 1 - Validation/Barcode/BarcodeMSI.php | 1 - Validation/Barcode/QrCode.php | 1 - Validation/Base/BIC.php | 3 - Validation/Base/CreditCard.php | 4 -- Validation/Base/DateTime.php | 3 - Validation/Base/Email.php | 3 - Validation/Base/Hostname.php | 3 - Validation/Base/Iban.php | 7 --- Validation/Base/IbanEnum.php | 2 - Validation/Base/IbanErrorType.php | 2 - Validation/Base/Ip.php | 3 - Validation/ModelValidationTrait.php | 4 -- Validation/Validator.php | 7 --- Validation/ValidatorAbstract.php | 2 - Validation/ValidatorInterface.php | 2 - Version/Version.php | 4 -- Views/View.php | 10 ---- Views/ViewAbstract.php | 15 ----- Views/ViewLayout.php | 2 - 487 files changed, 2256 deletions(-) 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 From e4e5ea9f6b69b0ca13ea2ecfabddb8698d4fd0ed Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 24 Jul 2017 13:25:14 +0200 Subject: [PATCH 016/103] Adjust return type --- Views/ViewAbstract.php | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index 3fa68895e..9a6362266 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -7,6 +7,7 @@ * @category TBD * @package TBD * @author OMS Development Team + * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,6 +25,7 @@ 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 @@ -51,6 +53,7 @@ abstract class ViewAbstract implements \Serializable * Constructor. * * @since 1.0.0 + * @author Dennis Eichhorn */ public function __construct() { @@ -65,6 +68,7 @@ abstract class ViewAbstract implements \Serializable * @return int * * @since 1.0.0 + * @author Dennis Eichhorn */ private static function viewSort(array $a, array $b) : int { @@ -81,6 +85,7 @@ abstract class ViewAbstract implements \Serializable * @return string * * @since 1.0.0 + * @author Dennis Eichhorn */ public function getTemplate() : string { @@ -95,6 +100,7 @@ abstract class ViewAbstract implements \Serializable * @return void * * @since 1.0.0 + * @author Dennis Eichhorn */ public function setTemplate(string $template) /* : void */ { @@ -105,6 +111,7 @@ abstract class ViewAbstract implements \Serializable * @return View[] * * @since 1.0.0 + * @author Dennis Eichhorn */ public function getViews() : array { @@ -117,6 +124,7 @@ abstract class ViewAbstract implements \Serializable * @return false|View * * @since 1.0.0 + * @author Dennis Eichhorn */ public function getView($id) { @@ -135,6 +143,7 @@ abstract class ViewAbstract implements \Serializable * @return bool * * @since 1.0.0 + * @author Dennis Eichhorn */ public function removeView(string $id) : bool { @@ -157,6 +166,7 @@ abstract class ViewAbstract implements \Serializable * @return void * * @since 1.0.0 + * @author Dennis Eichhorn */ public function editView(string $id, View $view, $order = null) /* : void */ { @@ -174,8 +184,9 @@ 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 */ + public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) : bool { if ($overwrite || !isset($this->views[$id])) { $this->views[$id] = $view; @@ -183,7 +194,11 @@ abstract class ViewAbstract implements \Serializable if ($order !== 0) { uasort($this->views, ['\phpOMS\Views\View', 'viewSort']); } + + return true; } + + return false; } /** @@ -192,6 +207,7 @@ abstract class ViewAbstract implements \Serializable * @return string|array * * @since 1.0.0 + * @author Dennis Eichhorn */ public function serialize() { @@ -208,6 +224,7 @@ abstract class ViewAbstract implements \Serializable * @return array * * @since 1.0.0 + * @author Dennis Eichhorn */ public function toArray() : array { @@ -230,6 +247,7 @@ abstract class ViewAbstract implements \Serializable * @return string * * @since 1.0.0 + * @author Dennis Eichhorn */ public function render(...$data) : string { @@ -259,6 +277,7 @@ abstract class ViewAbstract implements \Serializable * @return void * * @since 1.0.0 + * @author Dennis Eichhorn */ public function unserialize($raw) { From e3637c818f69482e343f14d352a8888b8c189c2f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 24 Jul 2017 13:26:34 +0200 Subject: [PATCH 017/103] Remove old version file. Doesn't belong here. --- Version/info.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 Version/info.json diff --git a/Version/info.json b/Version/info.json deleted file mode 100644 index 3ae0f6919..000000000 --- a/Version/info.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "framework": "1.0.0", - "db": "1.0.0", - "db_mysql": "5.0.27", - "db_sqlite": "3.0.0", - "php": "5.4.0", - "fontawesome": "4.1.0", - "dthree": "3.4.11", - "jquery": "2.1.1" -} \ No newline at end of file From 40fad23447a0eba0c5bde6b3b8525623addbf216 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 24 Jul 2017 14:05:04 +0200 Subject: [PATCH 018/103] Added comments incl. latex --- Business/Sales/MarketShareEstimation.php | 30 +++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php index 5ce16f46f..a98d61214 100644 --- a/Business/Sales/MarketShareEstimation.php +++ b/Business/Sales/MarketShareEstimation.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Business\Sales; /** - * Market share calculations + * Market share calculations (Zipf function) * * @category Framework * @package phpOMS\Business @@ -25,6 +25,20 @@ namespace phpOMS\Business\Sales; * @since 1.0.0 */ class MarketShareEstimation { + /** + * Calculate rank (r) based on marketshare (m) + * + * @latex r = \sqrt[s]{\frac{1}{m \times \sum_{n=1}^N{\frac{1}{n^{s}}}}} + * + * @param int $participants (p) + * @param float $marketShare (m) + * @param float $modifier (s) + * + * @return float + * + * @since 1.0.0 + * @author Dennis Eichhorn + */ public static function getRankFromMarketShare(int $participants, float $marketShare, float $modifier = 1.0) : int { $sum = 0.0; @@ -35,6 +49,20 @@ class MarketShareEstimation { return (int) round(pow(1 / ($marketShare * $sum); 1 / $modifier)); } + /** + * Calculate marketshare (m) based on rank (r) + * + * @latex m = \frac{\frac{1}{r^{s}}}{\sum_{n=1}^N{\frac{1}{n^{s}}}} + * + * @param int $participants (p) + * @param int $rank (r) + * @param float $modifier (s) + * + * @return float + * + * @since 1.0.0 + * @author Dennis Eichhorn + */ public static function getMarketShareFromRank(int $participants, int $rank, float $modifier = 1.0) : float { $sum = 0.0; From 8cb5f742db8a4afd50aa4c429aaef427d323c76d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 24 Jul 2017 17:45:36 +0200 Subject: [PATCH 019/103] Fix semicolon --- Business/Sales/MarketShareEstimation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php index a98d61214..ef0d8a831 100644 --- a/Business/Sales/MarketShareEstimation.php +++ b/Business/Sales/MarketShareEstimation.php @@ -46,7 +46,7 @@ class MarketShareEstimation { $sum += 1 / pow($i+1, $modifier); } - return (int) round(pow(1 / ($marketShare * $sum); 1 / $modifier)); + return (int) round(pow(1 / ($marketShare * $sum), 1 / $modifier)); } /** From c05086c2336ac4066793aff431675a2dab8a952d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 24 Jul 2017 17:51:37 +0200 Subject: [PATCH 020/103] Remove author --- Business/Sales/MarketShareEstimation.php | 2 - Console/CommandManager.php | 4 -- Log/FileLogger.php | 17 ----- Math/Finance/FinanceFormulas.php | 83 ------------------------ Math/Finance/Loan.php | 6 -- Math/Finance/StockBonds.php | 22 ------- Math/Number/Integer.php | 4 -- Math/Number/Numbers.php | 4 -- Math/Number/Prime.php | 5 -- Message/Http/Rest.php | 1 - Module/ActivateAbstract.php | 1 - Module/DeactivateAbstract.php | 1 - Module/InfoManager.php | 14 ---- Module/InstallerAbstract.php | 1 - Module/ModuleAbstract.php | 1 - Module/ModuleManager.php | 21 ------ Socket/CommandManager.php | 4 -- Stdlib/Map/MultiMap.php | 21 ------ System/SystemUtils.php | 3 - Utils/Barcode/C128Abstract.php | 8 --- Utils/Barcode/C128a.php | 2 - Utils/Barcode/C128c.php | 1 - Utils/Barcode/C25.php | 3 - Utils/Barcode/C39.php | 3 - Utils/Barcode/Codebar.php | 3 - Utils/IO/Csv/CsvSettings.php | 1 - Utils/JsonBuilder.php | 4 -- Utils/StringUtils.php | 12 ---- Utils/TaskSchedule/Cron.php | 1 - Utils/TaskSchedule/SchedulerAbstract.php | 6 -- Utils/TaskSchedule/TaskScheduler.php | 3 - Validation/ValidatorInterface.php | 2 - Views/ViewAbstract.php | 39 ++++------- 33 files changed, 13 insertions(+), 290 deletions(-) diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php index ef0d8a831..309b83618 100644 --- a/Business/Sales/MarketShareEstimation.php +++ b/Business/Sales/MarketShareEstimation.php @@ -37,7 +37,6 @@ class MarketShareEstimation { * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRankFromMarketShare(int $participants, float $marketShare, float $modifier = 1.0) : int { @@ -61,7 +60,6 @@ class MarketShareEstimation { * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMarketShareFromRank(int $participants, int $rank, float $modifier = 1.0) : float { diff --git a/Console/CommandManager.php b/Console/CommandManager.php index ccfe9f9aa..680a893c0 100644 --- a/Console/CommandManager.php +++ b/Console/CommandManager.php @@ -64,7 +64,6 @@ class CommandManager implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function attach(string $cmd, $callback, $source, bool $overwrite = true) : bool { @@ -87,7 +86,6 @@ class CommandManager implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function detach(string $cmd, $source) : bool { @@ -110,7 +108,6 @@ class CommandManager implements \Countable * @return mixed|bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function trigger(string $cmd, $para) { @@ -127,7 +124,6 @@ class CommandManager implements \Countable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/Log/FileLogger.php b/Log/FileLogger.php index a64ba38c9..a0d5252fd 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -99,7 +99,6 @@ class FileLogger implements LoggerInterface * @param bool $verbose Verbose logging * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $lpath, bool $verbose = false) { @@ -155,7 +154,6 @@ class FileLogger implements LoggerInterface * Closes the logging file * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __destruct() { @@ -181,7 +179,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function startTimeLog($id = '') { @@ -199,7 +196,6 @@ class FileLogger implements LoggerInterface * @return int the time measurement * * @since 1.0.0 - * @author Dennis Eichhorn */ public function endTimeLog($id = '') { @@ -220,7 +216,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function timingSort(&$timings) { @@ -237,7 +232,6 @@ class FileLogger implements LoggerInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ private function interpolate(string $message, array $context = [], string $level = LogLevel::DEBUG) { @@ -278,7 +272,6 @@ class FileLogger implements LoggerInterface * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ private function orderSort($a, $b) : int { @@ -297,7 +290,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function write(string $message) /* : void */ { @@ -330,7 +322,6 @@ class FileLogger implements LoggerInterface * @return null * * @since 1.0.0 - * @author Dennis Eichhorn */ public function emergency(string $message, array $context = []) /* : void */ { @@ -350,7 +341,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function alert(string $message, array $context = []) /* : void */ { @@ -369,7 +359,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function critical(string $message, array $context = []) /* : void */ { @@ -387,7 +376,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function error(string $message, array $context = []) /* : void */ { @@ -407,7 +395,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function warning(string $message, array $context = []) /* : void */ { @@ -424,7 +411,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function notice(string $message, array $context = []) /* : void */ { @@ -443,7 +429,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function info(string $message, array $context = []) /* : void */ { @@ -460,7 +445,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function debug(string $message, array $context = []) /* : void */ { @@ -478,7 +462,6 @@ class FileLogger implements LoggerInterface * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function log(string $level, string $message, array $context = []) /* : void */ { diff --git a/Math/Finance/FinanceFormulas.php b/Math/Finance/FinanceFormulas.php index cbce240c7..dec6931fb 100644 --- a/Math/Finance/FinanceFormulas.php +++ b/Math/Finance/FinanceFormulas.php @@ -42,7 +42,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAnnualPercentageYield(float $r, int $n) : float { @@ -60,7 +59,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getStateAnnualInterestRateOfAPY(float $apy, int $n) : float { @@ -77,7 +75,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFutureValueOfAnnuity(float $P, float $r, int $n) : float { @@ -94,7 +91,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNumberOfPeriodsOfFVA(float $fva, float $P, float $r) : int { @@ -111,7 +107,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodicPaymentOfFVA(float $fva, float $r, int $n) : float { @@ -129,7 +124,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFutureValueOfAnnuityConinuousCompounding(float $cf, float $r, int $t) : float { @@ -146,7 +140,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCashFlowOfFVACC(float $fvacc, float $r, int $t) : float { @@ -163,7 +156,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getTimeOfFVACC(float $fvacc, float $cf, float $r) : int { @@ -180,7 +172,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAnnuityPaymentPV(float $pv, float $r, int $n) : float { @@ -197,7 +188,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNumberOfAPPV(float $p, float $pv, float $r) : int { @@ -214,7 +204,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValueOfAPPV(float $p, float $r, int $n) : float { @@ -231,7 +220,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAnnuityPaymentFV(float $fv, float $r, int $n) : float { @@ -248,7 +236,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNumberOfAPFV(float $p, float $fv, float $r) : int { @@ -265,7 +252,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFutureValueOfAPFV(float $p, float $r, int $n) : float { @@ -281,7 +267,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAnnutiyPaymentFactorPV(float $r, int $n) : float { @@ -297,7 +282,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNumberOfAPFPV(float $p, float $r) : int { @@ -314,7 +298,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValueOfAnnuity(float $P, float $r, int $n) : float { @@ -331,7 +314,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNumberOfPeriodsOfPVA(float $pva, float $P, float $r) : int { @@ -348,7 +330,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodicPaymentOfPVA(float $pva, float $r, int $n) : float { @@ -364,7 +345,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValueAnnuityFactor(float $r, int $n) : float { @@ -380,7 +360,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodsOfPVAF(float $p, float $r) : int { @@ -397,7 +376,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValueOfAnnuityDue(float $P, float $r, int $n) : float { @@ -416,7 +394,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodicPaymentOfPVAD(float $PV, float $r, int $n) : float { @@ -433,7 +410,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodsOfPVAD(float $PV, float $P, float $r) : int { @@ -450,7 +426,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFutureValueOfAnnuityDue(float $P, float $r, int $n) : float { @@ -467,7 +442,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodicPaymentOfFVAD(float $FV, float $r, int $n) : float { @@ -484,7 +458,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodsOfFVAD(float $FV, float $P, float $r) : int { @@ -500,7 +473,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAssetToSalesRatio(float $assets, float $revenue) : float { @@ -516,7 +488,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAssetTurnoverRatio(float $assets, float $revenue) : float { @@ -532,7 +503,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getAverageCollectionPeriod(float $receivables, int $period = 365) : float { @@ -548,7 +518,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getReceivablesTurnover(float $sales, float $receivables) : float { @@ -565,7 +534,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCompoundInterest(float $P, float $r, int $n) : float { @@ -582,7 +550,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPrincipalOfCompundInterest(float $C, float $r, int $n) : float { @@ -599,7 +566,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodsOfCompundInterest(float $P, float $C, float $r) : float { @@ -616,7 +582,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getContinuousCompounding(float $P, float $r, int $t) : float { @@ -633,7 +598,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPrincipalOfContinuousCompounding(float $C, float $r, int $t) : float { @@ -650,7 +614,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodsOfContinuousCompounding(float $P, float $C, float $r) : float { @@ -667,7 +630,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRateOfContinuousCompounding(float $P, float $C, float $t) : float { @@ -683,7 +645,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCurrentRaio(float $assets, float $liabilities) : float { @@ -698,7 +659,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDaysInInventory(float $inventory) : float { @@ -714,7 +674,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDebtCoverageRatio(float $income, float $service) : float { @@ -730,7 +689,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDebtRatio(float $liabilities, float $assets) : float { @@ -746,7 +704,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDebtToEquityRatio(float $liabilities, float $equity) : float { @@ -762,7 +719,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDebtToIncomeRatio(float $payments, float $income) : float { @@ -779,7 +735,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDiscountedPaybackPeriod(float $CF, float $O1, float $r) : float { @@ -794,7 +749,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDoublingTime(float $r) : float { @@ -809,7 +763,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDoublingTimeContinuousCompounding(float $r) : float { @@ -826,7 +779,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getEquivalentAnnualAnnuity(float $NPV, float $r, int $n) : float { @@ -843,7 +795,6 @@ class FinanceFormulas * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPeriodsOfEAA(float $C, float $NPV, float $r) : int { @@ -860,7 +811,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNetPresentValueOfEAA(float $C, float $r, int $n) : float { @@ -879,7 +829,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFreeCashFlowToEquity(float $income, float $depamo, float $capital, float $wc, float $borrowing) : float { @@ -898,7 +847,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFreeCashFlowToFirm(float $ebit, float $t, float $depamo, float $capital, float $wc) : float { @@ -915,7 +863,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFutureValue(float $C, float $r, int $n) : float { @@ -932,7 +879,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFutureValueContinuousCompounding(float $PV, float $r, int $t) : float { @@ -948,7 +894,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFutureValueFactor(float $r, int $n) : float { @@ -963,7 +908,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getGeometricMeanReturn(array $r) : float { @@ -981,7 +925,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getGrowingAnnuityFV(float $P, float $r, float $g, int $n) : float { @@ -999,7 +942,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getGrowingAnnuityPaymentPV(float $PV, float $r, float $g, int $n) : float { @@ -1017,7 +959,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getGrowingAnnuityPaymentFV(float $FV, float $r, float $g, int $n) : float { @@ -1035,7 +976,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getGrowingAnnuityPV(float $P, float $r, float $g, int $n) : float { @@ -1052,7 +992,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getGrowingPerpetuityPV(float $D, float $r, float $g) : float { @@ -1068,7 +1007,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getInterestCoverageRatio(float $ebit, float $expense) : float { @@ -1084,7 +1022,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getInventoryTurnoverRatio(float $sales, float $inventory) : float { @@ -1102,7 +1039,6 @@ class FinanceFormulas * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNetPresentValue(array $C, float $r) : float { @@ -1130,7 +1066,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNetProfitMargin(float $income, float $sales) : float { @@ -1146,7 +1081,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNetWorkingCapital(float $assets, float $liabilities) : float { @@ -1163,7 +1097,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNumberOfPeriodsPVFV(float $FV, float $PV, float $r) : float { @@ -1179,7 +1112,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPaybackPeriod(float $investment, float $cash) : float { @@ -1195,7 +1127,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValueOfPerpetuity(float $D, float $r) : float { @@ -1212,7 +1143,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValue(float $C, float $r, int $n) : float { @@ -1229,7 +1159,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValueContinuousCompounding(float $C, float $r, int $t) : float { @@ -1245,7 +1174,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValueFactor(float $r, int $n) : float { @@ -1261,7 +1189,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getQuickRatio(float $assets, float $liabilities) : float { @@ -1277,7 +1204,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRateOfOnflation(float $oldCPI, float $newCPI) : float { @@ -1293,7 +1219,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRealRateOfReturn(float $nominal, float $inflation) : float { @@ -1309,7 +1234,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getReceivablesTurnoverRatio(float $sales, float $receivable) : float { @@ -1325,7 +1249,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRetentionRatio(float $income, float $dividends) : float { @@ -1341,7 +1264,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getReturnOnAssets(float $income, float $assets) : float { @@ -1357,7 +1279,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getReturnOnEquity(float $income, float $equity) : float { @@ -1373,7 +1294,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getReturnOnInvestment(float $earnings, float $investment) : float { @@ -1390,7 +1310,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getSimpleInterest(float $P, float $r, int $t) : float { @@ -1406,7 +1325,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRelativeMarketShareByShare(float $ownShare, float $competitorShare) : float { @@ -1422,7 +1340,6 @@ class FinanceFormulas * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRelativeMarketShareBySales(float $ownSales, float $competitorSales) : float { diff --git a/Math/Finance/Loan.php b/Math/Finance/Loan.php index 8d4d390db..47115e999 100644 --- a/Math/Finance/Loan.php +++ b/Math/Finance/Loan.php @@ -39,7 +39,6 @@ class Loan * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPaymentsOnBalloonLoan(float $PV, float $r, int $n, float $balloon = 0) : float { @@ -57,7 +56,6 @@ class Loan * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getBalloonBalanceOfLoan(float $PV, float $P, float $r, int $n) : float { @@ -74,7 +72,6 @@ class Loan * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getLoanPayment(float $PV, float $r, int $n) : float { @@ -92,7 +89,6 @@ class Loan * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRemainingBalanceLoan(float $PV, float $P, float $r, int $n) : float { @@ -108,7 +104,6 @@ class Loan * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getLoanToDepositRatio(float $loans, float $deposits) : float { @@ -124,7 +119,6 @@ class Loan * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getLoanToValueRatio(float $loan, float $collateral) : float { diff --git a/Math/Finance/StockBonds.php b/Math/Finance/StockBonds.php index 4e9c77432..6c1b1e236 100644 --- a/Math/Finance/StockBonds.php +++ b/Math/Finance/StockBonds.php @@ -38,7 +38,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getBondEquivalentYield(float $fv, float $price, int $days) : float { @@ -54,7 +53,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getBookValuePerShare(float $total, int $common) : float { @@ -71,7 +69,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getExpectedReturnCAPM(float $rf, float $beta, float $r) : float { @@ -87,7 +84,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCapitalGainsYield(float $P0, float $P1) : float { @@ -103,7 +99,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCurrentYield(float $coupons, float $price) : float { @@ -120,7 +115,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDilutedEarningsPerShare(float $income, float $avg, float $other) : float { @@ -136,7 +130,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDividendPayoutRatio(float $dividends, float $income) : float { @@ -152,7 +145,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDividendYield(float $dividends, float $price) : float { @@ -168,7 +160,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getDividendsPerShare(float $dividends, int $shares) : float { @@ -184,7 +175,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getEarningsPerShare(float $income, float $shares) : float { @@ -200,7 +190,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getEquityMultiplier(float $assets, float $equity) : float { @@ -215,7 +204,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getHoldingPeriodReturn(array $r) : float { @@ -238,7 +226,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getNetAssetValue(float $assets, float $liabilities, int $shares) : float { @@ -254,7 +241,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPriceToBookValue(float $market, float $book) : float { @@ -270,7 +256,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPriceEarningsRatio(float $price, float $earnings) : float { @@ -286,7 +271,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPriceToSalesRatio(float $price, float $sales) : float { @@ -303,7 +287,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getPresentValueOfStockConstantGrowth(float $dividend, float $r, float $g = 0.0) : float { @@ -319,7 +302,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getTaxEquivalentYield(float $free, float $tax) : float { @@ -336,7 +318,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getTotalStockReturn(float $P0, float $P1, float $D) : float { @@ -354,7 +335,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getYieldToMaturity(float $C, float $F, float $P, int $n) : float { @@ -371,7 +351,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getZeroCouponBondValue(float $F, float $r, int $t) : float { @@ -388,7 +367,6 @@ class StockBonds * @return float * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getZeroCouponBondEffectiveYield(float $F, float $PV, int $n) : float { diff --git a/Math/Number/Integer.php b/Math/Number/Integer.php index 19f4f97ca..afc1e2fbe 100644 --- a/Math/Number/Integer.php +++ b/Math/Number/Integer.php @@ -50,7 +50,6 @@ class Integer * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function trialFactorization(int $value) : array { @@ -93,7 +92,6 @@ class Integer * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function pollardsRho(int $n, int $x = 2, int $factor = 1, int $cycleSize = 2, int $y = 2) : int { @@ -119,7 +117,6 @@ class Integer * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function greatestCommonDivisor(int $n, int $m) : int { @@ -148,7 +145,6 @@ class Integer * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function fermatFactor(int $value, int $limit = 1000000) : array { diff --git a/Math/Number/Numbers.php b/Math/Number/Numbers.php index d19ea6689..23f0866f9 100644 --- a/Math/Number/Numbers.php +++ b/Math/Number/Numbers.php @@ -36,7 +36,6 @@ class Numbers * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isPerfect(int $n) : bool { @@ -59,7 +58,6 @@ class Numbers * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isSelfdescribing(int $n) : bool { @@ -83,7 +81,6 @@ class Numbers * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isSquare(int $n) : bool { @@ -98,7 +95,6 @@ class Numbers * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function countTrailingZeros(int $n) : int { diff --git a/Math/Number/Prime.php b/Math/Number/Prime.php index d84d33b61..56b456563 100644 --- a/Math/Number/Prime.php +++ b/Math/Number/Prime.php @@ -36,7 +36,6 @@ class Prime * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isMersenne(int $n) : bool { @@ -53,7 +52,6 @@ class Prime * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mersenne(int $p) : int { @@ -69,7 +67,6 @@ class Prime * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function rabinTest(int $n, int $k = 10000) : bool { @@ -124,7 +121,6 @@ class Prime * @return int[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function sieveOfEratosthenes(int $n) : array { @@ -155,7 +151,6 @@ class Prime * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isPrime(int $n) : bool { diff --git a/Message/Http/Rest.php b/Message/Http/Rest.php index e625ec079..7cecf4a95 100644 --- a/Message/Http/Rest.php +++ b/Message/Http/Rest.php @@ -37,7 +37,6 @@ class Rest * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function request(Request $request) : string { diff --git a/Module/ActivateAbstract.php b/Module/ActivateAbstract.php index 15a9306bf..063d4f5ec 100644 --- a/Module/ActivateAbstract.php +++ b/Module/ActivateAbstract.php @@ -72,7 +72,6 @@ class ActivateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function activateInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */ { diff --git a/Module/DeactivateAbstract.php b/Module/DeactivateAbstract.php index 659a254e1..578df49ca 100644 --- a/Module/DeactivateAbstract.php +++ b/Module/DeactivateAbstract.php @@ -72,7 +72,6 @@ class DeactivateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function deactivateInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */ { diff --git a/Module/InfoManager.php b/Module/InfoManager.php index 7c676fc60..d2a7baee6 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -56,7 +56,6 @@ class InfoManager * @param string $path Info file path * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($path) { @@ -69,7 +68,6 @@ class InfoManager * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getPath() : string { @@ -82,7 +80,6 @@ class InfoManager * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function load() /* : void */ { @@ -99,7 +96,6 @@ class InfoManager * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function update() /* : void */ { @@ -118,7 +114,6 @@ class InfoManager * @param string $delim Delimiter of path * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(string $path, $data, string $delim = '/') /* : void */ { @@ -135,7 +130,6 @@ class InfoManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get() : array { @@ -148,7 +142,6 @@ class InfoManager * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInternalName() : string { @@ -161,7 +154,6 @@ class InfoManager * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getExternalName() : string { @@ -174,7 +166,6 @@ class InfoManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDependencies() : array { @@ -187,7 +178,6 @@ class InfoManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getProviding() : array { @@ -200,7 +190,6 @@ class InfoManager * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getDirectory() : string { @@ -213,7 +202,6 @@ class InfoManager * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getCategory() : string { @@ -226,7 +214,6 @@ class InfoManager * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getVersion() : string { @@ -239,7 +226,6 @@ class InfoManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLoad() : array { diff --git a/Module/InstallerAbstract.php b/Module/InstallerAbstract.php index 1f220d97a..72e4e2f46 100644 --- a/Module/InstallerAbstract.php +++ b/Module/InstallerAbstract.php @@ -44,7 +44,6 @@ class InstallerAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function registerInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */ { diff --git a/Module/ModuleAbstract.php b/Module/ModuleAbstract.php index 699b2de70..c3e71ef2a 100644 --- a/Module/ModuleAbstract.php +++ b/Module/ModuleAbstract.php @@ -92,7 +92,6 @@ abstract class ModuleAbstract * @param \phpOMS\ApplicationAbstract $app Application instance * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($app) { diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index bcbc6ae8f..7a1aa4410 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -114,7 +114,6 @@ class ModuleManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getRoutedModules(Request $request) : array { @@ -138,7 +137,6 @@ class ModuleManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getUriLoad(Request $request) : array { @@ -190,7 +188,6 @@ class ModuleManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getLanguageFiles(Request $request) : array { @@ -212,7 +209,6 @@ class ModuleManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getActiveModules() : array { @@ -235,7 +231,6 @@ class ModuleManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAllModules() : array { @@ -266,7 +261,6 @@ class ModuleManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAvailableModules() : array { @@ -280,7 +274,6 @@ class ModuleManager * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function deactivate(string $module) : bool { @@ -316,7 +309,6 @@ class ModuleManager * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function activate(string $module) : bool { @@ -354,7 +346,6 @@ class ModuleManager * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function reInit(string $module) : bool { @@ -377,7 +368,6 @@ class ModuleManager * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function install(string $module) : bool { @@ -431,7 +421,6 @@ class ModuleManager * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function installDependencies(array $dependencies) /* : void */ { @@ -450,7 +439,6 @@ class ModuleManager * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function installModule(InfoManager $info) /* : void */ { @@ -474,7 +462,6 @@ class ModuleManager * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function deactivateModule(InfoManager $info) /* : void */ { @@ -498,7 +485,6 @@ class ModuleManager * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function activateModule(InfoManager $info) /* : void */ { @@ -520,7 +506,6 @@ class ModuleManager * @return InfoManager * * @since 1.0.0 - * @author Dennis Eichhorn */ private function loadInfo(string $module) : InfoManager { @@ -542,7 +527,6 @@ class ModuleManager * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getInstalledModules() : array { @@ -570,7 +554,6 @@ class ModuleManager * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function installProviding(string $from, string $for) /* : void */ { @@ -591,7 +574,6 @@ class ModuleManager * @throws \InvalidArgumentException * * @since 1.0.0 - * @author Dennis Eichhorn */ public function initModule($modules) /* : void */ { @@ -618,7 +600,6 @@ class ModuleManager * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function initModuleController(string $module) /* : void */ { @@ -640,7 +621,6 @@ class ModuleManager * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(string $module) : ModuleAbstract { @@ -663,7 +643,6 @@ class ModuleManager * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function initRequestModules(Request $request) /* : void */ { diff --git a/Socket/CommandManager.php b/Socket/CommandManager.php index f53104d05..a731aa3da 100644 --- a/Socket/CommandManager.php +++ b/Socket/CommandManager.php @@ -63,7 +63,6 @@ class CommandManager implements \Countable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function attach(string $cmd, $callback, $source) { @@ -80,7 +79,6 @@ class CommandManager implements \Countable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function detach(string $cmd, $source) { @@ -100,7 +98,6 @@ class CommandManager implements \Countable * @return mixed|bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function trigger(string $cmd, $conn, $para) { @@ -117,7 +114,6 @@ class CommandManager implements \Countable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/Stdlib/Map/MultiMap.php b/Stdlib/Map/MultiMap.php index 864d19f3a..2ce61b64f 100644 --- a/Stdlib/Map/MultiMap.php +++ b/Stdlib/Map/MultiMap.php @@ -87,7 +87,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(array $keys, $value, bool $overwrite = true) : bool { @@ -123,7 +122,6 @@ class MultiMap implements \Countable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ private function garbageCollect() /* : void */ { @@ -150,7 +148,6 @@ class MultiMap implements \Countable * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get($key) { @@ -169,7 +166,6 @@ class MultiMap implements \Countable * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private function getSingle($key) { @@ -184,7 +180,6 @@ class MultiMap implements \Countable * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ private function getMultiple($key) { @@ -216,7 +211,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set($key, $value) : bool { @@ -236,7 +230,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function setMultiple($key, $value) : bool { @@ -264,7 +257,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function setSingle($key, $value) : bool { @@ -285,7 +277,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove($key) : bool { @@ -304,7 +295,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function removeMultiple($key) : bool { @@ -331,7 +321,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function removeSingle($key) : bool { @@ -359,7 +348,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remap($old, $new) : bool { @@ -388,7 +376,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function removeKey($key) : bool { @@ -409,7 +396,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function removeKeyMultiple($key) : bool { @@ -438,7 +424,6 @@ class MultiMap implements \Countable * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ private function removeKeySingle($key) : bool { @@ -461,7 +446,6 @@ class MultiMap implements \Countable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSiblings($key) : array { @@ -481,7 +465,6 @@ class MultiMap implements \Countable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getSiblingsMultiple($key) : array { @@ -500,7 +483,6 @@ class MultiMap implements \Countable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ private function getSiblingsSingle($key) : array { @@ -525,7 +507,6 @@ class MultiMap implements \Countable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function keys() : array { @@ -538,7 +519,6 @@ class MultiMap implements \Countable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function values() : array { @@ -551,7 +531,6 @@ class MultiMap implements \Countable * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public function count() : int { diff --git a/System/SystemUtils.php b/System/SystemUtils.php index fac52c2b4..7ab5c9f3e 100644 --- a/System/SystemUtils.php +++ b/System/SystemUtils.php @@ -44,7 +44,6 @@ class SystemUtils * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRAM() : int { @@ -76,7 +75,6 @@ class SystemUtils * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getRAMUsage() : int { @@ -103,7 +101,6 @@ class SystemUtils * @return int * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getCpuUsage() : int { diff --git a/Utils/Barcode/C128Abstract.php b/Utils/Barcode/C128Abstract.php index bfff4b358..634f3cd21 100644 --- a/Utils/Barcode/C128Abstract.php +++ b/Utils/Barcode/C128Abstract.php @@ -131,7 +131,6 @@ abstract class C128Abstract * @todo : add mirror parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $content = '', int $width = 20, int $height = 20, int $orientation = OrientationType::HORIZONTAL) { @@ -147,7 +146,6 @@ abstract class C128Abstract * @param int $height Barcode height * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setDimension(int $width, int $height) /* : void */ { @@ -169,7 +167,6 @@ abstract class C128Abstract * @param int $orientation Barcode orientation * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setOrientation(int $orientation) /* : void */ { @@ -186,7 +183,6 @@ abstract class C128Abstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getContent() : string { @@ -199,7 +195,6 @@ abstract class C128Abstract * @param string $content Barcode content * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setContent(string $content) /* : void */ { @@ -212,7 +207,6 @@ abstract class C128Abstract * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get() { @@ -227,7 +221,6 @@ abstract class C128Abstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function generateCodeString() : string { @@ -258,7 +251,6 @@ abstract class C128Abstract * @return mixed * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function createImage(string $codeString, int $codeLength = 20) { diff --git a/Utils/Barcode/C128a.php b/Utils/Barcode/C128a.php index 7c0356c22..587231700 100644 --- a/Utils/Barcode/C128a.php +++ b/Utils/Barcode/C128a.php @@ -91,7 +91,6 @@ class C128a extends C128Abstract * @todo : add mirror parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $content = '', int $size = 20, int $orientation = OrientationType::HORIZONTAL) { @@ -106,7 +105,6 @@ class C128a extends C128Abstract * @todo : add mirror parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setContent(string $content) /* : void */ { diff --git a/Utils/Barcode/C128c.php b/Utils/Barcode/C128c.php index 511d8e41e..4819e4ddd 100644 --- a/Utils/Barcode/C128c.php +++ b/Utils/Barcode/C128c.php @@ -86,7 +86,6 @@ class C128c extends C128Abstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function generateCodeString() : string { diff --git a/Utils/Barcode/C25.php b/Utils/Barcode/C25.php index 574097846..c7467a93c 100644 --- a/Utils/Barcode/C25.php +++ b/Utils/Barcode/C25.php @@ -73,7 +73,6 @@ class C25 extends C128Abstract * @todo : add mirror parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $content = '', int $size = 20, int $orientation = OrientationType::HORIZONTAL) { @@ -90,7 +89,6 @@ class C25 extends C128Abstract * @param string $content Barcode content * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setContent(string $content) /* : void */ { @@ -107,7 +105,6 @@ class C25 extends C128Abstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function generateCodeString() : string { diff --git a/Utils/Barcode/C39.php b/Utils/Barcode/C39.php index 69ebdb1fb..815dec010 100644 --- a/Utils/Barcode/C39.php +++ b/Utils/Barcode/C39.php @@ -72,7 +72,6 @@ class C39 extends C128Abstract * @todo : add mirror parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $content = '', int $size = 20, int $orientation = OrientationType::HORIZONTAL) { @@ -85,7 +84,6 @@ class C39 extends C128Abstract * @param string $content Barcode content * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setContent(string $content) /* : void */ { @@ -98,7 +96,6 @@ class C39 extends C128Abstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function generateCodeString() : string { diff --git a/Utils/Barcode/Codebar.php b/Utils/Barcode/Codebar.php index 0084208dd..ccdeae197 100644 --- a/Utils/Barcode/Codebar.php +++ b/Utils/Barcode/Codebar.php @@ -73,7 +73,6 @@ class Codebar extends C128Abstract * @todo : add mirror parameter * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct(string $content = '', int $size = 20, int $orientation = OrientationType::HORIZONTAL) { @@ -86,7 +85,6 @@ class Codebar extends C128Abstract * @param string $content Barcode content * * @since 1.0.0 - * @author Dennis Eichhorn */ public function setContent(string $content) /* : void */ { @@ -99,7 +97,6 @@ class Codebar extends C128Abstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function generateCodeString() : string { diff --git a/Utils/IO/Csv/CsvSettings.php b/Utils/IO/Csv/CsvSettings.php index 3a85d9645..a3dc78179 100644 --- a/Utils/IO/Csv/CsvSettings.php +++ b/Utils/IO/Csv/CsvSettings.php @@ -35,7 +35,6 @@ class CsvSettings * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getFileDelimiter($file, int $checkLines = 2, array $delimiters = [',', '\t', ';', '|', ':']) : string { diff --git a/Utils/JsonBuilder.php b/Utils/JsonBuilder.php index bd277c6ee..0f3dcbad5 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -41,7 +41,6 @@ class JsonBuilder implements \Serializable * Constructor. * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct() { @@ -53,7 +52,6 @@ class JsonBuilder implements \Serializable * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getJson() : array { @@ -70,7 +68,6 @@ class JsonBuilder implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(string $path, $value, bool $overwrite = true) /* : void */ { @@ -85,7 +82,6 @@ class JsonBuilder implements \Serializable * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(string $path) /* : void */ { diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php index c2e3ce9ef..e46e8f2a9 100644 --- a/Utils/StringUtils.php +++ b/Utils/StringUtils.php @@ -57,7 +57,6 @@ class StringUtils * @return bool The function returns true if any of the needles is part of the haystack, false otherwise. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function contains(string $haystack, array $needles) : bool { @@ -85,7 +84,6 @@ class StringUtils * @return bool The function returns true if any of the needles is part of the haystack, false otherwise. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mb_contains(string $haystack, array $needles) : bool { @@ -114,7 +112,6 @@ class StringUtils * @return bool The function returns true if any of the needles is at the end of the haystack, false otherwise. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function endsWith(string $haystack, $needles) : bool { @@ -147,7 +144,6 @@ class StringUtils * @return bool The function returns true if any of the needles is at the beginning of the haystack, false otherwise. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function startsWith(string $haystack, $needles) : bool { @@ -176,7 +172,6 @@ class StringUtils * @return bool The function returns true if any of the needles is at the beginning of the haystack, false otherwise. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mb_startsWith(string $haystack, $needles) : bool { @@ -209,7 +204,6 @@ class StringUtils * @return bool The function returns true if any of the needles is at the end of the haystack, false otherwise. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mb_endsWith(string $haystack, $needles) : bool { @@ -234,7 +228,6 @@ class StringUtils * @return string Multi byte string with first character as upper case. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mb_ucfirst(string $string) : string { @@ -253,7 +246,6 @@ class StringUtils * @return string Multi byte string with first character as lower case. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mb_lcfirst(string $string) : string { @@ -273,7 +265,6 @@ class StringUtils * @return string Trimmed multi byte string. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mb_trim(string $string, string $charlist = ' ') : string { @@ -295,7 +286,6 @@ class StringUtils * @return string Trimmed multi byte string. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mb_rtrim(string $string, string $charlist = ' ') : string { @@ -317,7 +307,6 @@ class StringUtils * @return string Trimmed multi byte string. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function mb_ltrim(string $string, string $charlist = ' ') : string { @@ -342,7 +331,6 @@ class StringUtils * @return int The amount of repeating occurences at the beginning of the string. * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function countCharacterFromStart(string $string, string $character) : int { diff --git a/Utils/TaskSchedule/Cron.php b/Utils/TaskSchedule/Cron.php index 9dc00af64..475b59a80 100644 --- a/Utils/TaskSchedule/Cron.php +++ b/Utils/TaskSchedule/Cron.php @@ -42,7 +42,6 @@ class Cron extends SchedulerAbstract * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function run(string $cmd) : array { diff --git a/Utils/TaskSchedule/SchedulerAbstract.php b/Utils/TaskSchedule/SchedulerAbstract.php index d1b0f1df7..c1a0da212 100644 --- a/Utils/TaskSchedule/SchedulerAbstract.php +++ b/Utils/TaskSchedule/SchedulerAbstract.php @@ -105,7 +105,6 @@ abstract class SchedulerAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function add(TaskAbstract $task) /* : void */ { @@ -120,7 +119,6 @@ abstract class SchedulerAbstract * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public function remove(string $id) : bool { @@ -141,7 +139,6 @@ abstract class SchedulerAbstract * @return TaskAbstract|null * * @since 1.0.0 - * @author Dennis Eichhorn */ public function get(string $id) { @@ -154,7 +151,6 @@ abstract class SchedulerAbstract * @return TaskAbstract[] * * @since 1.0.0 - * @author Dennis Eichhorn */ public function getAll() : array { @@ -169,7 +165,6 @@ abstract class SchedulerAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public function set(TaskAbstract $task) /* : void */ { @@ -182,7 +177,6 @@ abstract class SchedulerAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ abstract public function save() /* : void */; } diff --git a/Utils/TaskSchedule/TaskScheduler.php b/Utils/TaskSchedule/TaskScheduler.php index 15cb82000..65d3fba84 100644 --- a/Utils/TaskSchedule/TaskScheduler.php +++ b/Utils/TaskSchedule/TaskScheduler.php @@ -48,7 +48,6 @@ class TaskScheduler extends SchedulerAbstract * @throws \Exception * * @since 1.0.0 - * @author Dennis Eichhorn */ private function run(string $cmd) : string { @@ -85,7 +84,6 @@ class TaskScheduler extends SchedulerAbstract * @return string Normalized string for parsing * * @since 1.0.0 - * @author Dennis Eichhorn */ private function normalize(string $raw) : string { @@ -100,7 +98,6 @@ class TaskScheduler extends SchedulerAbstract * @return TaskAbstract Parsed job * * @since 1.0.0 - * @author Dennis Eichhorn */ private function parseJobList(array $jobData) : TaskAbstract { diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index 4af491a32..92f90c26c 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -37,7 +37,6 @@ interface ValidatorInterface * @return bool * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function isValid($value); @@ -47,7 +46,6 @@ interface ValidatorInterface * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function getMessage(); } diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index 9a6362266..42f630d8b 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -52,8 +52,7 @@ abstract class ViewAbstract implements \Serializable /** * Constructor. * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function __construct() { @@ -67,8 +66,7 @@ abstract class ViewAbstract implements \Serializable * * @return int * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ private static function viewSort(array $a, array $b) : int { @@ -84,8 +82,7 @@ abstract class ViewAbstract implements \Serializable * * @return string * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function getTemplate() : string { @@ -99,8 +96,7 @@ abstract class ViewAbstract implements \Serializable * * @return void * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function setTemplate(string $template) /* : void */ { @@ -110,8 +106,7 @@ abstract class ViewAbstract implements \Serializable /** * @return View[] * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function getViews() : array { @@ -123,8 +118,7 @@ abstract class ViewAbstract implements \Serializable * * @return false|View * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function getView($id) { @@ -142,8 +136,7 @@ abstract class ViewAbstract implements \Serializable * * @return bool * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function removeView(string $id) : bool { @@ -165,8 +158,7 @@ abstract class ViewAbstract implements \Serializable * * @return void * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function editView(string $id, View $view, $order = null) /* : void */ { @@ -183,8 +175,7 @@ abstract class ViewAbstract implements \Serializable * * @return void * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) : bool { @@ -206,8 +197,7 @@ abstract class ViewAbstract implements \Serializable * * @return string|array * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function serialize() { @@ -223,8 +213,7 @@ abstract class ViewAbstract implements \Serializable * * @return array * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function toArray() : array { @@ -246,8 +235,7 @@ abstract class ViewAbstract implements \Serializable * * @return string * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function render(...$data) : string { @@ -276,8 +264,7 @@ abstract class ViewAbstract implements \Serializable * * @return void * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function unserialize($raw) { From c4927f588f657489a3ddcb1461b27d5b0b1b50ae Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 24 Jul 2017 20:42:12 +0200 Subject: [PATCH 021/103] Add escaped language output --- Views/View.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Views/View.php b/Views/View.php index d44a33ae1..b8269473b 100644 --- a/Views/View.php +++ b/Views/View.php @@ -196,6 +196,11 @@ class View extends ViewAbstract return $this->app->l11nManager->getText($this->l11n->getLanguage(), $module, $theme, $translation); } + protected function getHtml(string $translation, string $module = null, string $theme = null) : string + { + return htmlspecialchars($this->getText($translation, $module, $theme)); + } + /** * @return RequestAbstract * From 76e8e76234a3b834d9c5f889c14b098b7a7e18f0 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:28:18 +0200 Subject: [PATCH 022/103] Added Zero and Dimension exceptions --- Math/Exception/ZeroDevisionException.php | 44 +++++++++++++++++++ Math/Finance/FinanceFormulas.php | 5 ++- .../Exception/InvalidDimensionException.php | 44 +++++++++++++++++++ Math/Matrix/Matrix.php | 20 +++++---- Math/Statistic/Average.php | 13 +++--- .../Regression/LevelLogRegression.php | 6 ++- .../Regression/LogLevelRegression.php | 6 ++- .../Forecast/Regression/LogLogRegression.php | 6 ++- .../Regression/RegressionAbstract.php | 7 +-- Math/Statistic/MeasureOfDispersion.php | 15 ++++--- 10 files changed, 135 insertions(+), 31 deletions(-) create mode 100644 Math/Exception/ZeroDevisionException.php create mode 100644 Math/Matrix/Exception/InvalidDimensionException.php diff --git a/Math/Exception/ZeroDevisionException.php b/Math/Exception/ZeroDevisionException.php new file mode 100644 index 000000000..e8a904cdb --- /dev/null +++ b/Math/Exception/ZeroDevisionException.php @@ -0,0 +1,44 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Math\Exception; + +/** + * Zero devision exception. + * + * @category Framework + * @package phpOMS/Uri + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class ZeroDevisionException extends \UnexpectedValueException +{ + /** + * Constructor. + * + * @param string $message Exception message + * @param int $code Exception code + * @param \Exception Previous exception + * + * @since 1.0.0 + */ + public function __construct(string $message = '', int $code = 0, \Exception $previous = null) + { + parent::__construct('Devision by zero is not defined.', $code, $previous); + } +} diff --git a/Math/Finance/FinanceFormulas.php b/Math/Finance/FinanceFormulas.php index dec6931fb..dfa52c8fa 100644 --- a/Math/Finance/FinanceFormulas.php +++ b/Math/Finance/FinanceFormulas.php @@ -17,6 +17,7 @@ declare(strict_types=1); namespace phpOMS\Math\Finance; use phpOMS\Math\Statistic\Average; +use phpOMS\Math\Matrix\Exception\InvalidDimensionException; /** * Finance class. @@ -1036,7 +1037,7 @@ class FinanceFormulas * * @return float * - * @throws \Exception + * @throws InvalidDimensionException Throws this exception if the length of the array is 0 * * @since 1.0.0 */ @@ -1045,7 +1046,7 @@ class FinanceFormulas $count = count($C); if ($count === 0) { - throw new \Exception('Dimension'); + throw new InvalidDimensionException($count); } $npv = -$C[0]; diff --git a/Math/Matrix/Exception/InvalidDimensionException.php b/Math/Matrix/Exception/InvalidDimensionException.php new file mode 100644 index 000000000..c4ac860d6 --- /dev/null +++ b/Math/Matrix/Exception/InvalidDimensionException.php @@ -0,0 +1,44 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Math\Matrix\Exception; + +/** + * Zero devision exception. + * + * @category Framework + * @package phpOMS/Uri + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class InvalidDimensionException extends \UnexpectedValueException +{ + /** + * Constructor. + * + * @param string $message Exception message + * @param int $code Exception code + * @param \Exception Previous exception + * + * @since 1.0.0 + */ + public function __construct(string $message, int $code = 0, \Exception $previous = null) + { + parent::__construct('Dimension "' . $message . '" is not valid.', $code, $previous); + } +} diff --git a/Math/Matrix/Matrix.php b/Math/Matrix/Matrix.php index 83ac066ec..b6ce4181a 100644 --- a/Math/Matrix/Matrix.php +++ b/Math/Matrix/Matrix.php @@ -16,6 +16,8 @@ declare(strict_types=1); namespace phpOMS\Math\Matrix; +use phpOMS\Math\Matrix\Exception\InvalidDimensionException; + /** * Matrix class * @@ -85,14 +87,14 @@ class Matrix implements \ArrayAccess, \Iterator * @param int $n Column * @param int $value Value * - * @throws DimensionException + * @throws InvalidDimensionException * * @since 1.0.0 */ public function set(int $m, int $n, $value) /* : void */ { if (!isset($this->matrix[$m][$n])) { - throw new DimensionException($m, $n); + throw new InvalidDimensionException($m . 'x' . $n); } $this->matrix[$m][$n] = $value; @@ -106,14 +108,14 @@ class Matrix implements \ArrayAccess, \Iterator * * @return mixed * - * @throws DimensionException + * @throws InvalidDimensionException * * @since 1.0.0 */ public function get(int $m, int $n) { if (!isset($this->matrix[$m][$n])) { - throw new DimensionException($m, $n); + throw new InvalidDimensionException($m . 'x' . $n); } return $this->matrix[$m][$n]; @@ -172,7 +174,7 @@ class Matrix implements \ArrayAccess, \Iterator public function setMatrix(array $matrix) : Matrix { if ($this->m !== count($matrix) || $this->n !== count($matrix[0])) { - throw new DimensionException(count($matrix), count($matrix[0])); + throw new InvalidDimensionException(count($matrix) . 'x' . count($matrix[0])); } $this->matrix = $matrix; @@ -238,7 +240,7 @@ class Matrix implements \ArrayAccess, \Iterator private function addMatrix(Matrix $matrix) : Matrix { if ($this->m !== $matrix->getM() || $this->n !== $matrix->getN()) { - throw new DimensionException($matrix->getM(), $matrix->getN()); + throw new InvalidDimensionException($matrix->getM() . 'x' . $matrix->getN()); } $matrixArr = $matrix->getMatrix(); @@ -346,7 +348,7 @@ class Matrix implements \ArrayAccess, \Iterator $mDim = $matrix->getM(); if ($this->n !== $mDim) { - throw new DimensionException($mDim, $nDim); + throw new InvalidDimensionException($mDim . 'x' . $nDim); } $matrixArr = $matrix->getMatrix(); @@ -485,14 +487,14 @@ class Matrix implements \ArrayAccess, \Iterator * * @return Matrix * - * @throws \Exception + * @throws InvalidDimensionException * * @since 1.0.0 */ public function inverse(int $algorithm = InverseType::GAUSS_JORDAN) : Matrix { if ($this->n !== $this->m) { - throw new DimensionException($this->m, $this->n); + throw new InvalidDimensionException($this->m . 'x' . $this->n); } switch ($algorithm) { diff --git a/Math/Statistic/Average.php b/Math/Statistic/Average.php index b24bce3d9..9ff91afa9 100644 --- a/Math/Statistic/Average.php +++ b/Math/Statistic/Average.php @@ -16,6 +16,9 @@ declare(strict_types=1); namespace phpOMS\Math\Statistic; +use phpOMS\Math\Exception\ZeroDevisionException; +use phpOMS\Math\Matrix\Exception\InvalidDimensionException; + /** * Average class. * @@ -130,14 +133,14 @@ class Average * * @return float * - * @throws \Exception + * @throws InvalidDimensionException This exception is thrown in case both parameters have different array length * * @since 1.0.0 */ public static function weightedAverage(array $values, array $weight) : float { if (($count = count($values)) !== count($weight)) { - throw new \Exception('Dimension'); + throw new InvalidDimensionException(count($values) . 'x' . count($weight)); } $avg = 0.0; @@ -167,7 +170,7 @@ class Average $count = count($values); if ($count === 0) { - throw new \Exception('Division zero'); + throw new ZeroDevisionException(); } return array_sum($values) / $count; @@ -239,7 +242,7 @@ class Average $count = count($values); if ($count === 0) { - throw new \Exception('Division zero'); + throw new ZeroDevisionException(); } return pow(array_product($values), 1 / $count); @@ -272,7 +275,7 @@ class Average foreach ($values as $value) { if ($value === 0) { - throw new \Exception('Division zero'); + throw new ZeroDevisionException(); } $sum += 1 / $value; diff --git a/Math/Statistic/Forecast/Regression/LevelLogRegression.php b/Math/Statistic/Forecast/Regression/LevelLogRegression.php index 63a219150..24d858911 100644 --- a/Math/Statistic/Forecast/Regression/LevelLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLogRegression.php @@ -16,6 +16,8 @@ declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; +use phpOMS\Math\Matrix\Exception\InvalidDimensionException; + /** * Regression class. * @@ -33,8 +35,8 @@ class LevelLogRegression extends RegressionAbstract */ public static function getRegression(array $x, array $y) : array { - if (($c = count($x)) != count($y)) { - throw new \Exception('Dimension'); + if (($c = count($x)) !== count($y)) { + throw new InvalidDimensionException($c . 'x' . count($y)); } for ($i = 0; $i < $c; $i++) { diff --git a/Math/Statistic/Forecast/Regression/LogLevelRegression.php b/Math/Statistic/Forecast/Regression/LogLevelRegression.php index bc0102c33..ea1b3d663 100644 --- a/Math/Statistic/Forecast/Regression/LogLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLevelRegression.php @@ -16,6 +16,8 @@ declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; +use phpOMS\Math\Matrix\Exception\InvalidDimensionException; + /** * Regression class. * @@ -33,8 +35,8 @@ class LogLevelRegression extends RegressionAbstract */ public static function getRegression(array $x, array $y) : array { - if (($c = count($x)) != count($y)) { - throw new \Exception('Dimension'); + if (($c = count($x)) !== count($y)) { + throw new InvalidDimensionException($c . 'x' . count($y)); } for ($i = 0; $i < $c; $i++) { diff --git a/Math/Statistic/Forecast/Regression/LogLogRegression.php b/Math/Statistic/Forecast/Regression/LogLogRegression.php index 2350cc3a4..cb823cf78 100644 --- a/Math/Statistic/Forecast/Regression/LogLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLogRegression.php @@ -16,6 +16,8 @@ declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; +use phpOMS\Math\Matrix\Exception\InvalidDimensionException; + /** * Regression class. * @@ -33,8 +35,8 @@ class LogLogRegression extends RegressionAbstract */ public static function getRegression(array $x, array $y) : array { - if (($c = count($x)) != count($y)) { - throw new \Exception('Dimension'); + if (($c = count($x)) !== count($y)) { + throw new InvalidDimensionException($c . 'x' . count($y)); } for ($i = 0; $i < $c; $i++) { diff --git a/Math/Statistic/Forecast/Regression/RegressionAbstract.php b/Math/Statistic/Forecast/Regression/RegressionAbstract.php index ca674f01e..7c6821a82 100644 --- a/Math/Statistic/Forecast/Regression/RegressionAbstract.php +++ b/Math/Statistic/Forecast/Regression/RegressionAbstract.php @@ -18,6 +18,7 @@ declare(strict_types=1); use phpOMS\Math\Statistic\Average; use phpOMS\Math\Statistic\Forecast\ForecastIntervalMultiplier; use phpOMS\Math\Statistic\MeasureOfDispersion; +use phpOMS\Math\Matrix\Exception\InvalidDimensionException; abstract class RegressionAbstract { @@ -31,14 +32,14 @@ abstract class RegressionAbstract * * @return array [b0 => ?, b1 => ?] * - * @throws \Exception + * @throws InvalidDimensionException Throws this exception if the dimension of both arrays is not equal. * * @since 1.0.0 */ public static function getRegression(array $x, array $y) : array { - if (count($x) != count($y)) { - throw new \Exception('Dimension'); + if (count($x) !== count($y)) { + throw new InvalidDimensionException(count($x) . 'x' . count($y)); } $b1 = self::getBeta1($x, $y); diff --git a/Math/Statistic/MeasureOfDispersion.php b/Math/Statistic/MeasureOfDispersion.php index 6c66d9622..7fe6bd519 100644 --- a/Math/Statistic/MeasureOfDispersion.php +++ b/Math/Statistic/MeasureOfDispersion.php @@ -16,6 +16,9 @@ declare(strict_types=1); namespace phpOMS\Math\Statistic; +use phpOMS\Math\Exception\ZeroDevisionException; +use phpOMS\Math\Matrix\Exception\InvalidDimensionException; + /** * Measure of dispersion. * @@ -67,7 +70,7 @@ class MeasureOfDispersion $mean = Average::arithmeticMean($values); if ($mean === 0) { - throw new \Exception('Division zero'); + throw new ZeroDevisionException(); } return self::standardDeviation($values) / $mean; @@ -107,7 +110,7 @@ class MeasureOfDispersion $count = count($values); if ($count < 2) { - throw new \Exception('Division zero'); + throw new ZeroDevisionException(); } return $count * self::empiricalVariance($values) / ($count - 1); @@ -131,7 +134,7 @@ class MeasureOfDispersion $count = count($values); if ($count === 0) { - throw new \Exception('Division zero'); + throw new ZeroDevisionException(); } $mean = Average::arithmeticMean($values); @@ -154,7 +157,7 @@ class MeasureOfDispersion * * @return float * - * @throws \Exception + * @throws InvalidDimensionException * * @since 1.0.0 */ @@ -163,11 +166,11 @@ class MeasureOfDispersion $count = count($x); if ($count < 2) { - throw new \Exception('Division zero'); + throw new ZeroDevisionException(); } if ($count !== count($y)) { - throw new \Exception('Dimensions'); + throw new InvalidDimensionException($count . 'x' . count($y)); } $xMean = Average::arithmeticMean($x); From 7d3f0d8d6445e001a2847c0f4979f88eb42a4735 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:28:34 +0200 Subject: [PATCH 023/103] Remove unused exception --- Math/Matrix/DimensionException.php | 45 -------- Validation/Base/BIC.php | 50 --------- Validation/Base/CreditCard.php | 100 ----------------- Validation/Base/Email.php | 60 ---------- Validation/Base/Hostname.php | 50 --------- Validation/Base/Iban.php | 174 ----------------------------- Validation/Base/IbanEnum.php | 115 ------------------- Validation/Base/IbanErrorType.php | 38 ------- Validation/Base/Ip.php | 60 ---------- 9 files changed, 692 deletions(-) delete mode 100644 Math/Matrix/DimensionException.php delete mode 100644 Validation/Base/BIC.php delete mode 100644 Validation/Base/CreditCard.php delete mode 100644 Validation/Base/Email.php delete mode 100644 Validation/Base/Hostname.php delete mode 100644 Validation/Base/Iban.php delete mode 100644 Validation/Base/IbanEnum.php delete mode 100644 Validation/Base/IbanErrorType.php delete mode 100644 Validation/Base/Ip.php diff --git a/Math/Matrix/DimensionException.php b/Math/Matrix/DimensionException.php deleted file mode 100644 index 29d1b9d66..000000000 --- a/Math/Matrix/DimensionException.php +++ /dev/null @@ -1,45 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Math\Matrix; - -/** - * Permission exception class. - * - * @category Framework - * @package phpOMS\System\File - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class DimensionException extends \RuntimeException -{ - /** - * Constructor. - * - * @param int $m Dimension M - * @param int $n Dimension N - * @param int $code Exception code - * @param \Exception Previous exception - * - * @since 1.0.0 - */ - public function __construct($m, $n, int $code = 0, \Exception $previous = null) - { - parent::__construct('Dimension of "' . $n . '-' . $m . '" invalid.', $code, $previous); - } -} diff --git a/Validation/Base/BIC.php b/Validation/Base/BIC.php deleted file mode 100644 index 26d584ffa..000000000 --- a/Validation/Base/BIC.php +++ /dev/null @@ -1,50 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Validation\Base; - -use phpOMS\Validation\ValidatorAbstract; - -/** - * Validator abstract. - * - * @category Validation - * @package Framework - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class BIC extends ValidatorAbstract -{ - - /** - * Constructor. - * - * @since 1.0.0 - */ - public function __construct() - { - } - - /** - * {@inheritdoc} - */ - public static function isValid($value) : bool - { - return (bool) preg_match('/^[a-z]{6}[0-9a-z]{2}([0-9a-z]{3})?\z/i', $value); - } -} diff --git a/Validation/Base/CreditCard.php b/Validation/Base/CreditCard.php deleted file mode 100644 index 4c55c03d6..000000000 --- a/Validation/Base/CreditCard.php +++ /dev/null @@ -1,100 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Validation\Base; - -use phpOMS\Validation\ValidatorAbstract; - -/** - * Validator abstract. - * - * @category Validation - * @package Framework - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -abstract class CreditCard extends ValidatorAbstract -{ - - /** - * Constructor. - * - * @since 1.0.0 - */ - public function __construct() - { - } - - /** - * {@inheritdoc} - */ - public static function isValid($value) : bool - { - $value = preg_replace('/\D/', '', $value); - - // Set the string length and parity - $number_length = strlen($value); - $parity = $number_length % 2; - - // Loop through each digit and do the maths - $total = 0; - for ($i = 0; $i < $number_length; $i++) { - $digit = $value[$i]; - // Multiply alternate digits by two - if ($i % 2 == $parity) { - $digit *= 2; - // If the sum is two digits, add them together (in effect) - if ($digit > 9) { - $digit -= 9; - } - } - // Total up the digits - $total += $digit; - } - - // If the total mod 10 equals 0, the value is valid - return ($total % 10 == 0) ? true : false; - } - - /** - * Luhn algorithm or mod 10 algorithm is used to verify credit cards. - * - * @param string $num Credit card number. - * - * @return bool Returns true if the number is a valid credit card and false if it isn't. - * - * @since 1.0.0 - */ - public static function luhnTest(string $num) : bool - { - $len = strlen($num); - $sum = 0; - - for ($i = $len - 1; $i >= 0; $i--) { - $ord = ord($num[$i]); - - if (($len - 1) & $i) { - $sum += $ord; - } else { - $sum += $ord / 5 + (2 * $ord) % 10; - } - } - - return $sum % 10 == 0; - } -} diff --git a/Validation/Base/Email.php b/Validation/Base/Email.php deleted file mode 100644 index 6091e70e1..000000000 --- a/Validation/Base/Email.php +++ /dev/null @@ -1,60 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Validation\Base; - -use phpOMS\Validation\ValidatorAbstract; - -/** - * Validator abstract. - * - * @category Validation - * @package Framework - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class Email extends ValidatorAbstract -{ - - /** - * Constructor. - * - * @since 1.0.0 - */ - private function __construct() - { - } - - /** - * {@inheritdoc} - */ - public static function isValid(string $value) : bool - { - if (filter_var($value, FILTER_VALIDATE_EMAIL) === false) { - self::$msg = 'Invalid Email by filter_var standards'; - self::$error = 1; - - return false; - } - - self::$msg = ''; - self::$error = 0; - - return true; - } -} diff --git a/Validation/Base/Hostname.php b/Validation/Base/Hostname.php deleted file mode 100644 index 9421c9c5c..000000000 --- a/Validation/Base/Hostname.php +++ /dev/null @@ -1,50 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Validation\Base; - -use phpOMS\Validation\ValidatorAbstract; - -/** - * Validator abstract. - * - * @category Validation - * @package Framework - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -abstract class Hostname extends ValidatorAbstract -{ - - /** - * Constructor. - * - * @since 1.0.0 - */ - public function __construct() - { - } - - /** - * {@inheritdoc} - */ - public static function isValid($value) : bool - { - return filter_var(gethostbyname($value), FILTER_VALIDATE_IP) !== false; - } -} diff --git a/Validation/Base/Iban.php b/Validation/Base/Iban.php deleted file mode 100644 index 1c2a9c56b..000000000 --- a/Validation/Base/Iban.php +++ /dev/null @@ -1,174 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Validation\Base; - -use phpOMS\Validation\ValidatorAbstract; - - -/** - * Validator abstract. - * - * @category Validation - * @package Framework - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -abstract class Iban extends ValidatorAbstract -{ - /** - * Constructor. - * - * @since 1.0.0 - */ - private function __construct() - { - } - - /** - * @param string $value Iban to validate - * - * @return bool - * - * @since 1.0.0 - */ - public static function isValid($value) : bool - { - $value = str_replace(' ', '', strtolower($value)); - $enumName = 'C_' . strtoupper(substr($value, 0, 2)); - - if (!IbanEnum::isValidName($enumName)) { - self::$error = IbanErrorType::INVALID_COUNTRY; - - return false; - } - - $layout = str_replace(' ', '', IbanEnum::getByName($enumName)); - - if (strlen($value) !== strlen($layout)) { - self::$error = IbanErrorType::INVALID_LENGTH; - - return false; - } - - if (!self::validateZeros($value, $layout)) { - self::$error = IbanErrorType::EXPECTED_ZERO; - - return false; - } - - if (!self::validateNumeric($value, $layout)) { - self::$error = IbanErrorType::EXPECTED_NUMERIC; - - return false; - } - - if (!self::validateChecksum($value)) { - self::$error = IbanErrorType::INVALID_CHECKSUM; - - return false; - } - - return true; - } - - /** - * Validate positions that should have zeros - * - * @param string $iban Iban to validate - * @param string $layout Iban layout - * - * @return bool - * - * @since 1.0.0 - */ - private static function validateZeros(string $iban, string $layout) : bool - { - if (strpos($layout, '0') === false) { - return true; - } - - $lastPos = 0; - while (($lastPos = strpos($layout, '0', $lastPos)) !== false) { - if ($iban[$lastPos] !== '0') { - return false; - } - - $lastPos += 1; - } - - return true; - } - - /** - * Validate positions that should be numeric - * - * @param string $iban Iban to validate - * @param string $layout Iban layout - * - * @return bool - * - * @since 1.0.0 - */ - private static function validateNumeric(string $iban, string $layout) : bool - { - if (strpos($layout, 'n') === false) { - return true; - } - - $lastPos = 0; - while (($lastPos = strpos($layout, 'n', $lastPos)) !== false) { - if (!is_numeric($iban[$lastPos])) { - return false; - } - - $lastPos += 1; - } - - return true; - } - - /** - * Validate checksum - * - * @param string $iban Iban to validate - * - * @return bool - * - * @since 1.0.0 - */ - private static function validateChecksum(string $iban) : bool - { - $chars = ['a' => 10, 'b' => 11, 'c' => 12, 'd' => 13, 'e' => 14, 'f' => 15, 'g' => 16, 'h' => 17, 'i' => 18, - 'j' => 19, 'k' => 20, 'l' => 21, 'm' => 22, 'n' => 23, 'o' => 24, 'p' => 25, 'q' => 26, 'r' => 27, - 's' => 28, 't' => 29, 'u' => 30, 'v' => 31, 'w' => 32, 'x' => 33, 'y' => 34, 'z' => 35,]; - $moved = substr($iban, 4) . substr($iban, 0, 4); - $movedArray = str_split($moved); - $new = ''; - - foreach ($movedArray as $key => $value) { - if (!is_numeric($movedArray[$key])) { - $movedArray[$key] = $chars[$movedArray[$key]]; - } - - $new .= $movedArray[$key]; - } - - return bcmod($new, '97') == 1; - } -} diff --git a/Validation/Base/IbanEnum.php b/Validation/Base/IbanEnum.php deleted file mode 100644 index c6a9af503..000000000 --- a/Validation/Base/IbanEnum.php +++ /dev/null @@ -1,115 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Validation\Base; - -use phpOMS\Datatypes\Enum; - -/** - * Iban layout definition. - * - * @category Framework - * @package phpOMS\Localization - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class IbanEnum extends Enum -{ - /* public */ const C_AL = 'ALkk bbbs sssx cccc cccc cccc cccc'; - /* public */ const C_AD = 'ADkk bbbb ssss cccc cccc cccc'; - /* public */ const C_AT = 'ATkk bbbb bccc cccc cccc'; - /* public */ const C_AZ = 'AZkk bbbb cccc cccc cccc cccc cccc '; - /* public */ const C_BH = 'BHkk bbbb cccc cccc cccc cc'; - /* public */ const C_BE = 'BEkk bbbc cccc ccxx'; - /* public */ const C_BA = 'BAkk bbbs sscc cccc ccxx'; - /* public */ const C_BR = 'BRkk bbbb bbbb ssss sccc cccc ccct n'; - /* public */ const C_BG = 'BGkk bbbb ssss ttcc cccc cc'; - /* public */ const C_CR = 'CRkk bbbc cccc cccc cccc c'; - /* public */ const C_HR = 'HRkk bbbb bbbc cccc cccc c'; - /* public */ const C_CY = 'CYkk bbbs ssss cccc cccc cccc cccc'; - /* public */ const C_CZ = 'CZkk bbbb ssss sscc cccc cccc'; - /* public */ const C_DK = 'DKkk bbbb cccc cccc cc'; - /* public */ const C_DO = 'DOkk bbbb cccc cccc cccc cccc cccc'; - /* public */ const C_TL = 'TLkk bbbc cccc cccc cccc cxx'; - /* public */ const C_EE = 'EEkk bbss cccc cccc cccx'; - /* public */ const C_FO = 'FOkk bbbb cccc cccc cx'; - /* public */ const C_FI = 'FIkk bbbb bbcc cccc cx'; - /* public */ const C_FR = 'FRkk bbbb bsss sscc cccc cccc cxx'; - /* public */ const C_GE = 'GEkk bbcc cccc cccc cccc cc'; - /* public */ const C_DE = 'DEkk bbbb bbbb cccc cccc cc'; - /* public */ const C_GI = 'GIkk bbbb cccc cccc cccc ccc'; - /* public */ const C_GR = 'GRkk bbbs sssc cccc cccc cccc ccc'; - /* public */ const C_GL = 'GLkk bbbb cccc cccc cc'; - /* public */ const C_GT = 'GTkk bbbb mmtt cccc cccc cccc cccc'; - /* public */ const C_HU = 'HUkk bbbs sssk cccc cccc cccc cccx'; - /* public */ const C_IS = 'ISkk bbbb sscc cccc iiii iiii ii'; - /* public */ const C_IE = 'IEkk aaaa bbbb bbcc cccc cc'; - /* public */ const C_IL = 'ILkk bbbn nncc cccc cccc ccc'; - /* public */ const C_IT = 'ITkk xbbb bbss sssc cccc cccc ccc'; - /* public */ const C_JO = 'JOkk bbbb ssss cccc cccc cccc cccc cc'; - /* public */ const C_KZ = 'KZkk bbbc cccc cccc cccc'; - /* public */ const C_XK = 'XKkk bbbb cccc cccc cccc'; - /* public */ const C_KW = 'KWkk bbbb cccc cccc cccc cccc cccc cc'; - /* public */ const C_LV = 'LVkk bbbb cccc cccc cccc c'; - /* public */ const C_LB = 'LBkk bbbb cccc cccc cccc cccc cccc'; - /* public */ const C_LI = 'LIkk bbbb bccc cccc cccc c'; - /* public */ const C_LT = 'LTkk bbbb bccc cccc cccc'; - /* public */ const C_LU = 'LUkk bbbc cccc cccc cccc'; - /* public */ const C_MK = 'MKkk bbbc cccc cccc cxx'; - /* public */ const C_MT = 'MTkk bbbb ssss sccc cccc cccc cccc ccc'; - /* public */ const C_MR = 'MRkk bbbb bsss sscc cccc cccc cxx'; - /* public */ const C_MU = 'MUkk bbbb bbss cccc cccc cccc 000m mm'; - /* public */ const C_MC = 'MCkk bbbb bsss sscc cccc cccc cxx'; - /* public */ const C_MD = 'MDkk bbcc cccc cccc cccc cccc'; - /* public */ const C_ME = 'MEkk bbbc cccc cccc cccc xx'; - /* public */ const C_NL = 'NLkk bbbb cccc cccc cc'; - /* public */ const C_NO = 'NOkk bbbb cccc ccx'; - /* public */ const C_PK = 'PKkk bbbb cccc cccc cccc cccc'; - /* public */ const C_PS = 'PSkk bbbb xxxx xxxx xccc cccc cccc c'; - /* public */ const C_PL = 'PLkk bbbs sssx cccc cccc cccc cccc'; - /* public */ const C_PT = 'PTkk bbbb ssss cccc cccc cccx x'; - /* public */ const C_QA = 'QAkk bbbb cccc cccc cccc cccc cccc c'; - /* public */ const C_RO = 'ROkk bbbb cccc cccc cccc cccc'; - /* public */ const C_SM = 'SMkk xbbb bbss sssc cccc cccc ccc'; - /* public */ const C_SA = 'SAkk bbcc cccc cccc cccc cccc'; - /* public */ const C_RS = 'RSkk bbbc cccc cccc cccc xx'; - /* public */ const C_SK = 'SKkk bbbb ssss sscc cccc cccc'; - /* public */ const C_SI = 'SIkk bbss sccc cccc cxx'; - /* public */ const C_ES = 'ESkk bbbb ssss xxcc cccc cccc'; - /* public */ const C_SE = 'SEkk bbbc cccc cccc cccc cccc'; - /* public */ const C_CH = 'CHkk bbbb bccc cccc cccc c'; - /* public */ const C_TN = 'TNkk bbss sccc cccc cccc cccc'; - /* public */ const C_TR = 'TRkk bbbb bxcc cccc cccc cccc cc'; - /* public */ const C_UA = 'UAkk bbbb bbcc cccc cccc cccc cccc c'; - /* public */ const C_AE = 'AEkk bbbc cccc cccc cccc ccc'; - /* public */ const C_GB = 'GBkk bbbb ssss sscc cccc cc'; - /* public */ const C_VG = 'VGkk bbbb cccc cccc cccc cccc'; - /* public */ const C_SN = 'SNkk annn nnnn nnnn nnnn nnnn nnnn'; - /* public */ const C_MZ = 'MZkk nnnn nnnn nnnn nnnn nnnn n'; - /* public */ const C_ML = 'MLkk annn nnnn nnnn nnnn nnnn nnnn'; - /* public */ const C_MG = 'MGkk nnnn nnnn nnnn nnnn nnnn nnn'; - /* public */ const C_CI = 'CIkk annn nnnn nnnn nnnn nnnn nnnn'; - /* public */ const C_IR = 'IRkk nnnn nnnn nnnn nnnn nnnn nn'; - /* public */ const C_CV = 'CVkk nnnn nnnn nnnn nnnn nnnn n'; - /* public */ const C_CM = 'CMkk nnnn nnnn nnnn nnnn nnnn nnn'; - /* public */ const C_BI = 'BIkk nnnn nnnn nnnn'; - /* public */ const C_BF = 'BFkk nnnn nnnn nnnn nnnn nnnn nnn'; - /* public */ const C_BJ = 'BJkk annn nnnn nnnn nnnn nnnn nnnn'; - /* public */ const C_AO = 'AOkk nnnn nnnn nnnn nnnn nnnn n'; - /* public */ const C_DZ = 'DZkk nnnn nnnn nnnn nnnn nnnn'; -} diff --git a/Validation/Base/IbanErrorType.php b/Validation/Base/IbanErrorType.php deleted file mode 100644 index 29880dc1c..000000000 --- a/Validation/Base/IbanErrorType.php +++ /dev/null @@ -1,38 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Validation\Base; - -use phpOMS\Datatypes\Enum; - -/** - * Iban error type enum. - * - * @category Framework - * @package phpOMS\Datatypes - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -abstract class IbanErrorType extends Enum -{ - /* public */ const INVALID_COUNTRY = 1; - /* public */ const INVALID_LENGTH = 2; - /* public */ const INVALID_CHECKSUM = 4; - /* public */ const EXPECTED_ZERO = 8; - /* public */ const EXPECTED_NUMERIC = 16; -} diff --git a/Validation/Base/Ip.php b/Validation/Base/Ip.php deleted file mode 100644 index 6404d4b54..000000000 --- a/Validation/Base/Ip.php +++ /dev/null @@ -1,60 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\Validation\Base; - -use phpOMS\Validation\ValidatorAbstract; - -/** - * Validator abstract. - * - * @category Validation - * @package Framework - * @author OMS Development Team - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -abstract class Ip extends ValidatorAbstract -{ - - /** - * Constructor. - * - * @since 1.0.0 - */ - public function __construct() - { - } - - /** - * {@inheritdoc} - */ - public static function isValid($value) : bool - { - return filter_var($value, FILTER_VALIDATE_IP) !== false; - } - - public static function isValidIpv6($value) : bool - { - return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) !== false; - } - - public static function isValidIpv4($value) : bool - { - return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) !== false; - } -} From faefb6275458ccfc5a063ace6b437a94cd7c7215 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:28:54 +0200 Subject: [PATCH 024/103] Fixed default localization values --- Localization/Default/en_US.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Localization/Default/en_US.json b/Localization/Default/en_US.json index ebcb6af2e..6ba33326d 100644 --- a/Localization/Default/en_US.json +++ b/Localization/Default/en_US.json @@ -17,7 +17,7 @@ "very_heavy": "t" }, "speed": { - "very_slow": "ms", + "very_slow": "ns", "slow": "ms", "medium": "kph", "fast": "kph", @@ -25,19 +25,19 @@ "sea": "knot" }, "length": { - "very_short": "mm", - "short": "cm", - "medium": "m", - "long": "km", + "very_short": "nm", + "short": "mm", + "medium": "cm", + "long": "m", "very_long": "km", "sea": "mile" }, "area": { - "very_small": "mm", - "small": "cm", - "medium": "m", - "large": "km", - "very_large": "ha" + "very_small": "nm", + "small": "mm", + "medium": "cm", + "large": "m", + "very_large": "km" }, "volume": { "very_small": "ml", From 939253aa950026161c6f18a26ad19d978cb93f57 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:29:07 +0200 Subject: [PATCH 025/103] Remove unused exception --- .../Connection/ConnectionException.php | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 DataStorage/Database/Connection/ConnectionException.php diff --git a/DataStorage/Database/Connection/ConnectionException.php b/DataStorage/Database/Connection/ConnectionException.php deleted file mode 100644 index 8c9a873d0..000000000 --- a/DataStorage/Database/Connection/ConnectionException.php +++ /dev/null @@ -1,22 +0,0 @@ - - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -declare(strict_types=1); - -namespace phpOMS\DataStorage\Database\Connection; - -abstract class ConnectionException extends \Exception -{ - -} \ No newline at end of file From 33849c8a1fcbd4ea25afcbe4729ef73f25d7212f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:29:23 +0200 Subject: [PATCH 026/103] Added custom exceptions --- .../Database/Connection/MysqlConnection.php | 13 ++--- DataStorage/Database/DataMapperAbstract.php | 15 +++--- .../InvalidConnectionConfigException.php | 44 +++++++++++++++++ .../Exception/InvalidMapperException.php | 48 +++++++++++++++++++ 4 files changed, 107 insertions(+), 13 deletions(-) create mode 100644 DataStorage/Database/Exception/InvalidConnectionConfigException.php create mode 100644 DataStorage/Database/Exception/InvalidMapperException.php diff --git a/DataStorage/Database/Connection/MysqlConnection.php b/DataStorage/Database/Connection/MysqlConnection.php index af4c2ed02..719031e69 100644 --- a/DataStorage/Database/Connection/MysqlConnection.php +++ b/DataStorage/Database/Connection/MysqlConnection.php @@ -20,6 +20,7 @@ use phpOMS\DataStorage\Database\DatabaseStatus; use phpOMS\DataStorage\Database\DatabaseType; use phpOMS\DataStorage\Database\Query\Grammar\MysqlGrammar; use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGrammar; +use phpOMS\DataStorage\Database\Exception\InvalidConnectionConfigException; /** * Database handler. @@ -62,27 +63,27 @@ class MysqlConnection extends ConnectionAbstract $this->dbdata = isset($dbdata) ? $dbdata : $this->dbdata; if(!isset($this->dbdata['db'])) { - throw new \Exception('db'); + throw new InvalidConnectionConfigException('db'); } if(!isset($this->dbdata['host'])) { - throw new \Exception('host'); + throw new InvalidConnectionConfigException('host'); } if(!isset($this->dbdata['port'])) { - throw new \Exception('port'); + throw new InvalidConnectionConfigException('port'); } if(!isset($this->dbdata['database'])) { - throw new \Exception('database'); + throw new InvalidConnectionConfigException('database'); } if(!isset($this->dbdata['login'])) { - throw new \Exception('login'); + throw new InvalidConnectionConfigException('login'); } if(!isset($this->dbdata['password'])) { - throw new \Exception('password'); + throw new InvalidConnectionConfigException('password'); } $this->close(); diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index 7552b6324..7165af099 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -20,6 +20,7 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; use phpOMS\DataStorage\Database\Query\Builder; use phpOMS\DataStorage\DataMapperInterface; use phpOMS\Message\RequestAbstract; +use phpOMS\DataStorage\Database\Exception\InvalidMapperException; /** * Datamapper for databases. @@ -460,7 +461,7 @@ class DataMapperAbstract implements DataMapperInterface * * @return void * - * @throws \Exception + * @throws InvalidMapperException * * @since 1.0.0 */ @@ -480,7 +481,7 @@ class DataMapperAbstract implements DataMapperInterface } if (!isset(static::$hasMany[$propertyName]['mapper'])) { - throw new \Exception('No mapper set for relation object.'); + throw new InvalidMapperException(); } /** @var DataMapperAbstract $mapper */ @@ -679,7 +680,7 @@ class DataMapperAbstract implements DataMapperInterface * * @return void * - * @throws \Exception + * @throws InvalidMapperException * * @since 1.0.0 */ @@ -699,7 +700,7 @@ class DataMapperAbstract implements DataMapperInterface } if (!isset(static::$hasMany[$propertyName]['mapper'])) { - throw new \Exception('No mapper set for relation object.'); + throw new InvalidMapperException(); } /** @var DataMapperAbstract $mapper */ @@ -984,7 +985,7 @@ class DataMapperAbstract implements DataMapperInterface * * @return void * - * @throws \Exception + * @throws InvalidMapperException * * @since 1.0.0 */ @@ -1004,7 +1005,7 @@ class DataMapperAbstract implements DataMapperInterface } if (!isset(static::$hasMany[$propertyName]['mapper'])) { - throw new \Exception('No mapper set for relation object.'); + throw new InvalidMapperException(); } /** @var DataMapperAbstract $mapper */ @@ -1406,7 +1407,7 @@ class DataMapperAbstract implements DataMapperInterface * * @return mixed * - * @throws \Exception + * @throws \UnexpectedValueException * * @since 1.0.0 */ diff --git a/DataStorage/Database/Exception/InvalidConnectionConfigException.php b/DataStorage/Database/Exception/InvalidConnectionConfigException.php new file mode 100644 index 000000000..f3fec1deb --- /dev/null +++ b/DataStorage/Database/Exception/InvalidConnectionConfigException.php @@ -0,0 +1,44 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\DataStorage\Database\Exception; + +/** + * Permission exception class. + * + * @category Framework + * @package phpOMS\System\File + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class InvalidConnectionConfigException extends \RuntimeException +{ + /** + * Constructor. + * + * @param string $message Exception message + * @param int $code Exception code + * @param \Exception Previous exception + * + * @since 1.0.0 + */ + public function __construct(string $message = '', int $code = 0, \Exception $previous = null) + { + parent::__construct('Missing config value for "'. $message .'".', $code, $previous); + } +} diff --git a/DataStorage/Database/Exception/InvalidMapperException.php b/DataStorage/Database/Exception/InvalidMapperException.php new file mode 100644 index 000000000..4e914f79d --- /dev/null +++ b/DataStorage/Database/Exception/InvalidMapperException.php @@ -0,0 +1,48 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\DataStorage\Database\Exception; + +/** + * Permission exception class. + * + * @category Framework + * @package phpOMS\System\File + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class InvalidMapperException extends \RuntimeException +{ + /** + * Constructor. + * + * @param string $message Exception message + * @param int $code Exception code + * @param \Exception Previous exception + * + * @since 1.0.0 + */ + public function __construct(string $message = '', int $code = 0, \Exception $previous = null) + { + if($message === '') { + parent::__construct('Empty mapper.', $code, $previous); + } else { + parent::__construct('Mapper "' . $message . '" is invalid.', $code, $previous); + } + } +} From 7c7977b846896ccac41b617cb6bd350f15324bd0 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:29:51 +0200 Subject: [PATCH 027/103] Made exceptions more specific --- Datatypes/Enum.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Datatypes/Enum.php b/Datatypes/Enum.php index af47943df..6ca1c31c5 100644 --- a/Datatypes/Enum.php +++ b/Datatypes/Enum.php @@ -85,14 +85,14 @@ abstract class Enum * * @return mixed * - * @throws \Exception Throws this exception if the constant is not defined in the enum class. + * @throws \UnexpectedValueException Throws this exception if the constant is not defined in the enum class. * * @since 1.0.0 */ public static function getByName(string $name) { if (!self::isValidName($name)) { - throw new \Exception('Undefined constant "' . $name . '"'); + throw new \UnexpectedValueException($name); } return constant('static::' . $name); @@ -105,8 +105,6 @@ abstract class Enum * * @return mixed * - * @throws \Exception Throws this exception if the constant is not defined in the enum class. - * * @since 1.0.0 */ public static function getName(string $value) From d831f1c50a9a7c86b4819d156e93f4a18e0b93be Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:30:17 +0200 Subject: [PATCH 028/103] Re-structured validation --- Datatypes/Iban.php | 4 +- Validation/Finance/BIC.php | 50 ++++++++ Validation/Finance/CreditCard.php | 100 +++++++++++++++ Validation/Finance/Iban.php | 174 +++++++++++++++++++++++++++ Validation/Finance/IbanEnum.php | 115 ++++++++++++++++++ Validation/Finance/IbanErrorType.php | 38 ++++++ Validation/ModelValidationTrait.php | 1 - Validation/Network/Email.php | 60 +++++++++ Validation/Network/Hostname.php | 50 ++++++++ Validation/Network/Ip.php | 60 +++++++++ Validation/Validator.php | 3 +- Validation/ValidatorAbstract.php | 2 +- Validation/ValidatorInterface.php | 14 ++- 13 files changed, 664 insertions(+), 7 deletions(-) create mode 100644 Validation/Finance/BIC.php create mode 100644 Validation/Finance/CreditCard.php create mode 100644 Validation/Finance/Iban.php create mode 100644 Validation/Finance/IbanEnum.php create mode 100644 Validation/Finance/IbanErrorType.php create mode 100644 Validation/Network/Email.php create mode 100644 Validation/Network/Hostname.php create mode 100644 Validation/Network/Ip.php diff --git a/Datatypes/Iban.php b/Datatypes/Iban.php index 767279f98..1ae324a27 100644 --- a/Datatypes/Iban.php +++ b/Datatypes/Iban.php @@ -16,7 +16,7 @@ declare(strict_types=1); namespace phpOMS\Datatypes; -use phpOMS\Validation\Base\IbanEnum; +use phpOMS\Validation\Finance\IbanEnum; /** * Iban class. @@ -65,7 +65,7 @@ class Iban implements \Serializable { $this->iban = self::normalize($iban); - if (!\phpOMS\Validation\Base\Iban::isValid($this->iban)) { + if (!\phpOMS\Validation\Finance\Iban::isValid($this->iban)) { throw new \InvalidArgumentException('Invalid IBAN'); } } diff --git a/Validation/Finance/BIC.php b/Validation/Finance/BIC.php new file mode 100644 index 000000000..b214451d5 --- /dev/null +++ b/Validation/Finance/BIC.php @@ -0,0 +1,50 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Validation\Finance; + +use phpOMS\Validation\ValidatorAbstract; + +/** + * Validator abstract. + * + * @category Validation + * @package Framework + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class BIC extends ValidatorAbstract +{ + + /** + * Constructor. + * + * @since 1.0.0 + */ + public function __construct() + { + } + + /** + * {@inheritdoc} + */ + public static function isValid($value) : bool + { + return (bool) preg_match('/^[a-z]{6}[0-9a-z]{2}([0-9a-z]{3})?\z/i', $value); + } +} diff --git a/Validation/Finance/CreditCard.php b/Validation/Finance/CreditCard.php new file mode 100644 index 000000000..785473cb1 --- /dev/null +++ b/Validation/Finance/CreditCard.php @@ -0,0 +1,100 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Validation\Finance; + +use phpOMS\Validation\ValidatorAbstract; + +/** + * Validator abstract. + * + * @category Validation + * @package Framework + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +abstract class CreditCard extends ValidatorAbstract +{ + + /** + * Constructor. + * + * @since 1.0.0 + */ + public function __construct() + { + } + + /** + * {@inheritdoc} + */ + public static function isValid($value) : bool + { + $value = preg_replace('/\D/', '', $value); + + // Set the string length and parity + $number_length = strlen($value); + $parity = $number_length % 2; + + // Loop through each digit and do the maths + $total = 0; + for ($i = 0; $i < $number_length; $i++) { + $digit = $value[$i]; + // Multiply alternate digits by two + if ($i % 2 == $parity) { + $digit *= 2; + // If the sum is two digits, add them together (in effect) + if ($digit > 9) { + $digit -= 9; + } + } + // Total up the digits + $total += $digit; + } + + // If the total mod 10 equals 0, the value is valid + return ($total % 10 == 0) ? true : false; + } + + /** + * Luhn algorithm or mod 10 algorithm is used to verify credit cards. + * + * @param string $num Credit card number. + * + * @return bool Returns true if the number is a valid credit card and false if it isn't. + * + * @since 1.0.0 + */ + public static function luhnTest(string $num) : bool + { + $len = strlen($num); + $sum = 0; + + for ($i = $len - 1; $i >= 0; $i--) { + $ord = ord($num[$i]); + + if (($len - 1) & $i) { + $sum += $ord; + } else { + $sum += $ord / 5 + (2 * $ord) % 10; + } + } + + return $sum % 10 == 0; + } +} diff --git a/Validation/Finance/Iban.php b/Validation/Finance/Iban.php new file mode 100644 index 000000000..09df00608 --- /dev/null +++ b/Validation/Finance/Iban.php @@ -0,0 +1,174 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Validation\Finance; + +use phpOMS\Validation\ValidatorAbstract; + + +/** + * Validator abstract. + * + * @category Validation + * @package Framework + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +abstract class Iban extends ValidatorAbstract +{ + /** + * Constructor. + * + * @since 1.0.0 + */ + private function __construct() + { + } + + /** + * @param string $value Iban to validate + * + * @return bool + * + * @since 1.0.0 + */ + public static function isValid($value) : bool + { + $value = str_replace(' ', '', strtolower($value)); + $enumName = 'C_' . strtoupper(substr($value, 0, 2)); + + if (!IbanEnum::isValidName($enumName)) { + self::$error = IbanErrorType::INVALID_COUNTRY; + + return false; + } + + $layout = str_replace(' ', '', IbanEnum::getByName($enumName)); + + if (strlen($value) !== strlen($layout)) { + self::$error = IbanErrorType::INVALID_LENGTH; + + return false; + } + + if (!self::validateZeros($value, $layout)) { + self::$error = IbanErrorType::EXPECTED_ZERO; + + return false; + } + + if (!self::validateNumeric($value, $layout)) { + self::$error = IbanErrorType::EXPECTED_NUMERIC; + + return false; + } + + if (!self::validateChecksum($value)) { + self::$error = IbanErrorType::INVALID_CHECKSUM; + + return false; + } + + return true; + } + + /** + * Validate positions that should have zeros + * + * @param string $iban Iban to validate + * @param string $layout Iban layout + * + * @return bool + * + * @since 1.0.0 + */ + private static function validateZeros(string $iban, string $layout) : bool + { + if (strpos($layout, '0') === false) { + return true; + } + + $lastPos = 0; + while (($lastPos = strpos($layout, '0', $lastPos)) !== false) { + if ($iban[$lastPos] !== '0') { + return false; + } + + $lastPos += 1; + } + + return true; + } + + /** + * Validate positions that should be numeric + * + * @param string $iban Iban to validate + * @param string $layout Iban layout + * + * @return bool + * + * @since 1.0.0 + */ + private static function validateNumeric(string $iban, string $layout) : bool + { + if (strpos($layout, 'n') === false) { + return true; + } + + $lastPos = 0; + while (($lastPos = strpos($layout, 'n', $lastPos)) !== false) { + if (!is_numeric($iban[$lastPos])) { + return false; + } + + $lastPos += 1; + } + + return true; + } + + /** + * Validate checksum + * + * @param string $iban Iban to validate + * + * @return bool + * + * @since 1.0.0 + */ + private static function validateChecksum(string $iban) : bool + { + $chars = ['a' => 10, 'b' => 11, 'c' => 12, 'd' => 13, 'e' => 14, 'f' => 15, 'g' => 16, 'h' => 17, 'i' => 18, + 'j' => 19, 'k' => 20, 'l' => 21, 'm' => 22, 'n' => 23, 'o' => 24, 'p' => 25, 'q' => 26, 'r' => 27, + 's' => 28, 't' => 29, 'u' => 30, 'v' => 31, 'w' => 32, 'x' => 33, 'y' => 34, 'z' => 35,]; + $moved = substr($iban, 4) . substr($iban, 0, 4); + $movedArray = str_split($moved); + $new = ''; + + foreach ($movedArray as $key => $value) { + if (!is_numeric($movedArray[$key])) { + $movedArray[$key] = $chars[$movedArray[$key]]; + } + + $new .= $movedArray[$key]; + } + + return bcmod($new, '97') == 1; + } +} diff --git a/Validation/Finance/IbanEnum.php b/Validation/Finance/IbanEnum.php new file mode 100644 index 000000000..65bccbaf7 --- /dev/null +++ b/Validation/Finance/IbanEnum.php @@ -0,0 +1,115 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Validation\Finance; + +use phpOMS\Datatypes\Enum; + +/** + * Iban layout definition. + * + * @category Framework + * @package phpOMS\Localization + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class IbanEnum extends Enum +{ + /* public */ const C_AL = 'ALkk bbbs sssx cccc cccc cccc cccc'; + /* public */ const C_AD = 'ADkk bbbb ssss cccc cccc cccc'; + /* public */ const C_AT = 'ATkk bbbb bccc cccc cccc'; + /* public */ const C_AZ = 'AZkk bbbb cccc cccc cccc cccc cccc '; + /* public */ const C_BH = 'BHkk bbbb cccc cccc cccc cc'; + /* public */ const C_BE = 'BEkk bbbc cccc ccxx'; + /* public */ const C_BA = 'BAkk bbbs sscc cccc ccxx'; + /* public */ const C_BR = 'BRkk bbbb bbbb ssss sccc cccc ccct n'; + /* public */ const C_BG = 'BGkk bbbb ssss ttcc cccc cc'; + /* public */ const C_CR = 'CRkk bbbc cccc cccc cccc c'; + /* public */ const C_HR = 'HRkk bbbb bbbc cccc cccc c'; + /* public */ const C_CY = 'CYkk bbbs ssss cccc cccc cccc cccc'; + /* public */ const C_CZ = 'CZkk bbbb ssss sscc cccc cccc'; + /* public */ const C_DK = 'DKkk bbbb cccc cccc cc'; + /* public */ const C_DO = 'DOkk bbbb cccc cccc cccc cccc cccc'; + /* public */ const C_TL = 'TLkk bbbc cccc cccc cccc cxx'; + /* public */ const C_EE = 'EEkk bbss cccc cccc cccx'; + /* public */ const C_FO = 'FOkk bbbb cccc cccc cx'; + /* public */ const C_FI = 'FIkk bbbb bbcc cccc cx'; + /* public */ const C_FR = 'FRkk bbbb bsss sscc cccc cccc cxx'; + /* public */ const C_GE = 'GEkk bbcc cccc cccc cccc cc'; + /* public */ const C_DE = 'DEkk bbbb bbbb cccc cccc cc'; + /* public */ const C_GI = 'GIkk bbbb cccc cccc cccc ccc'; + /* public */ const C_GR = 'GRkk bbbs sssc cccc cccc cccc ccc'; + /* public */ const C_GL = 'GLkk bbbb cccc cccc cc'; + /* public */ const C_GT = 'GTkk bbbb mmtt cccc cccc cccc cccc'; + /* public */ const C_HU = 'HUkk bbbs sssk cccc cccc cccc cccx'; + /* public */ const C_IS = 'ISkk bbbb sscc cccc iiii iiii ii'; + /* public */ const C_IE = 'IEkk aaaa bbbb bbcc cccc cc'; + /* public */ const C_IL = 'ILkk bbbn nncc cccc cccc ccc'; + /* public */ const C_IT = 'ITkk xbbb bbss sssc cccc cccc ccc'; + /* public */ const C_JO = 'JOkk bbbb ssss cccc cccc cccc cccc cc'; + /* public */ const C_KZ = 'KZkk bbbc cccc cccc cccc'; + /* public */ const C_XK = 'XKkk bbbb cccc cccc cccc'; + /* public */ const C_KW = 'KWkk bbbb cccc cccc cccc cccc cccc cc'; + /* public */ const C_LV = 'LVkk bbbb cccc cccc cccc c'; + /* public */ const C_LB = 'LBkk bbbb cccc cccc cccc cccc cccc'; + /* public */ const C_LI = 'LIkk bbbb bccc cccc cccc c'; + /* public */ const C_LT = 'LTkk bbbb bccc cccc cccc'; + /* public */ const C_LU = 'LUkk bbbc cccc cccc cccc'; + /* public */ const C_MK = 'MKkk bbbc cccc cccc cxx'; + /* public */ const C_MT = 'MTkk bbbb ssss sccc cccc cccc cccc ccc'; + /* public */ const C_MR = 'MRkk bbbb bsss sscc cccc cccc cxx'; + /* public */ const C_MU = 'MUkk bbbb bbss cccc cccc cccc 000m mm'; + /* public */ const C_MC = 'MCkk bbbb bsss sscc cccc cccc cxx'; + /* public */ const C_MD = 'MDkk bbcc cccc cccc cccc cccc'; + /* public */ const C_ME = 'MEkk bbbc cccc cccc cccc xx'; + /* public */ const C_NL = 'NLkk bbbb cccc cccc cc'; + /* public */ const C_NO = 'NOkk bbbb cccc ccx'; + /* public */ const C_PK = 'PKkk bbbb cccc cccc cccc cccc'; + /* public */ const C_PS = 'PSkk bbbb xxxx xxxx xccc cccc cccc c'; + /* public */ const C_PL = 'PLkk bbbs sssx cccc cccc cccc cccc'; + /* public */ const C_PT = 'PTkk bbbb ssss cccc cccc cccx x'; + /* public */ const C_QA = 'QAkk bbbb cccc cccc cccc cccc cccc c'; + /* public */ const C_RO = 'ROkk bbbb cccc cccc cccc cccc'; + /* public */ const C_SM = 'SMkk xbbb bbss sssc cccc cccc ccc'; + /* public */ const C_SA = 'SAkk bbcc cccc cccc cccc cccc'; + /* public */ const C_RS = 'RSkk bbbc cccc cccc cccc xx'; + /* public */ const C_SK = 'SKkk bbbb ssss sscc cccc cccc'; + /* public */ const C_SI = 'SIkk bbss sccc cccc cxx'; + /* public */ const C_ES = 'ESkk bbbb ssss xxcc cccc cccc'; + /* public */ const C_SE = 'SEkk bbbc cccc cccc cccc cccc'; + /* public */ const C_CH = 'CHkk bbbb bccc cccc cccc c'; + /* public */ const C_TN = 'TNkk bbss sccc cccc cccc cccc'; + /* public */ const C_TR = 'TRkk bbbb bxcc cccc cccc cccc cc'; + /* public */ const C_UA = 'UAkk bbbb bbcc cccc cccc cccc cccc c'; + /* public */ const C_AE = 'AEkk bbbc cccc cccc cccc ccc'; + /* public */ const C_GB = 'GBkk bbbb ssss sscc cccc cc'; + /* public */ const C_VG = 'VGkk bbbb cccc cccc cccc cccc'; + /* public */ const C_SN = 'SNkk annn nnnn nnnn nnnn nnnn nnnn'; + /* public */ const C_MZ = 'MZkk nnnn nnnn nnnn nnnn nnnn n'; + /* public */ const C_ML = 'MLkk annn nnnn nnnn nnnn nnnn nnnn'; + /* public */ const C_MG = 'MGkk nnnn nnnn nnnn nnnn nnnn nnn'; + /* public */ const C_CI = 'CIkk annn nnnn nnnn nnnn nnnn nnnn'; + /* public */ const C_IR = 'IRkk nnnn nnnn nnnn nnnn nnnn nn'; + /* public */ const C_CV = 'CVkk nnnn nnnn nnnn nnnn nnnn n'; + /* public */ const C_CM = 'CMkk nnnn nnnn nnnn nnnn nnnn nnn'; + /* public */ const C_BI = 'BIkk nnnn nnnn nnnn'; + /* public */ const C_BF = 'BFkk nnnn nnnn nnnn nnnn nnnn nnn'; + /* public */ const C_BJ = 'BJkk annn nnnn nnnn nnnn nnnn nnnn'; + /* public */ const C_AO = 'AOkk nnnn nnnn nnnn nnnn nnnn n'; + /* public */ const C_DZ = 'DZkk nnnn nnnn nnnn nnnn nnnn'; +} diff --git a/Validation/Finance/IbanErrorType.php b/Validation/Finance/IbanErrorType.php new file mode 100644 index 000000000..e2b17fe60 --- /dev/null +++ b/Validation/Finance/IbanErrorType.php @@ -0,0 +1,38 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Validation\Finance; + +use phpOMS\Datatypes\Enum; + +/** + * Iban error type enum. + * + * @category Framework + * @package phpOMS\Datatypes + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +abstract class IbanErrorType extends Enum +{ + /* public */ const INVALID_COUNTRY = 1; + /* public */ const INVALID_LENGTH = 2; + /* public */ const INVALID_CHECKSUM = 4; + /* public */ const EXPECTED_ZERO = 8; + /* public */ const EXPECTED_NUMERIC = 16; +} diff --git a/Validation/ModelValidationTrait.php b/Validation/ModelValidationTrait.php index 6ad5b9321..8c4175463 100644 --- a/Validation/ModelValidationTrait.php +++ b/Validation/ModelValidationTrait.php @@ -67,7 +67,6 @@ trait ModelValidationTrait } /** @noinspection PhpUndefinedFieldInspection */ - return Validator::isValid($var, self::$validation[$name]); } diff --git a/Validation/Network/Email.php b/Validation/Network/Email.php new file mode 100644 index 000000000..dca36c7d1 --- /dev/null +++ b/Validation/Network/Email.php @@ -0,0 +1,60 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Validation\Network; + +use phpOMS\Validation\ValidatorAbstract; + +/** + * Validator abstract. + * + * @category Validation + * @package Framework + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class Email extends ValidatorAbstract +{ + + /** + * Constructor. + * + * @since 1.0.0 + */ + private function __construct() + { + } + + /** + * {@inheritdoc} + */ + public static function isValid(string $value) : bool + { + if (filter_var($value, FILTER_VALIDATE_EMAIL) === false) { + self::$msg = 'Invalid Email by filter_var standards'; + self::$error = 1; + + return false; + } + + self::$msg = ''; + self::$error = 0; + + return true; + } +} diff --git a/Validation/Network/Hostname.php b/Validation/Network/Hostname.php new file mode 100644 index 000000000..f62698133 --- /dev/null +++ b/Validation/Network/Hostname.php @@ -0,0 +1,50 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Validation\Network; + +use phpOMS\Validation\ValidatorAbstract; + +/** + * Validator abstract. + * + * @category Validation + * @package Framework + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +abstract class Hostname extends ValidatorAbstract +{ + + /** + * Constructor. + * + * @since 1.0.0 + */ + public function __construct() + { + } + + /** + * {@inheritdoc} + */ + public static function isValid($value) : bool + { + return filter_var(gethostbyname($value), FILTER_VALIDATE_IP) !== false; + } +} diff --git a/Validation/Network/Ip.php b/Validation/Network/Ip.php new file mode 100644 index 000000000..f30e90ea7 --- /dev/null +++ b/Validation/Network/Ip.php @@ -0,0 +1,60 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Validation\Network; + +use phpOMS\Validation\ValidatorAbstract; + +/** + * Validator abstract. + * + * @category Validation + * @package Framework + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class Ip extends ValidatorAbstract +{ + + /** + * Constructor. + * + * @since 1.0.0 + */ + private function __construct() + { + } + + /** + * {@inheritdoc} + */ + public static function isValid($value) : bool + { + return filter_var($value, FILTER_VALIDATE_IP) !== false; + } + + public static function isValidIpv6($value) : bool + { + return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) !== false; + } + + public static function isValidIpv4($value) : bool + { + return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) !== false; + } +} diff --git a/Validation/Validator.php b/Validation/Validator.php index a322b8e5c..cd19a3ec2 100644 --- a/Validation/Validator.php +++ b/Validation/Validator.php @@ -38,9 +38,10 @@ final class Validator extends ValidatorAbstract * * @since 1.0.0 */ - public static function isValid($var, array $constraints) : bool + public static function isValid($var, array $constraints = null) : bool { foreach ($constraints as $callback => $settings) { + $callback = StringUtils::endsWith($callback, 'Not') ? substr($callback, 0, -3) : $callback; $valid = self::$callback($var, ...$settings); $valid = (StringUtils::endsWith($callback, 'Not') ? $valid : !$valid); diff --git a/Validation/ValidatorAbstract.php b/Validation/ValidatorAbstract.php index 6f46d6693..f3283916e 100644 --- a/Validation/ValidatorAbstract.php +++ b/Validation/ValidatorAbstract.php @@ -26,7 +26,7 @@ namespace phpOMS\Validation; * @link http://orange-management.com * @since 1.0.0 */ -abstract class ValidatorAbstract +abstract class ValidatorAbstract implements ValidatorInterface { /** diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index 92f90c26c..91aeefce1 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -33,12 +33,13 @@ interface ValidatorInterface * Check if value is valid. * * @param mixed $value Value to validate + * @param array $constraints Constraints for validation * * @return bool * * @since 1.0.0 */ - public static function isValid($value); + public static function isValid($value, array $constraints = null); /** * Get most recent error string. @@ -47,5 +48,14 @@ interface ValidatorInterface * * @since 1.0.0 */ - public static function getMessage(); + public static function getMessage() : string; + + /** + * Get most recent error code. + * + * @return int + * + * @since 1.0.0 + */ + public static function getErrorCode() : int } From 8d835f10369497e364a9e9335276739122342379 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:31:03 +0200 Subject: [PATCH 029/103] Add more names and better rnd --- Utils/RnG/Name.php | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/Utils/RnG/Name.php b/Utils/RnG/Name.php index 206e3f27f..7ca63382c 100644 --- a/Utils/RnG/Name.php +++ b/Utils/RnG/Name.php @@ -469,8 +469,22 @@ class Name 'Lutz', 'Duarte', 'Kidd', 'Key', 'Cooke', ], ], + 'asian' => [ + 'female' => ['none'], + 'male' => ['none'], + 'family' => [ + 'Հովհաննիսյան', 'Հարությունյան', 'Սարգսյան', 'Խաչատրյան', 'Գրիգորյան', + 'আহমেদ', 'আলী', 'আক্তার', 'বন্দ্যোপাধ্যায়', 'নিক', 'ব্যাপারী', 'বড়ুয়া', 'বিশ্বাস', 'ভৌমিক', 'বসু', + '王', '李', '张', '刘', '陈', '杨', '黄', '赵', '吴', '周', '徐', '孙', '马', '朱', '胡', '郭', '何', '高', '林', '罗', + 'כהן', 'לוי', 'מזרחי', 'פרץ', 'ביטון', 'דהן', 'אברהם', 'פרידמן', 'מלכה', 'אזולאי', 'כץ', 'יוסף', 'דוד', 'עמר', 'אוחיון', + '김', '리', '박', '최', '정', '강', '조', '윤', '장', '림', '한', '신', '서', '권', '황', '안', '송', '홍', '고', '문', '손', '량', + 'Yılmaz', 'Kaya', 'Demir', 'Şahin', 'Çelik', 'Yıldız', 'Yıldırım', 'Öztürk', 'Aydın', 'Özdemir', 'Arslan', 'Doğan', 'Kılıç', 'Aslan', 'Çetin', 'Kara', 'Koç', 'Kurt', 'Özkan', 'Şimşek', + ], + ] ]; + + /** * Get a random string. * @@ -483,8 +497,8 @@ class Name */ public static function generateName(array $type, string $origin = 'western') : string { - $rndType = rand(0, count($type) - 1); + $rndType = mt_rand(0, count($type) - 1); - return self::$names[$origin][$type[$rndType]][rand(0, count(self::$names[$origin][$type[$rndType]]) - 1)]; + return self::$names[$origin][$type[$rndType]][mt_rand(0, count(self::$names[$origin][$type[$rndType]]) - 1)]; } } From 4cb351c9c49666777bc9e42885991c75d5e1d458 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:31:48 +0200 Subject: [PATCH 030/103] Make members more secure with overloading --- ApplicationAbstract.php | 67 +++++++++++++++++++++++++++++++++-------- 1 file changed, 54 insertions(+), 13 deletions(-) diff --git a/ApplicationAbstract.php b/ApplicationAbstract.php index fd049b076..3845a1ff9 100644 --- a/ApplicationAbstract.php +++ b/ApplicationAbstract.php @@ -35,7 +35,7 @@ class ApplicationAbstract * @var string * @since 1.0.0 */ - public $appName = ''; + private $appName = ''; /** * Config. @@ -51,7 +51,7 @@ class ApplicationAbstract * @var \phpOMS\DataStorage\Database\DatabasePool * @since 1.0.0 */ - public $dbPool = null; + private $dbPool = null; /** * Application settings object. @@ -59,7 +59,7 @@ class ApplicationAbstract * @var \Model\CoreSettings * @since 1.0.0 */ - public $appSettings = null; + private $appSettings = null; /** * Account manager instance. @@ -67,7 +67,7 @@ class ApplicationAbstract * @var \phpOMS\Account\AccountManager * @since 1.0.0 */ - public $accountManager = null; + private $accountManager = null; /** * Cache instance. @@ -75,7 +75,7 @@ class ApplicationAbstract * @var \phpOMS\DataStorage\Cache\CachePool * @since 1.0.0 */ - public $cachePool = null; + private $cachePool = null; /** * ModuleManager instance. @@ -83,7 +83,7 @@ class ApplicationAbstract * @var \phpOMS\Module\ModuleManager * @since 1.0.0 */ - public $moduleManager = null; + private $moduleManager = null; /** * Router instance. @@ -91,7 +91,7 @@ class ApplicationAbstract * @var \phpOMS\Router\Router * @since 1.0.0 */ - public $router = null; + private $router = null; /** * Dispatcher instance. @@ -99,7 +99,7 @@ class ApplicationAbstract * @var \phpOMS\Dispatcher\Dispatcher * @since 1.0.0 */ - public $dispatcher = null; + private $dispatcher = null; /** * Session instance. @@ -107,7 +107,7 @@ class ApplicationAbstract * @var \phpOMS\DataStorage\Session\SessionInterface * @since 1.0.0 */ - public $sessionManager = null; + private $sessionManager = null; /** * Server localization. @@ -115,7 +115,7 @@ class ApplicationAbstract * @var \phpOMS\Localization\Localization * @since 1.0.0 */ - public $l11nServer = null; + private $l11nServer = null; /** * Server localization. @@ -123,7 +123,7 @@ class ApplicationAbstract * @var \phpOMS\Log\FileLogger * @since 1.0.0 */ - public $logger = null; + private $logger = null; /** * L11n manager. @@ -131,7 +131,7 @@ class ApplicationAbstract * @var \phpOMS\Localization\L11nManager * @since 1.0.0 */ - public $l11nManager = null; + private $l11nManager = null; /** * Event manager. @@ -139,5 +139,46 @@ class ApplicationAbstract * @var \phpOMS\Event\EventManager * @since 1.0.0 */ - public $eventManager = null; + private $eventManager = null; + + /** + * Set values + * + * @param string $name Variable name + * @param string $value Variable value + * + * @return void + * + * @todo replace with proper setter (faster) + * + * @since 1.0.0 + */ + public function __set($name, $value) + { + if(!empty($this->$name) || $name === 'config') { + return; + } + + $this->$name = $value; + } + + /** + * Get values + * + * @param string $name Variable name + * + * @return mixed + * + * @todo replace with proper getter (faster) + * + * @since 1.0.0 + */ + public function __get($name) + { + if($name === 'config') { + return []; + } + + return $this->$name; + } } From e505f5612e659a8a4f4cdce5e6d111e3de45e999 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:32:21 +0200 Subject: [PATCH 031/103] Re-structure array nicer --- Utils/RnG/File.php | 78 +++--------------- Utils/RnG/Text.php | 196 +++++---------------------------------------- 2 files changed, 31 insertions(+), 243 deletions(-) diff --git a/Utils/RnG/File.php b/Utils/RnG/File.php index f5ef2494b..4795acfe4 100644 --- a/Utils/RnG/File.php +++ b/Utils/RnG/File.php @@ -36,71 +36,19 @@ class File * @var array[] * @since 1.0.0 */ - private static $extensions = [['exe', null], - ['dat', null], - ['txt', null], - ['csv', 'txt'], - ['doc', null], - ['docx', 'doc'], - ['mp3', null], - ['mp4', null], - ['avi', null], - ['mpeg', null], - ['wmv', null], - ['ppt', null], - ['xls', null], - ['xlsx', 'xls'], - ['xlsxm', 'xls'], - ['php', null], - ['html', null], - ['tex', null], - ['js', null], - ['c', null], - ['cpp', null], - ['h', null], - ['res', null], - ['ico', null], - ['jpg', null], - ['png', null], - ['gif', null], - ['bmp', null], - ['ttf', null], - ['zip', null], - ['rar', null], - ['7z', null], - ['tar', 'gz'], - ['gz', null], - ['gz', null], - ['sh', null], - ['bat', null], - ['iso', null], - ['css', null], - ['json', null], - ['ini', null], - ['psd', null], - ['pptx', 'ppt'], - ['xml', null], - ['dll', null], - ['wav', null], - ['wma', null], - ['vb', null], - ['tmp', null], - ['tif', null], - ['sql', null], - ['swf', null], - ['svg', null], - ['rpm', null], - ['rss', null], - ['pkg', null], - ['pdf', null], - ['mpg', null], - ['mov', null], - ['jar', null], - ['flv', null], - ['fla', null], - ['deb', null], - ['py', null], - ['pl', null],]; + private static $extensions = [ + ['exe', null], ['dat', null], ['txt', null], ['csv', 'txt'], ['doc', null], ['docx', 'doc'], + ['mp3', null], ['mp4', null], ['avi', null], ['mpeg', null], ['wmv', null], ['ppt', null], + ['xls', null], ['xlsx', 'xls'], ['xlsxm', 'xls'], ['php', null], ['html', null], ['tex', null], + ['js', null], ['c', null], ['cpp', null], ['h', null], ['res', null], ['ico', null], + ['jpg', null], ['png', null], ['gif', null], ['bmp', null], ['ttf', null], ['zip', null], + ['rar', null], ['7z', null], ['tar', 'gz'], ['gz', null], ['gz', null], ['sh', null], + ['bat', null], ['iso', null], ['css', null], ['json', null], ['ini', null], ['psd', null], + ['pptx', 'ppt'], ['xml', null], ['dll', null], ['wav', null], ['wma', null], ['vb', null], + ['tmp', null], ['tif', null], ['sql', null], ['swf', null], ['svg', null], ['rpm', null], + ['rss', null], ['pkg', null], ['pdf', null], ['mpg', null], ['mov', null], ['jar', null], + ['flv', null], ['fla', null], ['deb', null], ['py', null], ['pl', null], + ]; /** * Get a random file extension. diff --git a/Utils/RnG/Text.php b/Utils/RnG/Text.php index 0aa897978..a3d53b5d2 100644 --- a/Utils/RnG/Text.php +++ b/Utils/RnG/Text.php @@ -35,184 +35,24 @@ class Text * @var string[] * @since 1.0.0 */ - private static $words_west = ['lorem', - 'ipsum', - 'dolor', - 'sit', - 'amet', - 'consectetur', - 'adipiscing', - 'elit', - 'curabitur', - 'vel', - 'hendrerit', - 'libero', - 'eleifend', - 'blandit', - 'nunc', - 'ornare', - 'odio', - 'ut', - 'orci', - 'gravida', - 'imperdiet', - 'nullam', - 'purus', - 'lacinia', - 'a', - 'pretium', - 'quis', - 'congue', - 'praesent', - 'sagittis', - 'laoreet', - 'auctor', - 'mauris', - 'non', - 'velit', - 'eros', - 'dictum', - 'proin', - 'accumsan', - 'sapien', - 'nec', - 'massa', - 'volutpat', - 'venenatis', - 'sed', - 'eu', - 'molestie', - 'lacus', - 'quisque', - 'porttitor', - 'ligula', - 'dui', - 'mollis', - 'tempus', - 'at', - 'magna', - 'vestibulum', - 'turpis', - 'ac', - 'diam', - 'tincidunt', - 'id', - 'condimentum', - 'enim', - 'sodales', - 'in', - 'hac', - 'habitasse', - 'platea', - 'dictumst', - 'aenean', - 'neque', - 'fusce', - 'augue', - 'leo', - 'eget', - 'semper', - 'mattis', - 'tortor', - 'scelerisque', - 'nulla', - 'interdum', - 'tellus', - 'malesuada', - 'rhoncus', - 'porta', - 'sem', - 'aliquet', - 'et', - 'nam', - 'suspendisse', - 'potenti', - 'vivamus', - 'luctus', - 'fringilla', - 'erat', - 'donec', - 'justo', - 'vehicula', - 'ultricies', - 'varius', - 'ante', - 'primis', - 'faucibus', - 'ultrices', - 'posuere', - 'cubilia', - 'curae', - 'etiam', - 'cursus', - 'aliquam', - 'quam', - 'dapibus', - 'nisl', - 'feugiat', - 'egestas', - 'class', - 'aptent', - 'taciti', - 'sociosqu', - 'ad', - 'litora', - 'torquent', - 'per', - 'conubia', - 'nostra', - 'inceptos', - 'himenaeos', - 'phasellus', - 'nibh', - 'pulvinar', - 'vitae', - 'urna', - 'iaculis', - 'lobortis', - 'nisi', - 'viverra', - 'arcu', - 'morbi', - 'pellentesque', - 'metus', - 'commodo', - 'ut', - 'facilisis', - 'felis', - 'tristique', - 'ullamcorper', - 'placerat', - 'aenean', - 'convallis', - 'sollicitudin', - 'integer', - 'rutrum', - 'duis', - 'est', - 'etiam', - 'bibendum', - 'donec', - 'pharetra', - 'vulputate', - 'maecenas', - 'mi', - 'fermentum', - 'consequat', - 'suscipit', - 'aliquam', - 'habitant', - 'senectus', - 'netus', - 'fames', - 'quisque', - 'euismod', - 'curabitur', - 'lectus', - 'elementum', - 'tempor', - 'risus', - 'cras',]; + private static $words_west = [ + 'lorem', 'ipsum', 'dolor', 'sit', 'amet', 'consectetur', 'adipiscing', 'elit', 'curabitur', 'vel', 'hendrerit', 'libero', + 'eleifend', 'blandit', 'nunc', 'ornare', 'odio', 'ut', 'orci', 'gravida', 'imperdiet', 'nullam', 'purus', 'lacinia', 'a', + 'pretium', 'quis', 'congue', 'praesent', 'sagittis', 'laoreet', 'auctor', 'mauris', 'non', 'velit', 'eros', 'dictum', + 'proin', 'accumsan', 'sapien', 'nec', 'massa', 'volutpat', 'venenatis', 'sed', 'eu', 'molestie', 'lacus', 'quisque', + 'porttitor', 'ligula', 'dui', 'mollis', 'tempus', 'at', 'magna', 'vestibulum', 'turpis', 'ac', 'diam', 'tincidunt', 'id', + 'condimentum', 'enim', 'sodales', 'in', 'hac', 'habitasse', 'platea', 'dictumst', 'aenean', 'neque', 'fusce', 'augue', + 'leo', 'eget', 'semper', 'mattis', 'tortor', 'scelerisque', 'nulla', 'interdum', 'tellus', 'malesuada', 'rhoncus', 'porta', + 'sem', 'aliquet', 'et', 'nam', 'suspendisse', 'potenti', 'vivamus', 'luctus', 'fringilla', 'erat', 'donec', 'justo', + 'vehicula', 'ultricies', 'varius', 'ante', 'primis', 'faucibus', 'ultrices', 'posuere', 'cubilia', 'curae', 'etiam', + 'cursus', 'aliquam', 'quam', 'dapibus', 'nisl', 'feugiat', 'egestas', 'class', 'aptent', 'taciti', 'sociosqu', 'ad', + 'litora', 'torquent', 'per', 'conubia', 'nostra', 'inceptos', 'himenaeos', 'phasellus', 'nibh', 'pulvinar', 'vitae', + 'urna', 'iaculis', 'lobortis', 'nisi', 'viverra', 'arcu', 'morbi', 'pellentesque', 'metus', 'commodo', 'ut', 'facilisis', + 'felis', 'tristique', 'ullamcorper', 'placerat', 'aenean', 'convallis', 'sollicitudin', 'integer', 'rutrum', 'duis', 'est', + 'etiam', 'bibendum', 'donec', 'pharetra', 'vulputate', 'maecenas', 'mi', 'fermentum', 'consequat', 'suscipit', 'aliquam', + 'habitant', 'senectus', 'netus', 'fames', 'quisque', 'euismod', 'curabitur', 'lectus', 'elementum', 'tempor', 'risus', + 'cras', + ]; /** * Text has random formatting. From 2940e22c97e1d9935a3328fa5859a4da4ab9f1cc Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:32:49 +0200 Subject: [PATCH 032/103] Add docblocks, better typehints and exceptions --- Account/Account.php | 4 +- Business/Marketing/NetPromoterScore.php | 27 +++++++++ Dispatcher/Dispatcher.php | 18 +++--- Event/EventManager.php | 67 ++++++++++++++++++--- Localization/L11nManager.php | 34 +++++++---- Log/FileLogger.php | 13 ++-- Message/Http/Header.php | 50 +++++++++++---- Message/Http/Response.php | 2 - Message/RequestAbstract.php | 18 ++++-- Model/Html/Meta.php | 2 +- Module/Exception/InvalidModuleException.php | 44 ++++++++++++++ Module/Exception/InvalidThemeException.php | 44 ++++++++++++++ Module/InfoManager.php | 2 + Module/ModuleManager.php | 19 +++--- Utils/ArrayUtils.php | 35 ++++++++++- Utils/ColorUtils.php | 2 +- Utils/TestUtils.php | 25 +++++++- Views/View.php | 20 +++++- Views/ViewAbstract.php | 12 ++-- 19 files changed, 354 insertions(+), 84 deletions(-) create mode 100644 Module/Exception/InvalidModuleException.php create mode 100644 Module/Exception/InvalidThemeException.php diff --git a/Account/Account.php b/Account/Account.php index 53be4d60d..8ad4f1f10 100644 --- a/Account/Account.php +++ b/Account/Account.php @@ -19,7 +19,7 @@ namespace phpOMS\Account; use phpOMS\Contract\ArrayableInterface; use phpOMS\Localization\Localization; use phpOMS\Localization\NullLocalization; -use phpOMS\Validation\Base\Email; +use phpOMS\Validation\Network\Email; /** * Account manager class. @@ -452,7 +452,7 @@ class Account implements ArrayableInterface, \JsonSerializable * * @since 1.0.0 */ - public function updateLastActive() + public function updateLastActive() /* : void */ { $this->lastActive = new \DateTime('NOW'); } diff --git a/Business/Marketing/NetPromoterScore.php b/Business/Marketing/NetPromoterScore.php index c0a611c28..75eecca4d 100644 --- a/Business/Marketing/NetPromoterScore.php +++ b/Business/Marketing/NetPromoterScore.php @@ -86,6 +86,15 @@ class NetPromoterScore { return $total === 0 ? 0 : ((int) ($promoters * 100 / $total)) - ((int) ($detractors * 100 / $total)); } + /** + * Count detractors + * + * Detractors are all ratings below 7. + * + * @return int + * + * @since 1.0.0 + */ public function countDetractors() : int { $count = 0; @@ -98,6 +107,15 @@ class NetPromoterScore { return $count; } + /** + * Count passives + * + * Passives are all ratings between 7 and 8 (inclusive) + * + * @return int + * + * @since 1.0.0 + */ public function countPassives() : int { $count = 0; @@ -110,6 +128,15 @@ class NetPromoterScore { return $count; } + /** + * Count promoters + * + * Promotoers are all ratings larger 8 + * + * @return int + * + * @since 1.0.0 + */ public function countPromoters() : int { $count = 0; diff --git a/Dispatcher/Dispatcher.php b/Dispatcher/Dispatcher.php index 552fdf7dd..07126355c 100644 --- a/Dispatcher/Dispatcher.php +++ b/Dispatcher/Dispatcher.php @@ -155,7 +155,7 @@ class Dispatcher * * @since 1.0.0 */ - private function dispatchClosure(\Closure $controller, array $data = null) + private function dispatchClosure(\Closure $controller, array $data = null) /* : void */ { return $controller($this->app, ...$data); } @@ -167,9 +167,11 @@ class Dispatcher * * @return mixed * + * @throws PathException This exception is thrown in case the controller couldn't be found. + * * @since 1.0.0 */ - private function getController(string $controller) + private function getController(string $controller) /* : object */ { if (!isset($this->controllers[$controller])) { if (!file_exists($path = __DIR__ . '/../../' . str_replace('\\', '/', $controller) . '.php')) { @@ -193,18 +195,12 @@ class Dispatcher * @param ModuleAbstract $controller Controller * @param string $name Controller string * - * @return bool + * @return void * * @since 1.0.0 */ - public function set(ModuleAbstract $controller, string $name) : bool + public function set(ModuleAbstract $controller, string $name) /* : void */ { - if (!isset($this->controllers[$name])) { - $this->controllers[$name] = $controller; - - return true; - } - - return false; + $this->controllers[$name] = $controller; } } diff --git a/Event/EventManager.php b/Event/EventManager.php index 5ba297810..de1b244ad 100644 --- a/Event/EventManager.php +++ b/Event/EventManager.php @@ -56,7 +56,16 @@ class EventManager } /** - * {@inheritdoc} + * Attach new event + * + * @param string $group Name of the event (unique) + * @param \Closure $callback Callback for the event + * @param bool $remove Remove event after triggering it? + * @param bool $reset Reset event after triggering it? Remove must be false! + * + * @return bool + * + * @since 1.0.0 */ public function attach(string $group, \Closure $callback, bool $remove = false, bool $reset = false) : bool { @@ -70,12 +79,20 @@ class EventManager } /** - * {@inheritdoc} + * Trigger event + * + * @param string $group Name of the event + * @param string $id Sub-requirement for event + * @param mixed $data Data to pass to the callback + * + * @return bool Returns true on sucessfully triggering the event, false if the event couldn't be triggered which also includes sub-requirements missing. + * + * @since 1.0.0 */ - public function trigger(string $group, string $id = '', $data = null) /* : void */ + public function trigger(string $group, string $id = '', $data = null) : bool { if(!isset($this->callbacks[$group])) { - return; + return false; } if (isset($this->groups[$group])) { @@ -90,9 +107,22 @@ class EventManager } elseif($this->callbacks[$group]['reset']) { $this->reset($group); } + + return true; } + + return false; } + /** + * Reset group + * + * @param string $group Name of the event + * + * @return void + * + * @since 1.0.0 + */ private function reset(string $group) /* : void */ { foreach($this->groups[$group] as $id => $ok) { @@ -101,7 +131,13 @@ class EventManager } /** - * {@inheritdoc} + * Check if a group has missing sub-requirements + * + * @param string $group Name of the event + * + * @return bool + * + * @since 1.0.0 */ private function hasOutstanding(string $group) : bool { @@ -119,9 +155,15 @@ class EventManager } /** - * {@inheritdoc} + * Detach an event + * + * @param string $group Name of the event + * + * @return void + * + * @since 1.0.0 */ - public function detach(string $group) : bool + public function detach(string $group) /* : bool */ { if (isset($this->callbacks[$group])) { unset($this->callbacks[$group]); @@ -130,12 +172,17 @@ class EventManager if (isset($this->groups[$group])) { unset($this->groups[$group]); } - - return true; } /** - * {@inheritdoc} + * Add sub-requirement for event + * + * @param string $group Name of the event + * @param string $id ID of the sub-requirement + * + * @return void + * + * @since 1.0.0 */ public function addGroup(string $group, string $id) /* : void */ { diff --git a/Localization/L11nManager.php b/Localization/L11nManager.php index 6991c3bff..9120e0a54 100644 --- a/Localization/L11nManager.php +++ b/Localization/L11nManager.php @@ -87,14 +87,14 @@ class L11nManager * * @return void * - * @throws \Exception + * @throws \UnexpectedValueException This exception is thrown when no language definitions for the defined source `$from` exist. * * @since 1.0.0 */ public function loadLanguage(string $language, string $from, array $translation) /* : void */ { if (!isset($translation[$from])) { - throw new \Exception('Unexpected language key: ' . $from); + throw new \UnexpectedValueException($from); } if (!isset($this->language[$language][$from])) { @@ -146,9 +146,9 @@ class L11nManager return $this->language[$language]; } elseif (isset($this->language[$language], $this->language[$language][$module])) { return $this->language[$language][$module]; - } else { - return []; } + + return []; } /** @@ -159,23 +159,31 @@ class L11nManager * @param string $theme Theme * @param string $translation Text * - * @return string + * @return string In case the language element couldn't be found 'ERROR' will be returned * * @since 1.0.0 */ public function getText(string $code, string $module, string $theme, string $translation) : string { if (!isset($this->language[$code][$module][$translation])) { - /** @var ModuleAbstract $class */ - $class = '\Modules\\' . $module . '\\Controller'; - $this->loadLanguage($code, $module, $class::getLocalization($code, $theme)); + try { + /** @var ModuleAbstract $class */ + $class = '\Modules\\' . $module . '\\Controller'; + $this->loadLanguage($code, $module, $class::getLocalization($code, $theme)); - if (!isset($this->language[$code][$module][$translation])) { - if(isset($this->logger)) { - $this->logger->warning(FileLogger::MSG_FULL, [ - 'message' => 'Undefined translation for \'' . $code . '/' . $module . '/' . $translation . '\'.', - ]); + if (!isset($this->language[$code][$module][$translation])) { + if(isset($this->logger)) { + $this->logger->warning(FileLogger::MSG_FULL, [ + 'message' => 'Undefined translation for \'' . $code . '/' . $module . '/' . $translation . '\'.', + ]); + } + + return 'ERROR'; } + } catch(\Excpetion $e) { + $this->logger->warning(FileLogger::MSG_FULL, [ + 'message' => 'Undefined translation for \'' . $code . '/' . $module . '/' . $translation . '\'.', + ]); return 'ERROR'; } diff --git a/Log/FileLogger.php b/Log/FileLogger.php index a0d5252fd..73e58a34d 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -180,7 +180,7 @@ class FileLogger implements LoggerInterface * * @since 1.0.0 */ - public function startTimeLog($id = '') + public function startTimeLog($id = '') /* : void */ { $mtime = explode(' ', microtime()); $mtime = $mtime[1] + $mtime[0]; @@ -193,11 +193,11 @@ class FileLogger implements LoggerInterface * * @param string $id the ID by which this time measurement gets identified * - * @return int the time measurement + * @return int The time measurement in ms * * @since 1.0.0 */ - public function endTimeLog($id = '') + public function endTimeLog($id = '') : int { $mtime = explode(' ', microtime()); $mtime = $mtime[1] + $mtime[0]; @@ -217,7 +217,7 @@ class FileLogger implements LoggerInterface * * @since 1.0.0 */ - public function timingSort(&$timings) + public function timingSort(&$timings) /* : void */ { uasort($timings, [$this, 'orderSort']); } @@ -233,7 +233,7 @@ class FileLogger implements LoggerInterface * * @since 1.0.0 */ - private function interpolate(string $message, array $context = [], string $level = LogLevel::DEBUG) + private function interpolate(string $message, array $context = [], string $level = LogLevel::DEBUG) : string { $replace = []; foreach ($context as $key => $val) { @@ -634,9 +634,8 @@ class FileLogger implements LoggerInterface * @param bool $verbose Is verbose * @param array $context Context * - * @return array */ - public function console(string $message, bool $verbose = true, array $context = []) + public function console(string $message, bool $verbose = true, array $context = []) /* : void */ { $message = date('[Y-m-d H:i:s] ') . $message . "\r\n"; diff --git a/Message/Http/Header.php b/Message/Http/Header.php index b6b35a901..01c58a705 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -17,6 +17,7 @@ declare(strict_types=1); namespace phpOMS\Message\Http; use phpOMS\Message\HeaderAbstract; +use phpOMS\DataStorage\LockExcpetion; /** * Response class. @@ -50,12 +51,25 @@ class Header extends HeaderAbstract } /** - * {@inheritdoc} + * Set header. + * + * @param string $key Header key (case insensitive) + * @param string $header Header value + * @param bool $overwrite Overwrite if already existing + * + * @return bool + * + * @throws LockException The http header needs to be defined at the beginning. If it is already pushed further interactions are impossible and locked. + * @throws \Exception If the header already exists and cannot be overwritten this exception will be thrown. + * + * @todo Allow to extend header key with additional values. + * + * @since 1.0.0 */ public function set(string $key, string $header, bool $overwrite = false) : bool { if (self::$isLocked) { - throw new \Exception('Already locked'); + throw new LockExcpetion('HTTP header'); } $key = strtolower($key); @@ -86,8 +100,6 @@ class Header extends HeaderAbstract * * @return bool * - * @throws \Exception - * * @since 1.0.0 */ private function isSecurityHeader(string $key) : bool @@ -111,7 +123,7 @@ class Header extends HeaderAbstract } /** - * Returns all headers. + * Returns all pushed headers. * * @return array * @@ -123,7 +135,11 @@ class Header extends HeaderAbstract } /** - * {@inheritdoc} + * Get pushed header by name. + * + * @return string + * + * @since 1.0.0 */ public function getHeader(string $name) : string { @@ -137,14 +153,14 @@ class Header extends HeaderAbstract * * @return bool * - * @throws \Exception + * @throws LockException The http header needs to be defined at the beginning. If it is already pushed further interactions are impossible and locked. * * @since 1.0.0 */ public function remove(int $key) : bool { if (self::$isLocked) { - throw new \Exception('Already locked'); + throw new \LockException('HTTP header'); } if (isset($this->header[$key])) { @@ -157,7 +173,13 @@ class Header extends HeaderAbstract } /** - * {@inheritdoc} + * Get header by name. + * + * @param int $key Header key + * + * @return array + * + * @since 1.0.0 */ public function get(string $key) : array { @@ -165,11 +187,17 @@ class Header extends HeaderAbstract } /** - * {@inheritdoc} + * Check if header is defined. + * + * @param int $key Header key + * + * @return bool + * + * @since 1.0.0 */ public function has(string $key) : bool { - return array_key_exists($key, $this->header); + return isset($this->header[$key]); } /** diff --git a/Message/Http/Response.php b/Message/Http/Response.php index 9ccd27fe1..1527751d5 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -104,8 +104,6 @@ class Response extends ResponseAbstract implements RenderableInterface * * @return string * - * @throws \Exception - * * @since 1.0.0 */ public function render() : string diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 439022722..5fa242b1d 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -193,17 +193,27 @@ abstract class RequestAbstract implements MessageInterface } /** - * {@inheritdoc} + * Get request source. + * + * @return int + * + * @since 1.0.0 */ - public function getRequestSource() + public function getRequestSource() : int { return $this->source; } /** - * {@inheritdoc} + * Set request source. + * + * @param int $source Request source + * + * @return void + * + * @since 1.0.0 */ - public function setRequestSource($source) /* : void */ + public function setRequestSource(int $source) /* : void */ { if (!RequestSource::isValidValue($source)) { throw new InvalidEnumValue($source); diff --git a/Model/Html/Meta.php b/Model/Html/Meta.php index 903f741d6..a7b050fc5 100644 --- a/Model/Html/Meta.php +++ b/Model/Html/Meta.php @@ -80,7 +80,7 @@ class Meta implements RenderableInterface * * @since 1.0.0 */ - public function addKeyword(string $keyword) + public function addKeyword(string $keyword) /* : void */ { if (!in_array($keyword, $this->keywords)) { $this->keywords[] = $keyword; diff --git a/Module/Exception/InvalidModuleException.php b/Module/Exception/InvalidModuleException.php new file mode 100644 index 000000000..33eaf2d93 --- /dev/null +++ b/Module/Exception/InvalidModuleException.php @@ -0,0 +1,44 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Module\Exception; + +/** + * Zero devision exception. + * + * @category Framework + * @package phpOMS/Uri + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class InvalidModuleException extends \UnexpectedValueException +{ + /** + * Constructor. + * + * @param string $message Exception message + * @param int $code Exception code + * @param \Exception Previous exception + * + * @since 1.0.0 + */ + public function __construct(string $message, int $code = 0, \Exception $previous = null) + { + parent::__construct('Data for module "' . $message . '" could be found.', $code, $previous); + } +} diff --git a/Module/Exception/InvalidThemeException.php b/Module/Exception/InvalidThemeException.php new file mode 100644 index 000000000..ebb0f4506 --- /dev/null +++ b/Module/Exception/InvalidThemeException.php @@ -0,0 +1,44 @@ + + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); + +namespace phpOMS\Module\Exception; + +/** + * Zero devision exception. + * + * @category Framework + * @package phpOMS/Uri + * @author OMS Development Team + * @license OMS License 1.0 + * @link http://orange-management.com + * @since 1.0.0 + */ +class InvalidThemeException extends \UnexpectedValueException +{ + /** + * Constructor. + * + * @param string $message Exception message + * @param int $code Exception code + * @param \Exception Previous exception + * + * @since 1.0.0 + */ + public function __construct(string $message, int $code = 0, \Exception $previous = null) + { + parent::__construct('Data for theme "' . $message . '" could be found.', $code, $previous); + } +} diff --git a/Module/InfoManager.php b/Module/InfoManager.php index d2a7baee6..8e808fd5c 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -79,6 +79,8 @@ class InfoManager * * @return void * + * @throws PathException This exception is thrown in case the info file path doesn't exist. + * * @since 1.0.0 */ public function load() /* : void */ diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index 7a1aa4410..2f9fb7e0e 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -21,6 +21,7 @@ use phpOMS\Autoloader; use phpOMS\DataStorage\Database\DatabaseType; use phpOMS\Message\Http\Request; use phpOMS\System\File\PathException; +use phpOMS\Module\Exception\InvalidModuleException; /** * Modules class. @@ -343,7 +344,7 @@ class ModuleManager * * @return bool * - * @throws \Exception + * @throws InvalidModuleException Throws this exception in case the installer doesn't exist * * @since 1.0.0 */ @@ -354,7 +355,7 @@ class ModuleManager $class = '\\Modules\\' . $info->getDirectory() . '\\Admin\\Installer'; if (!Autoloader::exists($class)) { - throw new \Exception('Module installer does not exist'); + throw new InvalidModuleException($info->getDirectory()); } $class::reInit($this->modulePath, $info); @@ -436,7 +437,7 @@ class ModuleManager * * @return void * - * @throws \Exception + * @throws InvalidModuleException Throws this exception in case the installer doesn't exist * * @since 1.0.0 */ @@ -446,7 +447,7 @@ class ModuleManager $class = '\\Modules\\' . $info->getDirectory() . '\\Admin\\Installer'; if (!Autoloader::exists($class)) { - throw new \Exception('Module installer does not exist'); + throw new InvalidModuleException($info->getDirectory()); } $class::install($this->modulePath, $this->app->dbPool, $info); @@ -459,7 +460,7 @@ class ModuleManager * * @return void * - * @throws \Exception + * @throws InvalidModuleException Throws this exception in case the deactiviation doesn't exist * * @since 1.0.0 */ @@ -468,7 +469,7 @@ class ModuleManager $class = '\\Modules\\' . $info->getDirectory() . '\\Admin\\Deactivate'; if (!Autoloader::exists($class)) { - throw new \Exception('Module deactivation does not exist'); + throw new InvalidModuleException($info->getDirectory()); } /** @var $class DeactivateAbstract */ @@ -482,16 +483,16 @@ class ModuleManager * * @return void * - * @throws \Exception + * @throws InvalidModuleException Throws this exception in case the activation doesn't exist * * @since 1.0.0 */ private function activateModule(InfoManager $info) /* : void */ { - $class = '\\Modules\\' . $info->getDirectory() . '\\Admin\\Deactivate'; + $class = '\\Modules\\' . $info->getDirectory() . '\\Admin\\Activate'; if (!Autoloader::exists($class)) { - throw new \Exception('Module deactivation does not exist'); + throw new InvalidModuleException($info->getDirectory()); } /** @var $class ActivateAbstract */ diff --git a/Utils/ArrayUtils.php b/Utils/ArrayUtils.php index 17f99ea34..7cf962bc4 100644 --- a/Utils/ArrayUtils.php +++ b/Utils/ArrayUtils.php @@ -49,7 +49,7 @@ class ArrayUtils * * @since 1.0.0 */ - public static function unsetArray(string $path, array $data, string $delim) : array + public static function unsetArray(string $path, array $data, string $delim = '/') : array { $nodes = explode($delim, trim($path, $delim)); $prevEl = null; @@ -87,7 +87,7 @@ class ArrayUtils * * @since 1.0.0 */ - public static function setArray(string $path, array $data, $value, string $delim, bool $overwrite = false) : array + public static function setArray(string $path, array $data, $value, string $delim = '/', bool $overwrite = false) : array { $pathParts = explode($delim, trim($path, $delim)); $current = &$data; @@ -142,6 +142,16 @@ class ArrayUtils return $found; } + /** + * Check if any of the needles are in the array + * + * @param mixed $needles Needles for search + * @param array $haystack Haystack for search + * + * @return bool + * + * @since 1.0.0 + */ public static function anyInArray(array $needles, array $haystack) : bool { foreach($needles as $needle) { @@ -153,6 +163,27 @@ class ArrayUtils return false; } + /** + * Check if all of the needles are in the array + * + * @param mixed $needles Needles for search + * @param array $haystack Haystack for search + * + * @return bool + * + * @since 1.0.0 + */ + public static function allInArray(array $needles, array $haystack) : bool + { + foreach($needles as $needle) { + if(!in_array($needle, $haystack)) { + return false; + } + } + + return true; + } + /** * Stringify array. * diff --git a/Utils/ColorUtils.php b/Utils/ColorUtils.php index 46170b0ce..8afc41b74 100644 --- a/Utils/ColorUtils.php +++ b/Utils/ColorUtils.php @@ -41,7 +41,7 @@ class ColorUtils * * @since 1.0.0 */ - public static function getRGBGradient(int $value, array $start, array $stop, array $end) + public static function getRGBGradient(int $value, array $start, array $stop, array $end) : array { $diff = []; $gradient = []; diff --git a/Utils/TestUtils.php b/Utils/TestUtils.php index dda7cdd83..30858b6c9 100644 --- a/Utils/TestUtils.php +++ b/Utils/TestUtils.php @@ -28,7 +28,18 @@ namespace phpOMS\Utils; */ class TestUtils { - public static function setMember($obj, $name, $value) : bool + /** + * Set private object member + * + * @param object $object Object to modify + * @param string $name Member name to modify + * @param mixed $value Value to set + * + * @return bool The function returns true after setting the member + * + * @since 1.0.0 + */ + public static function setMember(/* object */ $obj, string $name, $value) : bool { $reflectionClass = new \ReflectionClass(get_class($obj)); @@ -51,7 +62,17 @@ class TestUtils return true; } - public static function getMember($obj, $name) + /** + * Get private object member + * + * @param object $object Object to read + * @param string $name Member name to read + * + * @return mixed Returns the member variable value + * + * @since 1.0.0 + */ + public static function getMember(/* object */ $obj, string $name) { $reflectionClass = new \ReflectionClass(get_class($obj)); diff --git a/Views/View.php b/Views/View.php index b8269473b..17401f295 100644 --- a/Views/View.php +++ b/Views/View.php @@ -20,6 +20,8 @@ use phpOMS\ApplicationAbstract; use phpOMS\Localization\Localization; use phpOMS\Message\RequestAbstract; use phpOMS\Message\ResponseAbstract; +use phpOMS\Module\Exception\InvalidModuleException; +use phpOMS\Module\Exception\InvalidThemeException; /** * List view. @@ -163,7 +165,8 @@ class View extends ViewAbstract * * @return string * - * @throws \Exception + * @throws InvalidModuleException Throws this exception if no data for the defined module could be found. + * @throws InvalidTemplateException Throws this exception if no data for the defined theme could be found. * * @since 1.0.0 */ @@ -173,7 +176,7 @@ class View extends ViewAbstract $match = '/Modules/'; if (($start = strripos($this->template, $match)) === false) { - throw new \Exception('Unknown Module'); + throw new InvalidModuleException($module); } $start = $start + strlen($match); @@ -185,7 +188,7 @@ class View extends ViewAbstract $match = '/Theme/'; if (($start = strripos($this->template, $match)) === false) { - throw new \Exception('Unknown Theme'); + throw new InvalidThemeException($theme); } $start = $start + strlen($match); @@ -196,6 +199,17 @@ class View extends ViewAbstract return $this->app->l11nManager->getText($this->l11n->getLanguage(), $module, $theme, $translation); } + /** + * Get translation. + * + * @param string $translation Text + * @param string $module Module name + * @param string $theme Theme name + * + * @return string + * + * @since 1.0.0 + */ protected function getHtml(string $translation, string $module = null, string $theme = null) : string { return htmlspecialchars($this->getText($translation, $module, $theme)); diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index 42f630d8b..a1427c93c 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -177,7 +177,7 @@ abstract class ViewAbstract implements \Serializable * * @since 1.0.0 */ - public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) : bool + public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) : bool { if ($overwrite || !isset($this->views[$id])) { $this->views[$id] = $view; @@ -233,11 +233,11 @@ abstract class ViewAbstract implements \Serializable /** * Get view/template response. * - * @return string + * @return string|array * * @since 1.0.0 */ - public function render(...$data) : string + public function render(...$data) { $path = __DIR__ . '/../..' . $this->template . '.tpl.php'; @@ -247,11 +247,11 @@ abstract class ViewAbstract implements \Serializable ob_start(); /** @noinspection PhpIncludeInspection */ - $data = include $path; + $tpl = include $path; $ob = ob_get_clean(); - if (is_array($data)) { - return $data; + if (is_array($tpl)) { + return $tpl; } return $ob; From daeb63b1d68ed2964d73e634b3b8ec0d27961acd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 25 Jul 2017 17:45:14 +0200 Subject: [PATCH 033/103] Make app members protected --- ApplicationAbstract.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ApplicationAbstract.php b/ApplicationAbstract.php index 3845a1ff9..8e56dc45c 100644 --- a/ApplicationAbstract.php +++ b/ApplicationAbstract.php @@ -35,7 +35,7 @@ class ApplicationAbstract * @var string * @since 1.0.0 */ - private $appName = ''; + protected $appName = ''; /** * Config. @@ -43,7 +43,7 @@ class ApplicationAbstract * @var array * @since 1.0.0 */ - private $config = []; + protected $config = []; /** * Database object. @@ -51,7 +51,7 @@ class ApplicationAbstract * @var \phpOMS\DataStorage\Database\DatabasePool * @since 1.0.0 */ - private $dbPool = null; + protected $dbPool = null; /** * Application settings object. @@ -59,7 +59,7 @@ class ApplicationAbstract * @var \Model\CoreSettings * @since 1.0.0 */ - private $appSettings = null; + protected $appSettings = null; /** * Account manager instance. @@ -67,7 +67,7 @@ class ApplicationAbstract * @var \phpOMS\Account\AccountManager * @since 1.0.0 */ - private $accountManager = null; + protected $accountManager = null; /** * Cache instance. @@ -75,7 +75,7 @@ class ApplicationAbstract * @var \phpOMS\DataStorage\Cache\CachePool * @since 1.0.0 */ - private $cachePool = null; + protected $cachePool = null; /** * ModuleManager instance. @@ -83,7 +83,7 @@ class ApplicationAbstract * @var \phpOMS\Module\ModuleManager * @since 1.0.0 */ - private $moduleManager = null; + protected $moduleManager = null; /** * Router instance. @@ -91,7 +91,7 @@ class ApplicationAbstract * @var \phpOMS\Router\Router * @since 1.0.0 */ - private $router = null; + protected $router = null; /** * Dispatcher instance. @@ -99,7 +99,7 @@ class ApplicationAbstract * @var \phpOMS\Dispatcher\Dispatcher * @since 1.0.0 */ - private $dispatcher = null; + protected $dispatcher = null; /** * Session instance. @@ -107,7 +107,7 @@ class ApplicationAbstract * @var \phpOMS\DataStorage\Session\SessionInterface * @since 1.0.0 */ - private $sessionManager = null; + protected $sessionManager = null; /** * Server localization. @@ -115,7 +115,7 @@ class ApplicationAbstract * @var \phpOMS\Localization\Localization * @since 1.0.0 */ - private $l11nServer = null; + protected $l11nServer = null; /** * Server localization. @@ -123,7 +123,7 @@ class ApplicationAbstract * @var \phpOMS\Log\FileLogger * @since 1.0.0 */ - private $logger = null; + protected $logger = null; /** * L11n manager. @@ -131,7 +131,7 @@ class ApplicationAbstract * @var \phpOMS\Localization\L11nManager * @since 1.0.0 */ - private $l11nManager = null; + protected $l11nManager = null; /** * Event manager. @@ -139,7 +139,7 @@ class ApplicationAbstract * @var \phpOMS\Event\EventManager * @since 1.0.0 */ - private $eventManager = null; + protected $eventManager = null; /** * Set values From c328c8fcefd8828ea92ea5559cf0aa3b4a2cc4bf Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 26 Jul 2017 17:50:41 +0200 Subject: [PATCH 034/103] Fix file author and copyright --- Account/Account.php | 2 -- Account/AccountManager.php | 2 -- Account/AccountStatus.php | 2 -- Account/AccountType.php | 2 -- Account/Group.php | 2 -- Account/GroupStatus.php | 2 -- Account/NullAccount.php | 2 -- Algorithm/AlgorithmType.php | 2 -- Algorithm/Knappsack/Backpack.php | 2 -- Algorithm/Knappsack/ItemInterface.php | 2 -- ApplicationAbstract.php | 2 -- Asset/AssetManager.php | 2 -- Asset/AssetType.php | 2 -- Auth/Auth.php | 2 -- Auth/LoginReturnType.php | 2 -- AutoloadException.php | 2 -- Autoloader.php | 2 -- Business/Marketing/NetPromoterScore.php | 2 -- Business/Sales/MarketShareEstimation.php | 2 -- Config/OptionsInterface.php | 2 -- Config/OptionsTrait.php | 1 - Config/SettingsAbstract.php | 2 -- Console/CommandManager.php | 1 - Contract/ArrayableInterface.php | 2 -- Contract/RenderableInterface.php | 2 -- DataStorage/Cache/CacheFactory.php | 2 -- DataStorage/Cache/CacheInterface.php | 2 -- DataStorage/Cache/CachePool.php | 2 -- DataStorage/Cache/CacheStatus.php | 2 -- DataStorage/Cache/CacheType.php | 2 -- DataStorage/Cache/FileCache.php | 2 -- DataStorage/Cache/MemCache.php | 2 -- DataStorage/Cache/NullCache.php | 2 -- DataStorage/Cache/RedisCache.php | 2 -- DataStorage/Cache/WinCache.php | 2 -- DataStorage/Cookie/CookieJar.php | 2 -- DataStorage/DataMapperInterface.php | 2 -- DataStorage/Database/BuilderAbstract.php | 2 -- DataStorage/Database/Connection/ConnectionAbstract.php | 2 -- DataStorage/Database/Connection/ConnectionFactory.php | 2 -- DataStorage/Database/Connection/ConnectionInterface.php | 2 -- DataStorage/Database/Connection/MysqlConnection.php | 2 -- DataStorage/Database/Connection/PostgresConnection.php | 1 - DataStorage/Database/Connection/SQLiteConnection.php | 2 -- DataStorage/Database/Connection/SqlServerConnection.php | 2 -- DataStorage/Database/Connector/MysqlConnector.php | 1 - DataStorage/Database/Connector/PostgresConnector.php | 1 - DataStorage/Database/Connector/SQLiteConnector.php | 1 - DataStorage/Database/Connector/SqlServerConnector.php | 1 - DataStorage/Database/DataMapperAbstract.php | 2 -- DataStorage/Database/DatabaseExceptionFactory.php | 2 -- DataStorage/Database/DatabasePool.php | 2 -- DataStorage/Database/DatabaseStatus.php | 2 -- DataStorage/Database/DatabaseType.php | 2 -- .../Database/Exception/InvalidConnectionConfigException.php | 2 -- DataStorage/Database/Exception/InvalidMapperException.php | 2 -- DataStorage/Database/GrammarAbstract.php | 2 -- DataStorage/Database/Query/Builder.php | 2 -- DataStorage/Database/Query/Column.php | 2 -- DataStorage/Database/Query/Expression.php | 1 - DataStorage/Database/Query/Grammar/Grammar.php | 2 -- DataStorage/Database/Query/Grammar/GrammarInterface.php | 1 - DataStorage/Database/Query/Grammar/MicrosoftGrammar.php | 2 -- DataStorage/Database/Query/Grammar/MysqlGrammar.php | 2 -- DataStorage/Database/Query/Grammar/OracleGrammar.php | 2 -- DataStorage/Database/Query/Grammar/PostgresGrammar.php | 2 -- DataStorage/Database/Query/Grammar/SQLiteGrammar.php | 2 -- DataStorage/Database/Query/JoinType.php | 2 -- DataStorage/Database/Query/QueryType.php | 2 -- DataStorage/Database/Query/Where.php | 2 -- DataStorage/Database/RelationType.php | 2 -- DataStorage/Database/Schema/Builder.php | 2 -- DataStorage/Database/Schema/Exception/TableException.php | 2 -- DataStorage/Database/Schema/Grammar/Grammar.php | 2 -- DataStorage/Database/Schema/Grammar/GrammarInterface.php | 1 - DataStorage/Database/Schema/Grammar/MysqlGrammar.php | 2 -- DataStorage/Database/Schema/Grammar/PostgresGrammar.php | 1 - DataStorage/Database/Schema/Grammar/SQLiteGrammar.php | 1 - DataStorage/Database/Schema/Grammar/SqlServerGrammar.php | 1 - DataStorage/Database/Schema/QueryType.php | 2 -- DataStorage/LockException.php | 2 -- DataStorage/Session/ConsoleSession.php | 2 -- DataStorage/Session/HttpSession.php | 2 -- DataStorage/Session/SessionInterface.php | 2 -- DataStorage/Session/SocketSession.php | 2 -- DataStorage/Web/Builder.php | 2 -- Datatypes/Address.php | 2 -- Datatypes/AddressType.php | 2 -- Datatypes/Enum.php | 2 -- Datatypes/EnumArray.php | 2 -- Datatypes/ExactFloat.php | 1 - Datatypes/Exception/InvalidEnumName.php | 2 -- Datatypes/Exception/InvalidEnumValue.php | 2 -- Datatypes/Iban.php | 2 -- Datatypes/Location.php | 2 -- Datatypes/NullLocation.php | 2 -- Datatypes/PhoneType.php | 2 -- Datatypes/SmartDateTime.php | 2 -- Dispatcher/Dispatcher.php | 2 -- Event/EventManager.php | 2 -- Html/TagType.php | 2 -- Localization/ISO3166CharEnum.php | 2 -- Localization/ISO3166NameEnum.php | 2 -- Localization/ISO3166NumEnum.php | 2 -- Localization/ISO3166TwoEnum.php | 2 -- Localization/ISO4217CharEnum.php | 2 -- Localization/ISO4217DecimalEnum.php | 2 -- Localization/ISO4217Enum.php | 2 -- Localization/ISO4217NumEnum.php | 2 -- Localization/ISO4217SubUnitEnum.php | 2 -- Localization/ISO4217SymbolEnum.php | 2 -- Localization/ISO639Enum.php | 2 -- Localization/ISO639x1Enum.php | 2 -- Localization/ISO639x2Enum.php | 2 -- Localization/ISO8601EnumArray.php | 2 -- Localization/L11nManager.php | 2 -- Localization/Localization.php | 2 -- Localization/Money.php | 2 -- Localization/NullLocalization.php | 2 -- Localization/PhoneEnum.php | 2 -- Localization/TimeZoneEnumArray.php | 2 -- Log/FileLogger.php | 2 -- Log/LogLevel.php | 2 -- Log/LoggerInterface.php | 2 -- Math/Differential/FiniteDifference.php | 2 -- Math/Exception/ZeroDevisionException.php | 2 -- Math/Finance/Depreciation.php | 1 - Math/Finance/FinanceFormulas.php | 2 -- Math/Finance/Forecasting/AR.php | 1 - Math/Finance/Forecasting/ARCH.php | 1 - Math/Finance/Forecasting/ARFIMA.php | 1 - Math/Finance/Forecasting/ARIMA.php | 1 - Math/Finance/Forecasting/ARMA.php | 1 - Math/Finance/Forecasting/ClassicalDecomposition.php | 2 -- .../Forecasting/ExponentialSmoothing/ExponentialSmoothing.php | 1 - Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php | 2 -- Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php | 2 -- Math/Finance/Forecasting/GARCH.php | 1 - Math/Finance/Forecasting/MA.php | 1 - Math/Finance/Forecasting/NAR.php | 1 - Math/Finance/Forecasting/NMA.php | 1 - Math/Finance/Forecasting/SARIMA.php | 1 - Math/Finance/Forecasting/SmoothingType.php | 2 -- Math/Finance/Loan.php | 2 -- Math/Finance/Lorenzkurve.php | 2 -- Math/Finance/StockBonds.php | 2 -- Math/Functions/Fibunacci.php | 2 -- Math/Functions/Functions.php | 2 -- Math/Geometry/ConvexHull/MonotoneChain.php | 2 -- Math/Integral/Gauss.php | 1 - Math/Matrix/Cholesky.php | 1 - Math/Matrix/Exception/InvalidDimensionException.php | 2 -- Math/Matrix/IdentityMatrix.php | 2 -- Math/Matrix/InverseType.php | 2 -- Math/Matrix/Matrix.php | 2 -- Math/Matrix/Vector.php | 2 -- Math/Number/Complex.php | 1 - Math/Number/Integer.php | 2 -- Math/Number/Irrational.php | 1 - Math/Number/Natural.php | 2 -- Math/Number/NumberType.php | 2 -- Math/Number/Numbers.php | 2 -- Math/Number/OperationInterface.php | 2 -- Math/Number/Prime.php | 2 -- Math/Number/Rational.php | 1 - Math/Number/Real.php | 1 - Math/Numerics/Interpolation/CubicSplineInterpolation.php | 2 -- Math/Numerics/Interpolation/LinearInterpolation.php | 2 -- Math/Numerics/Interpolation/PolynomialInterpolation.php | 2 -- Math/Optimization/GeneticAlgorithmInterface.php | 2 -- Math/Optimization/Graph/Dijkstra.php | 1 - Math/Optimization/Graph/EdgeInterface.php | 2 -- Math/Optimization/Graph/FloydWarshall.php | 1 - Math/Optimization/Graph/Graph.php | 2 -- Math/Optimization/Graph/NullEdge.php | 2 -- Math/Optimization/Graph/NullVertice.php | 2 -- Math/Optimization/Graph/VerticeInterface.php | 2 -- Math/Optimization/Knappsack/Backpack.php | 1 - Math/Optimization/Knappsack/BruteForce.php | 1 - Math/Optimization/Knappsack/GA.php | 1 - Math/Optimization/Knappsack/Item.php | 1 - Math/Optimization/Knappsack/ItemPool.php | 1 - Math/Optimization/Knappsack/Population.php | 1 - Math/Optimization/ShiftScheduling/BruteForce.php | 1 - Math/Optimization/ShiftScheduling/GA.php | 1 - Math/Optimization/ShiftScheduling/Population.php | 1 - Math/Optimization/ShiftScheduling/Workday.php | 1 - Math/Optimization/ShiftScheduling/Worker.php | 1 - Math/Optimization/ShiftScheduling/WorkerPool.php | 1 - Math/Optimization/TSP/BruteForce.php | 2 -- Math/Optimization/TSP/City.php | 2 -- Math/Optimization/TSP/CityPool.php | 2 -- Math/Optimization/TSP/GA.php | 2 -- Math/Optimization/TSP/Population.php | 2 -- Math/Optimization/TSP/Tour.php | 2 -- Math/Parser/Evaluator.php | 2 -- Math/Shape/D2/Circle.php | 2 -- Math/Shape/D2/D2ShapeInterface.php | 2 -- Math/Shape/D2/Ellipse.php | 2 -- Math/Shape/D2/Polygon.php | 2 -- Math/Shape/D2/Quadrilateral.php | 1 - Math/Shape/D2/Rectangle.php | 2 -- Math/Shape/D2/Trapezoid.php | 2 -- Math/Shape/D2/Triangle.php | 2 -- Math/Shape/D3/Cone.php | 2 -- Math/Shape/D3/Cuboid.php | 2 -- Math/Shape/D3/Cylinder.php | 2 -- Math/Shape/D3/D3ShapeInterface.php | 2 -- Math/Shape/D3/Prism.php | 1 - Math/Shape/D3/RectangularPyramid.php | 2 -- Math/Shape/D3/Sphere.php | 2 -- Math/Shape/D3/Tetrahedron.php | 2 -- Math/Shape/ShapeInterface.php | 2 -- Math/Statistic/Average.php | 2 -- Math/Statistic/Basic.php | 2 -- Math/Statistic/Correlation.php | 2 -- Math/Statistic/Forecast/Error.php | 2 -- Math/Statistic/Forecast/ForecastIntervalMultiplier.php | 2 -- Math/Statistic/Forecast/Forecasts.php | 2 -- Math/Statistic/Forecast/Regression/LevelLevelRegression.php | 2 -- Math/Statistic/Forecast/Regression/LevelLogRegression.php | 2 -- Math/Statistic/Forecast/Regression/LogLevelRegression.php | 2 -- Math/Statistic/Forecast/Regression/LogLogRegression.php | 2 -- Math/Statistic/Forecast/Regression/MultipleLinearRegression.php | 1 - Math/Statistic/Forecast/Regression/RegressionAbstract.php | 1 - Math/Statistic/MeasureOfDispersion.php | 2 -- Math/Stochastic/Distribution/BernoulliDistribution.php | 2 -- Math/Stochastic/Distribution/BetaDistribution.php | 1 - Math/Stochastic/Distribution/BinomialDistribution.php | 2 -- Math/Stochastic/Distribution/CauchyDistribution.php | 2 -- Math/Stochastic/Distribution/ChiSquaredDistribution.php | 2 -- Math/Stochastic/Distribution/ExponentialDistribution.php | 2 -- Math/Stochastic/Distribution/FDistribution.php | 1 - Math/Stochastic/Distribution/GammaDistribution.php | 1 - Math/Stochastic/Distribution/GeometricDistribution.php | 2 -- Math/Stochastic/Distribution/HypergeometricDistribution.php | 1 - Math/Stochastic/Distribution/LaplaceDistribution.php | 2 -- Math/Stochastic/Distribution/LogDistribution.php | 1 - Math/Stochastic/Distribution/LogNormalDistribution.php | 1 - Math/Stochastic/Distribution/LogisticDistribution.php | 1 - Math/Stochastic/Distribution/NormalDistribution.php | 2 -- Math/Stochastic/Distribution/ParetoDistribution.php | 1 - Math/Stochastic/Distribution/PoissonDistribution.php | 2 -- Math/Stochastic/Distribution/TDistribution.php | 1 - Math/Stochastic/Distribution/UniformDistributionContinuous.php | 2 -- Math/Stochastic/Distribution/UniformDistributionDiscrete.php | 2 -- Math/Stochastic/Distribution/WeibullDistribution.php | 1 - Math/Stochastic/NaiveBayesFilter.php | 2 -- Message/HeaderAbstract.php | 2 -- Message/Http/BrowserType.php | 2 -- Message/Http/Header.php | 2 -- Message/Http/OSType.php | 2 -- Message/Http/Request.php | 2 -- Message/Http/RequestMethod.php | 2 -- Message/Http/RequestStatus.php | 2 -- Message/Http/Response.php | 2 -- Message/Http/Rest.php | 2 -- Message/Mail/Imap.php | 2 -- Message/Mail/Mail.php | 2 -- Message/Mail/MailType.php | 2 -- Message/Mail/OAuth.php | 1 - Message/Mail/Pop3.php | 1 - Message/Mail/Smtp.php | 1 - Message/MessageInterface.php | 2 -- Message/RequestAbstract.php | 2 -- Message/RequestSource.php | 2 -- Message/ResponseAbstract.php | 2 -- Message/ResponseType.php | 2 -- Message/Socket/Request.php | 1 - Message/Socket/Response.php | 1 - Message/UploadedFileInterface.php | 2 -- Model/Html/Head.php | 2 -- Model/Html/Meta.php | 2 -- Module/ActivateAbstract.php | 2 -- Module/ConsoleInterface.php | 2 -- Module/DeactivateAbstract.php | 2 -- Module/Exception/InvalidModuleException.php | 2 -- Module/Exception/InvalidThemeException.php | 2 -- Module/InfoManager.php | 2 -- Module/InstallerAbstract.php | 2 -- Module/ModuleAbstract.php | 2 -- Module/ModuleFactory.php | 2 -- Module/ModuleManager.php | 2 -- Module/NullModule.php | 2 -- Module/SocketInterface.php | 2 -- Module/UninstallAbstract.php | 2 -- Module/UpdateAbstract.php | 2 -- Module/WebInterface.php | 2 -- Pattern/Mediator.php | 2 -- Pattern/Multition.php | 2 -- Pattern/Observer.php | 2 -- Pattern/Singleton.php | 2 -- Pattern/Subject.php | 2 -- Router/RouteVerb.php | 2 -- Router/Router.php | 2 -- Security/Encryption/Encryption.php | 2 -- Socket/Client/Client.php | 2 -- Socket/Client/ClientConnection.php | 2 -- Socket/Client/NullClientConnection.php | 2 -- Socket/CommandManager.php | 1 - Socket/Packets/Header.php | 2 -- Socket/Packets/PacketAbstract.php | 2 -- Socket/Packets/PacketManager.php | 2 -- Socket/Packets/PacketType.php | 2 -- Socket/Server/ClientManager.php | 1 - Socket/Server/Server.php | 2 -- Socket/SocketAbstract.php | 2 -- Socket/SocketInterface.php | 2 -- Socket/SocketType.php | 2 -- Stdlib/Collection/Collection.php | 2 -- Stdlib/Graph/BinaryTree.php | 2 -- Stdlib/Graph/Edge.php | 2 -- Stdlib/Graph/Graph.php | 2 -- Stdlib/Graph/Node.php | 2 -- Stdlib/Graph/Tree.php | 2 -- Stdlib/Map/KeyType.php | 2 -- Stdlib/Map/MultiMap.php | 2 -- Stdlib/Map/OrderType.php | 2 -- Stdlib/Queue/PriorityMode.php | 2 -- Stdlib/Queue/PriorityQueue.php | 2 -- System/File/ContainerInterface.php | 2 -- System/File/ContentPutMode.php | 2 -- System/File/DirectoryInterface.php | 2 -- System/File/ExtensionType.php | 2 -- System/File/FileInterface.php | 2 -- System/File/FileUtils.php | 2 -- System/File/Ftp/Directory.php | 2 -- System/File/Ftp/File.php | 2 -- System/File/Ftp/FtpStorage.php | 2 -- System/File/Local/Directory.php | 2 -- System/File/Local/File.php | 2 -- System/File/Local/FileAbstract.php | 2 -- System/File/Local/LocalStorage.php | 2 -- System/File/PathException.php | 2 -- System/File/PermissionException.php | 2 -- System/File/Storage.php | 2 -- System/File/StorageAbstract.php | 2 -- System/MimeType.php | 2 -- System/OperatingSystem.php | 2 -- System/SystemType.php | 2 -- System/SystemUtils.php | 2 -- UnhandledHandler.php | 1 - Uri/Http.php | 2 -- Uri/InvalidUriException.php | 2 -- Uri/UriFactory.php | 2 -- Uri/UriInterface.php | 2 -- Uri/UriScheme.php | 2 -- Utils/ArrayUtils.php | 2 -- Utils/Barcode/Aztec.php | 2 -- Utils/Barcode/C128Abstract.php | 2 -- Utils/Barcode/C128a.php | 2 -- Utils/Barcode/C128b.php | 2 -- Utils/Barcode/C128c.php | 2 -- Utils/Barcode/C25.php | 2 -- Utils/Barcode/C39.php | 2 -- Utils/Barcode/Codebar.php | 2 -- Utils/Barcode/Datamatrix.php | 2 -- Utils/Barcode/HIBCC.php | 2 -- Utils/Barcode/OrientationType.php | 2 -- Utils/Barcode/QR.php | 2 -- Utils/ColorUtils.php | 2 -- Utils/Compression/CompressionInterface.php | 2 -- Utils/Compression/LZW.php | 2 -- Utils/Converter/AngleType.php | 2 -- Utils/Converter/AreaType.php | 2 -- Utils/Converter/Currency.php | 2 -- Utils/Converter/EnergyPowerType.php | 2 -- Utils/Converter/File.php | 2 -- Utils/Converter/FileSizeType.php | 2 -- Utils/Converter/Ip.php | 2 -- Utils/Converter/LengthType.php | 2 -- Utils/Converter/Measurement.php | 2 -- Utils/Converter/Numeric.php | 2 -- Utils/Converter/PressureType.php | 2 -- Utils/Converter/SpeedType.php | 2 -- Utils/Converter/TemperatureType.php | 2 -- Utils/Converter/TimeType.php | 2 -- Utils/Converter/VolumeType.php | 2 -- Utils/Converter/WeightType.php | 2 -- Utils/EDI/AnsiX12/EDIAbstract.php | 2 -- Utils/EDI/AnsiX12/FunctionalGroupHeader.php | 2 -- Utils/EDI/AnsiX12/Header.php | 2 -- Utils/EDI/AnsiX12/InterchangeControlHeader.php | 2 -- Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php | 2 -- Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php | 2 -- Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Heading.php | 2 -- Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php | 2 -- .../EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php | 2 -- Utils/Encoding/Caesar.php | 2 -- Utils/Encoding/EncodingInterface.php | 2 -- Utils/Encoding/Gray.php | 2 -- Utils/Encoding/Huffman/Dictionary.php | 2 -- Utils/Encoding/Huffman/Huffman.php | 2 -- Utils/Encoding/XorEncoding.php | 2 -- Utils/Excel/Excel.php | 1 - Utils/Git/Author.php | 2 -- Utils/Git/Branch.php | 2 -- Utils/Git/Commit.php | 2 -- Utils/Git/Git.php | 2 -- Utils/Git/Repository.php | 2 -- Utils/Git/Tag.php | 2 -- Utils/IO/Csv/CsvDatabaseMapper.php | 1 - Utils/IO/Csv/CsvInterface.php | 1 - Utils/IO/Csv/CsvSettings.php | 1 - Utils/IO/Excel/ExcelDatabaseMapper.php | 1 - Utils/IO/Excel/ExcelInterface.php | 2 -- Utils/IO/ExchangeInterface.php | 2 -- Utils/IO/IODatabaseMapper.php | 1 - Utils/IO/Json/InvalidJsonException.php | 2 -- Utils/IO/Json/JsonInterface.php | 2 -- Utils/IO/Pdf/PdfInterface.php | 2 -- Utils/IO/Zip/ArchiveInterface.php | 2 -- Utils/IO/Zip/Gz.php | 2 -- Utils/IO/Zip/Tar.php | 2 -- Utils/IO/Zip/TarGz.php | 2 -- Utils/IO/Zip/Zip.php | 2 -- Utils/ImageUtils.php | 2 -- Utils/JobQueue/Job.php | 2 -- Utils/JobQueue/JobQueue.php | 2 -- Utils/JsonBuilder.php | 2 -- Utils/PDF/Pdf.php | 1 - Utils/Parser/LaTex/Expressions/Product.php | 1 - Utils/Parser/LaTex/Expressions/Sum.php | 1 - Utils/Parser/LaTex/Expressions/Trigonometry.php | 1 - Utils/Parser/LaTex/LaTexParser.php | 1 - Utils/Parser/LaTex/Types/Interval.php | 1 - Utils/Parser/LaTex/Types/MathFunction.php | 1 - Utils/Parser/LaTex/Types/Variable.php | 1 - Utils/Parser/Markdown/Markdown.php | 2 -- Utils/Parser/Php/ArrayParser.php | 2 -- Utils/Parser/Php/ClassParser.php | 2 -- Utils/Parser/Php/ClassType.php | 2 -- Utils/Parser/Php/FunctionParser.php | 2 -- Utils/Parser/Php/MemberParser.php | 2 -- Utils/Parser/Php/Visibility.php | 2 -- Utils/Permutation.php | 2 -- Utils/RnG/Address.php | 1 - Utils/RnG/ArrayRandomize.php | 2 -- Utils/RnG/City.php | 1 - Utils/RnG/DateTime.php | 2 -- Utils/RnG/DistributionType.php | 2 -- Utils/RnG/Email.php | 1 - Utils/RnG/File.php | 2 -- Utils/RnG/Iban.php | 1 - Utils/RnG/LinearCongruentialGenerator.php | 2 -- Utils/RnG/Name.php | 2 -- Utils/RnG/Numeric.php | 1 - Utils/RnG/Phone.php | 2 -- Utils/RnG/PostalZip.php | 1 - Utils/RnG/StringUtils.php | 2 -- Utils/RnG/Text.php | 2 -- Utils/StringUtils.php | 2 -- Utils/TaskSchedule/Cron.php | 2 -- Utils/TaskSchedule/CronJob.php | 2 -- Utils/TaskSchedule/Interval.php | 2 -- Utils/TaskSchedule/InvalidTaskParameterException.php | 2 -- Utils/TaskSchedule/Schedule.php | 2 -- Utils/TaskSchedule/SchedulerAbstract.php | 2 -- Utils/TaskSchedule/SchedulerFactory.php | 2 -- Utils/TaskSchedule/TaskAbstract.php | 2 -- Utils/TaskSchedule/TaskFactory.php | 2 -- Utils/TaskSchedule/TaskScheduler.php | 2 -- Utils/TestUtils.php | 2 -- Validation/Barcode/Barcode.php | 1 - Validation/Barcode/Barcode11.php | 1 - Validation/Barcode/Barcode128.php | 1 - Validation/Barcode/Barcode25.php | 1 - Validation/Barcode/Barcode39.php | 1 - Validation/Barcode/Barcode93.php | 1 - Validation/Barcode/BarcodeCodebar.php | 1 - Validation/Barcode/BarcodeDatamatrix.php | 1 - Validation/Barcode/BarcodeEAN.php | 1 - Validation/Barcode/BarcodeMSI.php | 1 - Validation/Barcode/QrCode.php | 1 - Validation/Base/DateTime.php | 2 -- Validation/Finance/BIC.php | 2 -- Validation/Finance/CreditCard.php | 2 -- Validation/Finance/Iban.php | 2 -- Validation/Finance/IbanEnum.php | 2 -- Validation/Finance/IbanErrorType.php | 2 -- Validation/ModelValidationTrait.php | 1 - Validation/Network/Email.php | 2 -- Validation/Network/Hostname.php | 2 -- Validation/Network/Ip.php | 2 -- Validation/Validator.php | 1 - Validation/ValidatorAbstract.php | 2 -- Validation/ValidatorInterface.php | 2 -- Version/Version.php | 2 -- Views/View.php | 2 -- Views/ViewAbstract.php | 2 -- Views/ViewLayout.php | 2 -- 491 files changed, 881 deletions(-) diff --git a/Account/Account.php b/Account/Account.php index 8ad4f1f10..32c6174af 100644 --- a/Account/Account.php +++ b/Account/Account.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Validation\Network\Email; * * @category Framework * @package phpOMS\Account - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Account/AccountManager.php b/Account/AccountManager.php index 781c5754d..c8bfed69b 100644 --- a/Account/AccountManager.php +++ b/Account/AccountManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Session\SessionInterface; * * @category Framework * @package phpOMS\Account - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Account/AccountStatus.php b/Account/AccountStatus.php index 0b810b379..e7396c606 100644 --- a/Account/AccountStatus.php +++ b/Account/AccountStatus.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Account - * @author OMS Development Team * @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 360f5ad03..0f2cd3d2b 100644 --- a/Account/AccountType.php +++ b/Account/AccountType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 45ff346bc..a44f90cb7 100644 --- a/Account/Group.php +++ b/Account/Group.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Contract\ArrayableInterface; * * @category Framework * @package phpOMS\Account - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Account/GroupStatus.php b/Account/GroupStatus.php index fbb5f7beb..9605d4c6e 100644 --- a/Account/GroupStatus.php +++ b/Account/GroupStatus.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Calendar * @package Modules - * @author OMS Development Team * @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 c03e9336f..20d49d87e 100644 --- a/Account/NullAccount.php +++ b/Account/NullAccount.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Account; * * @category Framework * @package phpOMS\Account - * @author OMS Development Team * @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 3752e3a77..85196028f 100644 --- a/Algorithm/AlgorithmType.php +++ b/Algorithm/AlgorithmType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Tasks * @package Modules - * @author OMS Development Team * @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 d856cdade..ddd220cbc 100644 --- a/Algorithm/Knappsack/Backpack.php +++ b/Algorithm/Knappsack/Backpack.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMS\Algorithm\AlgorithmType; * * @category Framework * @package phpOMS\Auth - * @author OMS Development Team * @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 b9a182a98..0966fc09b 100644 --- a/Algorithm/Knappsack/ItemInterface.php +++ b/Algorithm/Knappsack/ItemInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Algorithm\Knappsack; * * @category Framework * @package phpOMS\Math - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/ApplicationAbstract.php b/ApplicationAbstract.php index 8e56dc45c..8d47bfbb7 100644 --- a/ApplicationAbstract.php +++ b/ApplicationAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS; * * @category Framework * @package Framework - * @author OMS Development Team * @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 95ee56372..f6bb7ef07 100644 --- a/Asset/AssetManager.php +++ b/Asset/AssetManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Asset; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Asset/AssetType.php b/Asset/AssetType.php index 33e1e471d..6851e0249 100644 --- a/Asset/AssetType.php +++ b/Asset/AssetType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @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 aa383fe6b..38a80b112 100644 --- a/Auth/Auth.php +++ b/Auth/Auth.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Auth - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Auth/LoginReturnType.php b/Auth/LoginReturnType.php index cf3e29c35..b67f3a40a 100644 --- a/Auth/LoginReturnType.php +++ b/Auth/LoginReturnType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Auth - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/AutoloadException.php b/AutoloadException.php index ab835ba58..e7ff43e8c 100644 --- a/AutoloadException.php +++ b/AutoloadException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Autoloader.php b/Autoloader.php index 9835bab60..8a67bc84d 100644 --- a/Autoloader.php +++ b/Autoloader.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ spl_autoload_register('\phpOMS\Autoloader::default_autoloader'); * * @category Framework * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Business/Marketing/NetPromoterScore.php b/Business/Marketing/NetPromoterScore.php index 75eecca4d..81a857fd3 100644 --- a/Business/Marketing/NetPromoterScore.php +++ b/Business/Marketing/NetPromoterScore.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Business\Marketing; * * @category Framework * @package phpOMS\Business - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php index 309b83618..3b870bd16 100644 --- a/Business/Sales/MarketShareEstimation.php +++ b/Business/Sales/MarketShareEstimation.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ namespace phpOMS\Business\Sales; * * @category Framework * @package phpOMS\Business - * @author OMS Development Team * @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 47be5259a..67ad30553 100644 --- a/Config/OptionsInterface.php +++ b/Config/OptionsInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Config; * * @category Framework * @package phpOMS\Config - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Config/OptionsTrait.php b/Config/OptionsTrait.php index f54ca012d..1bf3b2d5c 100644 --- a/Config/OptionsTrait.php +++ b/Config/OptionsTrait.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Config/SettingsAbstract.php b/Config/SettingsAbstract.php index 58e4a458b..39ca54f50 100644 --- a/Config/SettingsAbstract.php +++ b/Config/SettingsAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Config - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Console/CommandManager.php b/Console/CommandManager.php index 680a893c0..f15e8d25f 100644 --- a/Console/CommandManager.php +++ b/Console/CommandManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Contract/ArrayableInterface.php b/Contract/ArrayableInterface.php index 6d4e3bd0c..cd978587d 100644 --- a/Contract/ArrayableInterface.php +++ b/Contract/ArrayableInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Contract; * * @category Framework * @package phpOMS\Contract - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Contract/RenderableInterface.php b/Contract/RenderableInterface.php index e5f984154..dcb9917e6 100644 --- a/Contract/RenderableInterface.php +++ b/Contract/RenderableInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Contract; * * @category Framework * @package phpOMS\Contract - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/CacheFactory.php b/DataStorage/Cache/CacheFactory.php index dce543b7b..daa5ef4c4 100644 --- a/DataStorage/Cache/CacheFactory.php +++ b/DataStorage/Cache/CacheFactory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Cache\FileCache; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/CacheInterface.php b/DataStorage/Cache/CacheInterface.php index 1bf434c80..444214f22 100644 --- a/DataStorage/Cache/CacheInterface.php +++ b/DataStorage/Cache/CacheInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMS\Datatypes\Exception\InvalidEnumValue; * * @category Framework * @package phpOMS\DataStorage\Cache - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/CachePool.php b/DataStorage/Cache/CachePool.php index f14099b0c..8f5de89d0 100644 --- a/DataStorage/Cache/CachePool.php +++ b/DataStorage/Cache/CachePool.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\DataStorage\Cache\CacheFactory; * * @category Framework * @package phpOMS\DataStorage\Cache - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/CacheStatus.php b/DataStorage/Cache/CacheStatus.php index e2f57ddb9..2cfb17fef 100644 --- a/DataStorage/Cache/CacheStatus.php +++ b/DataStorage/Cache/CacheStatus.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Cache - * @author OMS Development Team * @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 995b12c6a..f88bf5067 100644 --- a/DataStorage/Cache/CacheType.php +++ b/DataStorage/Cache/CacheType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Cache - * @author OMS Development Team * @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 89bdc7d7c..631d9830b 100644 --- a/DataStorage/Cache/FileCache.php +++ b/DataStorage/Cache/FileCache.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\System\File\Local\File; * * @category Framework * @package phpOMS\DataStorage\Cache - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/MemCache.php b/DataStorage/Cache/MemCache.php index b3076fba3..4314263af 100644 --- a/DataStorage/Cache/MemCache.php +++ b/DataStorage/Cache/MemCache.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Cache; * * @category Framework * @package phpOMS\DataStorage\Cache - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Cache/NullCache.php b/DataStorage/Cache/NullCache.php index c743219ae..95b3a07e6 100644 --- a/DataStorage/Cache/NullCache.php +++ b/DataStorage/Cache/NullCache.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Cache; * * @category Framework * @package phpOMS\DataStorage\Cache - * @author OMS Development Team * @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 368b7d51f..586ec294e 100644 --- a/DataStorage/Cache/RedisCache.php +++ b/DataStorage/Cache/RedisCache.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @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 3f5fee1e8..cab734a1c 100644 --- a/DataStorage/Cache/WinCache.php +++ b/DataStorage/Cache/WinCache.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @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 2b67ef105..4ee0e663b 100644 --- a/DataStorage/Cookie/CookieJar.php +++ b/DataStorage/Cookie/CookieJar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\DataStorage\LockException; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/DataMapperInterface.php b/DataStorage/DataMapperInterface.php index 8c25c6cce..48aaf4925 100644 --- a/DataStorage/DataMapperInterface.php +++ b/DataStorage/DataMapperInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/BuilderAbstract.php b/DataStorage/Database/BuilderAbstract.php index b4027f061..87a8702bb 100644 --- a/DataStorage/Database/BuilderAbstract.php +++ b/DataStorage/Database/BuilderAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Connection/ConnectionAbstract.php b/DataStorage/Database/Connection/ConnectionAbstract.php index e0938f66d..1a97a9a1d 100644 --- a/DataStorage/Database/Connection/ConnectionAbstract.php +++ b/DataStorage/Database/Connection/ConnectionAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Connection/ConnectionFactory.php b/DataStorage/Database/Connection/ConnectionFactory.php index c4892668e..ffe361716 100644 --- a/DataStorage/Database/Connection/ConnectionFactory.php +++ b/DataStorage/Database/Connection/ConnectionFactory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\DataStorage\Database\DatabaseType; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Connection/ConnectionInterface.php b/DataStorage/Database/Connection/ConnectionInterface.php index ba08e1b06..cd320bf30 100644 --- a/DataStorage/Database/Connection/ConnectionInterface.php +++ b/DataStorage/Database/Connection/ConnectionInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Connection/MysqlConnection.php b/DataStorage/Database/Connection/MysqlConnection.php index 719031e69..ad739724b 100644 --- a/DataStorage/Database/Connection/MysqlConnection.php +++ b/DataStorage/Database/Connection/MysqlConnection.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\DataStorage\Database\Exception\InvalidConnectionConfigException; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Connection/PostgresConnection.php b/DataStorage/Database/Connection/PostgresConnection.php index 646d8bc6a..60545b66f 100644 --- a/DataStorage/Database/Connection/PostgresConnection.php +++ b/DataStorage/Database/Connection/PostgresConnection.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 c351d88cc..007ef2b6d 100644 --- a/DataStorage/Database/Connection/SQLiteConnection.php +++ b/DataStorage/Database/Connection/SQLiteConnection.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\DataStorage\Database\Query\Grammar\SqliteGrammar; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Connection/SqlServerConnection.php b/DataStorage/Database/Connection/SqlServerConnection.php index 9a394cf29..00bd23b30 100644 --- a/DataStorage/Database/Connection/SqlServerConnection.php +++ b/DataStorage/Database/Connection/SqlServerConnection.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGramma * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Connector/MysqlConnector.php b/DataStorage/Database/Connector/MysqlConnector.php index 91803676e..808dac6ed 100644 --- a/DataStorage/Database/Connector/MysqlConnector.php +++ b/DataStorage/Database/Connector/MysqlConnector.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 4731f3d35..aa39a6c7e 100644 --- a/DataStorage/Database/Connector/PostgresConnector.php +++ b/DataStorage/Database/Connector/PostgresConnector.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 6b5a11f83..27cf53e9c 100644 --- a/DataStorage/Database/Connector/SQLiteConnector.php +++ b/DataStorage/Database/Connector/SQLiteConnector.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 e9ea95c01..75a6f1e6b 100644 --- a/DataStorage/Database/Connector/SqlServerConnector.php +++ b/DataStorage/Database/Connector/SqlServerConnector.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 7165af099..f1bc6a62b 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\DataStorage\Database\Exception\InvalidMapperException; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/DatabaseExceptionFactory.php b/DataStorage/Database/DatabaseExceptionFactory.php index 7229173f3..a4df4cec1 100644 --- a/DataStorage/Database/DatabaseExceptionFactory.php +++ b/DataStorage/Database/DatabaseExceptionFactory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\DataStorage\Database\Schema\Exception\TableException; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/DatabasePool.php b/DataStorage/Database/DatabasePool.php index 1dd5dc947..aaec74103 100644 --- a/DataStorage/Database/DatabasePool.php +++ b/DataStorage/Database/DatabasePool.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionFactory; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/DatabaseStatus.php b/DataStorage/Database/DatabaseStatus.php index fb35f42ca..99d80b9fa 100644 --- a/DataStorage/Database/DatabaseStatus.php +++ b/DataStorage/Database/DatabaseStatus.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @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 75b246000..4b302322b 100644 --- a/DataStorage/Database/DatabaseType.php +++ b/DataStorage/Database/DatabaseType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Exception/InvalidConnectionConfigException.php b/DataStorage/Database/Exception/InvalidConnectionConfigException.php index f3fec1deb..c56ddff3e 100644 --- a/DataStorage/Database/Exception/InvalidConnectionConfigException.php +++ b/DataStorage/Database/Exception/InvalidConnectionConfigException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Database\Exception; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Exception/InvalidMapperException.php b/DataStorage/Database/Exception/InvalidMapperException.php index 4e914f79d..240c3b097 100644 --- a/DataStorage/Database/Exception/InvalidMapperException.php +++ b/DataStorage/Database/Exception/InvalidMapperException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Database\Exception; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @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 5b60063a9..99e0c5e47 100644 --- a/DataStorage/Database/GrammarAbstract.php +++ b/DataStorage/Database/GrammarAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Utils\StringUtils; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Builder.php b/DataStorage/Database/Query/Builder.php index bbaf2f646..9628f1736 100644 --- a/DataStorage/Database/Query/Builder.php +++ b/DataStorage/Database/Query/Builder.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Column.php b/DataStorage/Database/Query/Column.php index ce992dd8e..7c485668a 100644 --- a/DataStorage/Database/Query/Column.php +++ b/DataStorage/Database/Query/Column.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Database\Query; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Expression.php b/DataStorage/Database/Query/Expression.php index d1a40056a..0a9946fb0 100644 --- a/DataStorage/Database/Query/Expression.php +++ b/DataStorage/Database/Query/Expression.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 a27c43a77..a67b302b1 100644 --- a/DataStorage/Database/Query/Grammar/Grammar.php +++ b/DataStorage/Database/Query/Grammar/Grammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\DataStorage\Database\Query\Where; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Grammar/GrammarInterface.php b/DataStorage/Database/Query/Grammar/GrammarInterface.php index 217e41a9f..234da813f 100644 --- a/DataStorage/Database/Query/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Query/Grammar/GrammarInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 c7d841f31..00214fbb5 100644 --- a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php +++ b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Grammar/MysqlGrammar.php b/DataStorage/Database/Query/Grammar/MysqlGrammar.php index 0b59f574b..082535a71 100644 --- a/DataStorage/Database/Query/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Query/Grammar/MysqlGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Grammar/OracleGrammar.php b/DataStorage/Database/Query/Grammar/OracleGrammar.php index 4d616bea0..df49c2ea4 100644 --- a/DataStorage/Database/Query/Grammar/OracleGrammar.php +++ b/DataStorage/Database/Query/Grammar/OracleGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Grammar/PostgresGrammar.php b/DataStorage/Database/Query/Grammar/PostgresGrammar.php index caaee4c26..a29215e9f 100644 --- a/DataStorage/Database/Query/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Query/Grammar/PostgresGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php index 9ad5a5117..80d950103 100644 --- a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @category Framework * @package phpOMS\DataStorage\Database\Query\Grammar - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Query/JoinType.php b/DataStorage/Database/Query/JoinType.php index 9e631a7bb..5b5e2ef19 100644 --- a/DataStorage/Database/Query/JoinType.php +++ b/DataStorage/Database/Query/JoinType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 587398c75..b227fadf6 100644 --- a/DataStorage/Database/Query/QueryType.php +++ b/DataStorage/Database/Query/QueryType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 11d71eaaa..d2af3ccd0 100644 --- a/DataStorage/Database/Query/Where.php +++ b/DataStorage/Database/Query/Where.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Database\Query; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 c9a65e735..013454a6e 100644 --- a/DataStorage/Database/RelationType.php +++ b/DataStorage/Database/RelationType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @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 933538bf3..c330dcf38 100644 --- a/DataStorage/Database/Schema/Builder.php +++ b/DataStorage/Database/Schema/Builder.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\Query; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Schema/Exception/TableException.php b/DataStorage/Database/Schema/Exception/TableException.php index a0b01e21e..b69bc0cc9 100644 --- a/DataStorage/Database/Schema/Exception/TableException.php +++ b/DataStorage/Database/Schema/Exception/TableException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Database\Schema\Exception; * * @category System * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Schema/Grammar/Grammar.php b/DataStorage/Database/Schema/Grammar/Grammar.php index 0316ae51b..406c92f4d 100644 --- a/DataStorage/Database/Schema/Grammar/Grammar.php +++ b/DataStorage/Database/Schema/Grammar/Grammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\Schema\QueryType; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Schema/Grammar/GrammarInterface.php b/DataStorage/Database/Schema/Grammar/GrammarInterface.php index d768c4e21..b3dc4695e 100644 --- a/DataStorage/Database/Schema/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Schema/Grammar/GrammarInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 b32923e86..53f4102c8 100644 --- a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php index e7a8e45b5..fb6868741 100644 --- a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 568d46090..864ea36cd 100644 --- a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 c877259be..c9ee5d5b8 100644 --- a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 f15e00abe..085d66ee3 100644 --- a/DataStorage/Database/Schema/QueryType.php +++ b/DataStorage/Database/Schema/QueryType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @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 6582c2409..b00a96209 100644 --- a/DataStorage/LockException.php +++ b/DataStorage/LockException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Session/ConsoleSession.php b/DataStorage/Session/ConsoleSession.php index f006018b7..70b2a09f9 100644 --- a/DataStorage/Session/ConsoleSession.php +++ b/DataStorage/Session/ConsoleSession.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Session; * * @category Framework * @package phpOMS\DataStorage\Session - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Session/HttpSession.php b/DataStorage/Session/HttpSession.php index 0e0038b29..c31e478f3 100644 --- a/DataStorage/Session/HttpSession.php +++ b/DataStorage/Session/HttpSession.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\DataStorage\LockException; * * @category Framework * @package phpOMS\DataStorage\Session - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Session/SessionInterface.php b/DataStorage/Session/SessionInterface.php index 8e24683a5..d69d2e427 100644 --- a/DataStorage/Session/SessionInterface.php +++ b/DataStorage/Session/SessionInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Cache - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Session/SocketSession.php b/DataStorage/Session/SocketSession.php index 1b152641a..464068d6e 100644 --- a/DataStorage/Session/SocketSession.php +++ b/DataStorage/Session/SocketSession.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\DataStorage\Session; * * @category Framework * @package phpOMS\DataStorage\Session - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/DataStorage/Web/Builder.php b/DataStorage/Web/Builder.php index 28faf7490..cef7ce903 100644 --- a/DataStorage/Web/Builder.php +++ b/DataStorage/Web/Builder.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMs\DataStorage\Database\Query\Builder as DatabaseQueryBuilder; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 1d07625c6..a597aba4b 100644 --- a/Datatypes/Address.php +++ b/Datatypes/Address.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Datatypes; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/AddressType.php b/Datatypes/AddressType.php index 80b879027..bdc045148 100644 --- a/Datatypes/AddressType.php +++ b/Datatypes/AddressType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Datatypes; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @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 6ca1c31c5..dbd2efb83 100644 --- a/Datatypes/Enum.php +++ b/Datatypes/Enum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/EnumArray.php b/Datatypes/EnumArray.php index be248fd33..795ab6ee8 100644 --- a/Datatypes/EnumArray.php +++ b/Datatypes/EnumArray.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/ExactFloat.php b/Datatypes/ExactFloat.php index 4b806f4d9..3ed788e6e 100644 --- a/Datatypes/ExactFloat.php +++ b/Datatypes/ExactFloat.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 eb7310b6d..b5fa7d95e 100644 --- a/Datatypes/Exception/InvalidEnumName.php +++ b/Datatypes/Exception/InvalidEnumName.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Datatypes\Exception; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/Exception/InvalidEnumValue.php b/Datatypes/Exception/InvalidEnumValue.php index 54f17fb22..7c24f0811 100644 --- a/Datatypes/Exception/InvalidEnumValue.php +++ b/Datatypes/Exception/InvalidEnumValue.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Datatypes\Exception; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/Iban.php b/Datatypes/Iban.php index 1ae324a27..9f9393d72 100644 --- a/Datatypes/Iban.php +++ b/Datatypes/Iban.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Validation\Finance\IbanEnum; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/Location.php b/Datatypes/Location.php index 5c824374b..4f79e3136 100644 --- a/Datatypes/Location.php +++ b/Datatypes/Location.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Datatypes; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Datatypes/NullLocation.php b/Datatypes/NullLocation.php index da7f66d1d..83170c775 100644 --- a/Datatypes/NullLocation.php +++ b/Datatypes/NullLocation.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Datatypes; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @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 9c4e44737..325a39cbf 100644 --- a/Datatypes/PhoneType.php +++ b/Datatypes/PhoneType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Datatypes; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @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 68018390a..1b07a67bc 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Dispatcher/Dispatcher.php b/Dispatcher/Dispatcher.php index 07126355c..9b24aeec3 100644 --- a/Dispatcher/Dispatcher.php +++ b/Dispatcher/Dispatcher.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Dispatcher - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Event/EventManager.php b/Event/EventManager.php index de1b244ad..898b3821c 100644 --- a/Event/EventManager.php +++ b/Event/EventManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Event; * * @category Framework * @package phpOMS\Event - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Html/TagType.php b/Html/TagType.php index d1a97bad1..b8012e31c 100644 --- a/Html/TagType.php +++ b/Html/TagType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Html - * @author OMS Development Team * @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 7090cf6e1..ec330af3a 100644 --- a/Localization/ISO3166CharEnum.php +++ b/Localization/ISO3166CharEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 7ce4be6bf..e66c5fcb6 100644 --- a/Localization/ISO3166NameEnum.php +++ b/Localization/ISO3166NameEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 386a13460..476541e5f 100644 --- a/Localization/ISO3166NumEnum.php +++ b/Localization/ISO3166NumEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 acae01517..fbec9c1d1 100644 --- a/Localization/ISO3166TwoEnum.php +++ b/Localization/ISO3166TwoEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 e0e3bd716..367eb79eb 100644 --- a/Localization/ISO4217CharEnum.php +++ b/Localization/ISO4217CharEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 b4869cbee..d643586d0 100644 --- a/Localization/ISO4217DecimalEnum.php +++ b/Localization/ISO4217DecimalEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 f1dce8632..5e970727d 100644 --- a/Localization/ISO4217Enum.php +++ b/Localization/ISO4217Enum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 554b7bb07..49ffc2433 100644 --- a/Localization/ISO4217NumEnum.php +++ b/Localization/ISO4217NumEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 acc1826d0..2405b9447 100644 --- a/Localization/ISO4217SubUnitEnum.php +++ b/Localization/ISO4217SubUnitEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 6e70e0f46..8c5eabfe2 100644 --- a/Localization/ISO4217SymbolEnum.php +++ b/Localization/ISO4217SymbolEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 4ee775731..690d99875 100644 --- a/Localization/ISO639Enum.php +++ b/Localization/ISO639Enum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 d469bd70c..8cb50c1aa 100644 --- a/Localization/ISO639x1Enum.php +++ b/Localization/ISO639x1Enum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 d136b62fd..e65535da7 100644 --- a/Localization/ISO639x2Enum.php +++ b/Localization/ISO639x2Enum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 28343dd72..373103651 100644 --- a/Localization/ISO8601EnumArray.php +++ b/Localization/ISO8601EnumArray.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Datatypes\EnumArray; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 9120e0a54..100646fbb 100644 --- a/Localization/L11nManager.php +++ b/Localization/L11nManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Module\ModuleAbstract; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/Localization.php b/Localization/Localization.php index 1c933b200..7600eec50 100644 --- a/Localization/Localization.php +++ b/Localization/Localization.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Utils\Converter\TemperatureType; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/Money.php b/Localization/Money.php index 8cffa5405..dddc54c0c 100644 --- a/Localization/Money.php +++ b/Localization/Money.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Localization; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Localization/NullLocalization.php b/Localization/NullLocalization.php index ed113b0a2..15d21810d 100644 --- a/Localization/NullLocalization.php +++ b/Localization/NullLocalization.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Localization; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 a268ec22e..3ecaef0dd 100644 --- a/Localization/PhoneEnum.php +++ b/Localization/PhoneEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 42dc989b8..ec557a4b2 100644 --- a/Localization/TimeZoneEnumArray.php +++ b/Localization/TimeZoneEnumArray.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\EnumArray; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @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 73e58a34d..b13e386a3 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Utils\StringUtils; * * @category Framework * @package phpOMS\Log - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Log/LogLevel.php b/Log/LogLevel.php index d579d8a15..4fcb6f7ac 100644 --- a/Log/LogLevel.php +++ b/Log/LogLevel.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Log - * @author OMS Development Team * @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 7ef7a1b12..574763d69 100644 --- a/Log/LoggerInterface.php +++ b/Log/LoggerInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Log; * * @category Framework * @package phpOMS\Log - * @author OMS Development Team * @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 95c55ac49..892c93f4e 100644 --- a/Math/Differential/FiniteDifference.php +++ b/Math/Differential/FiniteDifference.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Parser\Evaluator; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Exception/ZeroDevisionException.php b/Math/Exception/ZeroDevisionException.php index e8a904cdb..74bad5cfd 100644 --- a/Math/Exception/ZeroDevisionException.php +++ b/Math/Exception/ZeroDevisionException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Exception; * * @category Framework * @package phpOMS/Uri - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Finance/Depreciation.php b/Math/Finance/Depreciation.php index 81e379d7b..9bbddd77a 100644 --- a/Math/Finance/Depreciation.php +++ b/Math/Finance/Depreciation.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 dfa52c8fa..543686261 100644 --- a/Math/Finance/FinanceFormulas.php +++ b/Math/Finance/FinanceFormulas.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @category Log * @package Framework - * @author OMS Development Team * @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 9504872ea..2e640d215 100644 --- a/Math/Finance/Forecasting/AR.php +++ b/Math/Finance/Forecasting/AR.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 78a0cbade..9b5a34a29 100644 --- a/Math/Finance/Forecasting/ARCH.php +++ b/Math/Finance/Forecasting/ARCH.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 81cb604d2..b7bb8e2b9 100644 --- a/Math/Finance/Forecasting/ARFIMA.php +++ b/Math/Finance/Forecasting/ARFIMA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 6086b6011..4b92084dd 100644 --- a/Math/Finance/Forecasting/ARIMA.php +++ b/Math/Finance/Forecasting/ARIMA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 6d5616d09..ad09b52e1 100644 --- a/Math/Finance/Forecasting/ARMA.php +++ b/Math/Finance/Forecasting/ARMA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 d61fa784b..bcbc21a35 100644 --- a/Math/Finance/Forecasting/ClassicalDecomposition.php +++ b/Math/Finance/Forecasting/ClassicalDecomposition.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Statistic\Average; * * @category Framework * @package phpOMS\Math\Finance\Forecasting - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @see https://www.otexts.org/fpp/6/1 diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php b/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php index f8767ef20..5176085e7 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 a483abfb0..b22a4c0fe 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Html - * @author OMS Development Team * @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 ae89924e0..7bd8ad518 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Html - * @author OMS Development Team * @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 c1fbee027..cce9e6647 100644 --- a/Math/Finance/Forecasting/GARCH.php +++ b/Math/Finance/Forecasting/GARCH.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 74b4d2220..7835bf3b6 100644 --- a/Math/Finance/Forecasting/MA.php +++ b/Math/Finance/Forecasting/MA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 6bf1f4278..3d48db0fb 100644 --- a/Math/Finance/Forecasting/NAR.php +++ b/Math/Finance/Forecasting/NAR.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 097f4f752..79884ab82 100644 --- a/Math/Finance/Forecasting/NMA.php +++ b/Math/Finance/Forecasting/NMA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 93fa6dfda..3671547b9 100644 --- a/Math/Finance/Forecasting/SARIMA.php +++ b/Math/Finance/Forecasting/SARIMA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 006ed3816..10e5c3319 100644 --- a/Math/Finance/Forecasting/SmoothingType.php +++ b/Math/Finance/Forecasting/SmoothingType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Html - * @author OMS Development Team * @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 47115e999..482b75229 100644 --- a/Math/Finance/Loan.php +++ b/Math/Finance/Loan.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Finance; * * @category Log * @package Framework - * @author OMS Development Team * @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 b0683ad33..f30663a2c 100644 --- a/Math/Finance/Lorenzkurve.php +++ b/Math/Finance/Lorenzkurve.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Finance; * * @category Log * @package Framework - * @author OMS Development Team * @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 6c1b1e236..e61885014 100644 --- a/Math/Finance/StockBonds.php +++ b/Math/Finance/StockBonds.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Finance; * * @category Log * @package Framework - * @author OMS Development Team * @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 84d6b46ad..e886f9c4f 100644 --- a/Math/Functions/Fibunacci.php +++ b/Math/Functions/Fibunacci.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Number\Numbers; * * @category Framework * @package phpOMS\Math\Function - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Functions/Functions.php b/Math/Functions/Functions.php index 30aa4add5..6b735c79c 100644 --- a/Math/Functions/Functions.php +++ b/Math/Functions/Functions.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Functions; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Geometry/ConvexHull/MonotoneChain.php b/Math/Geometry/ConvexHull/MonotoneChain.php index 01a8c43e6..e27659438 100644 --- a/Math/Geometry/ConvexHull/MonotoneChain.php +++ b/Math/Geometry/ConvexHull/MonotoneChain.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Geometry\ConvexHull; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Integral/Gauss.php b/Math/Integral/Gauss.php index 2c6f949c5..5618df6ba 100644 --- a/Math/Integral/Gauss.php +++ b/Math/Integral/Gauss.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 b0a88ce53..3d4237aad 100644 --- a/Math/Matrix/Cholesky.php +++ b/Math/Matrix/Cholesky.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Matrix/Exception/InvalidDimensionException.php b/Math/Matrix/Exception/InvalidDimensionException.php index c4ac860d6..a63fb845b 100644 --- a/Math/Matrix/Exception/InvalidDimensionException.php +++ b/Math/Matrix/Exception/InvalidDimensionException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Matrix\Exception; * * @category Framework * @package phpOMS/Uri - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Matrix/IdentityMatrix.php b/Math/Matrix/IdentityMatrix.php index dcecca0f2..7db5b21ac 100644 --- a/Math/Matrix/IdentityMatrix.php +++ b/Math/Matrix/IdentityMatrix.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Matrix; * * @category Framework * @package phpOMS\Math\Matrix - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Matrix/InverseType.php b/Math/Matrix/InverseType.php index bae57040f..30409f34e 100644 --- a/Math/Matrix/InverseType.php +++ b/Math/Matrix/InverseType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Math\Matrix - * @author OMS Development Team * @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 b6ce4181a..c040dc0c9 100644 --- a/Math/Matrix/Matrix.php +++ b/Math/Matrix/Matrix.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @category Framework * @package phpOMS\Math\Matrix - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Matrix/Vector.php b/Math/Matrix/Vector.php index 5d5cfb18b..7bae8060e 100644 --- a/Math/Matrix/Vector.php +++ b/Math/Matrix/Vector.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Matrix; * * @category Framework * @package phpOMS\Math\Matrix - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Number/Complex.php b/Math/Number/Complex.php index 4a3fb644f..1e45f3436 100644 --- a/Math/Number/Complex.php +++ b/Math/Number/Complex.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 afc1e2fbe..992b2138d 100644 --- a/Math/Number/Integer.php +++ b/Math/Number/Integer.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Number; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Number/Irrational.php b/Math/Number/Irrational.php index de643d00c..8e6ececc5 100644 --- a/Math/Number/Irrational.php +++ b/Math/Number/Irrational.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 5e4da0e6b..0cd79144f 100644 --- a/Math/Number/Natural.php +++ b/Math/Number/Natural.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Number; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Number/NumberType.php b/Math/Number/NumberType.php index 4e4ebc90e..4647988f0 100644 --- a/Math/Number/NumberType.php +++ b/Math/Number/NumberType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package Utils - * @author OMS Development Team * @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 23f0866f9..c82304bf7 100644 --- a/Math/Number/Numbers.php +++ b/Math/Number/Numbers.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Number; * * @category Framework * @package Utils - * @author OMS Development Team * @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 44b666296..0e6082435 100644 --- a/Math/Number/OperationInterface.php +++ b/Math/Number/OperationInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Number; * * @category Framework * @package phpOMS\Account - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Number/Prime.php b/Math/Number/Prime.php index 56b456563..a8e5ad977 100644 --- a/Math/Number/Prime.php +++ b/Math/Number/Prime.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Number; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 ab2b3ecd1..b09b21f8b 100644 --- a/Math/Number/Rational.php +++ b/Math/Number/Rational.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 3a8dd0c8f..64af2f956 100644 --- a/Math/Number/Real.php +++ b/Math/Number/Real.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 631661930..84f1b5a01 100644 --- a/Math/Numerics/Interpolation/CubicSplineInterpolation.php +++ b/Math/Numerics/Interpolation/CubicSplineInterpolation.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Numerics\Interpolation; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @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 f0c58eee3..6ef4109b8 100644 --- a/Math/Numerics/Interpolation/LinearInterpolation.php +++ b/Math/Numerics/Interpolation/LinearInterpolation.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Numerics\Interpolation; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @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 0de1a92b6..b9caea664 100644 --- a/Math/Numerics/Interpolation/PolynomialInterpolation.php +++ b/Math/Numerics/Interpolation/PolynomialInterpolation.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Numerics\Interpolation; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @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 877277b8a..6705ea7ee 100644 --- a/Math/Optimization/GeneticAlgorithmInterface.php +++ b/Math/Optimization/GeneticAlgorithmInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Optimization; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @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 71494506f..49ca19e1f 100644 --- a/Math/Optimization/Graph/Dijkstra.php +++ b/Math/Optimization/Graph/Dijkstra.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 23520dc5b..937648621 100644 --- a/Math/Optimization/Graph/EdgeInterface.php +++ b/Math/Optimization/Graph/EdgeInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Optimization\Graph; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/Graph/FloydWarshall.php b/Math/Optimization/Graph/FloydWarshall.php index 5b75cb03b..1257aabe9 100644 --- a/Math/Optimization/Graph/FloydWarshall.php +++ b/Math/Optimization/Graph/FloydWarshall.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 cbcae3539..1cd85c6c3 100644 --- a/Math/Optimization/Graph/Graph.php +++ b/Math/Optimization/Graph/Graph.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Stdlib\Map\OrderType; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/Graph/NullEdge.php b/Math/Optimization/Graph/NullEdge.php index 5e023f866..27c324783 100644 --- a/Math/Optimization/Graph/NullEdge.php +++ b/Math/Optimization/Graph/NullEdge.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ namespace phpOMS\Math\Optimization\Graph; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @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 02fe18cd4..19cb5c5f0 100644 --- a/Math/Optimization/Graph/NullVertice.php +++ b/Math/Optimization/Graph/NullVertice.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ namespace phpOMS\Math\Optimization\Graph; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @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 3b053cbf0..4724b5ceb 100644 --- a/Math/Optimization/Graph/VerticeInterface.php +++ b/Math/Optimization/Graph/VerticeInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Optimization\Graph; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/Knappsack/Backpack.php b/Math/Optimization/Knappsack/Backpack.php index 3b6469790..eb15addd1 100644 --- a/Math/Optimization/Knappsack/Backpack.php +++ b/Math/Optimization/Knappsack/Backpack.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 efd087fc1..8887394d1 100644 --- a/Math/Optimization/Knappsack/BruteForce.php +++ b/Math/Optimization/Knappsack/BruteForce.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 e3191c14f..c01faddf3 100644 --- a/Math/Optimization/Knappsack/GA.php +++ b/Math/Optimization/Knappsack/GA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 5c1bb1b0b..2b396d108 100644 --- a/Math/Optimization/Knappsack/Item.php +++ b/Math/Optimization/Knappsack/Item.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 892b95f5c..676ad5780 100644 --- a/Math/Optimization/Knappsack/ItemPool.php +++ b/Math/Optimization/Knappsack/ItemPool.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 811c4aae9..eeb6f279c 100644 --- a/Math/Optimization/Knappsack/Population.php +++ b/Math/Optimization/Knappsack/Population.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 e21f93fb4..2e23e980f 100644 --- a/Math/Optimization/ShiftScheduling/BruteForce.php +++ b/Math/Optimization/ShiftScheduling/BruteForce.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 f36c4e11e..86560a2b3 100644 --- a/Math/Optimization/ShiftScheduling/GA.php +++ b/Math/Optimization/ShiftScheduling/GA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 de3ee9c37..ab8bad8c1 100644 --- a/Math/Optimization/ShiftScheduling/Population.php +++ b/Math/Optimization/ShiftScheduling/Population.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 efb73f3e4..482bd43b0 100644 --- a/Math/Optimization/ShiftScheduling/Workday.php +++ b/Math/Optimization/ShiftScheduling/Workday.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 40241679a..2dae946b4 100644 --- a/Math/Optimization/ShiftScheduling/Worker.php +++ b/Math/Optimization/ShiftScheduling/Worker.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 fbe35982c..64bb3fadd 100644 --- a/Math/Optimization/ShiftScheduling/WorkerPool.php +++ b/Math/Optimization/ShiftScheduling/WorkerPool.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 a4717b048..16a67e3ec 100644 --- a/Math/Optimization/TSP/BruteForce.php +++ b/Math/Optimization/TSP/BruteForce.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Optimization\TSP; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/TSP/City.php b/Math/Optimization/TSP/City.php index 7aaa2328b..b0e9be4da 100644 --- a/Math/Optimization/TSP/City.php +++ b/Math/Optimization/TSP/City.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Shape\D3\Sphere; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/TSP/CityPool.php b/Math/Optimization/TSP/CityPool.php index eecc9db2f..3a3ede868 100644 --- a/Math/Optimization/TSP/CityPool.php +++ b/Math/Optimization/TSP/CityPool.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Optimization\TSP; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/TSP/GA.php b/Math/Optimization/TSP/GA.php index 92ecb900f..0cb2a85b6 100644 --- a/Math/Optimization/TSP/GA.php +++ b/Math/Optimization/TSP/GA.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Optimization\TSP; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/TSP/Population.php b/Math/Optimization/TSP/Population.php index 2a9a09322..52e9bb0a3 100644 --- a/Math/Optimization/TSP/Population.php +++ b/Math/Optimization/TSP/Population.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Optimization\TSP; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Optimization/TSP/Tour.php b/Math/Optimization/TSP/Tour.php index 67c27f3cc..a3b719603 100644 --- a/Math/Optimization/TSP/Tour.php +++ b/Math/Optimization/TSP/Tour.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Optimization\TSP; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Parser/Evaluator.php b/Math/Parser/Evaluator.php index a244dddb4..ce78cc437 100644 --- a/Math/Parser/Evaluator.php +++ b/Math/Parser/Evaluator.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Parser; * * @category Framework * @package phpOMS\Math - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D2/Circle.php b/Math/Shape/D2/Circle.php index cbb66fb1f..9e70ceb41 100644 --- a/Math/Shape/D2/Circle.php +++ b/Math/Shape/D2/Circle.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D2; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D2/D2ShapeInterface.php b/Math/Shape/D2/D2ShapeInterface.php index 1305de247..c1c432d34 100644 --- a/Math/Shape/D2/D2ShapeInterface.php +++ b/Math/Shape/D2/D2ShapeInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Shape\ShapeInterface; * * @category Framework * @package phpOMS\Math - * @author OMS Development Team * @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 25f2a379c..574e630c7 100644 --- a/Math/Shape/D2/Ellipse.php +++ b/Math/Shape/D2/Ellipse.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D2; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D2/Polygon.php b/Math/Shape/D2/Polygon.php index 5603e3529..92c844ea0 100644 --- a/Math/Shape/D2/Polygon.php +++ b/Math/Shape/D2/Polygon.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D2; * * @category Framework * @package phpOMS\Math - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D2/Quadrilateral.php b/Math/Shape/D2/Quadrilateral.php index 90170ac70..9227af40a 100644 --- a/Math/Shape/D2/Quadrilateral.php +++ b/Math/Shape/D2/Quadrilateral.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 70ca9e617..ea1034bbe 100644 --- a/Math/Shape/D2/Rectangle.php +++ b/Math/Shape/D2/Rectangle.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D2; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D2/Trapezoid.php b/Math/Shape/D2/Trapezoid.php index 8104baa7f..720af871f 100644 --- a/Math/Shape/D2/Trapezoid.php +++ b/Math/Shape/D2/Trapezoid.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D2; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D2/Triangle.php b/Math/Shape/D2/Triangle.php index 37a5f6e6e..6fd63b202 100644 --- a/Math/Shape/D2/Triangle.php +++ b/Math/Shape/D2/Triangle.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D2; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D3/Cone.php b/Math/Shape/D3/Cone.php index 985258313..c2993b0a8 100644 --- a/Math/Shape/D3/Cone.php +++ b/Math/Shape/D3/Cone.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D3; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D3/Cuboid.php b/Math/Shape/D3/Cuboid.php index a30f361b4..1e8f1dd0a 100644 --- a/Math/Shape/D3/Cuboid.php +++ b/Math/Shape/D3/Cuboid.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D3; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D3/Cylinder.php b/Math/Shape/D3/Cylinder.php index 8e49bf519..5bed17dc2 100644 --- a/Math/Shape/D3/Cylinder.php +++ b/Math/Shape/D3/Cylinder.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D3; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D3/D3ShapeInterface.php b/Math/Shape/D3/D3ShapeInterface.php index 3682c5b9c..9c51a7330 100644 --- a/Math/Shape/D3/D3ShapeInterface.php +++ b/Math/Shape/D3/D3ShapeInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Shape\ShapeInterface; * * @category Framework * @package phpOMS\Math - * @author OMS Development Team * @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 fdc397c45..b94ae9452 100644 --- a/Math/Shape/D3/Prism.php +++ b/Math/Shape/D3/Prism.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 b06dc15df..9e20950dd 100644 --- a/Math/Shape/D3/RectangularPyramid.php +++ b/Math/Shape/D3/RectangularPyramid.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D3; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D3/Sphere.php b/Math/Shape/D3/Sphere.php index 1bac4b66a..41fbc8763 100644 --- a/Math/Shape/D3/Sphere.php +++ b/Math/Shape/D3/Sphere.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D3; * * @category Framework * @package phpOMS\Math\Shape - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D3/Tetrahedron.php b/Math/Shape/D3/Tetrahedron.php index 534240ac0..58066b9c5 100644 --- a/Math/Shape/D3/Tetrahedron.php +++ b/Math/Shape/D3/Tetrahedron.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape\D3; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/ShapeInterface.php b/Math/Shape/ShapeInterface.php index 951271583..4b4e5743d 100644 --- a/Math/Shape/ShapeInterface.php +++ b/Math/Shape/ShapeInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Shape; * * @category Framework * @package phpOMS\Math - * @author OMS Development Team * @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 9ff91afa9..0bcd1674d 100644 --- a/Math/Statistic/Average.php +++ b/Math/Statistic/Average.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @category Framework * @package phpOMS\Math\Statistic - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Basic.php b/Math/Statistic/Basic.php index 4c3ce2464..090e01cae 100644 --- a/Math/Statistic/Basic.php +++ b/Math/Statistic/Basic.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Statistic; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Correlation.php b/Math/Statistic/Correlation.php index 1a997045b..509118b66 100644 --- a/Math/Statistic/Correlation.php +++ b/Math/Statistic/Correlation.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Statistic; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Forecast/Error.php b/Math/Statistic/Forecast/Error.php index 75d5c11ff..43792db3c 100644 --- a/Math/Statistic/Forecast/Error.php +++ b/Math/Statistic/Forecast/Error.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Math\Statistic\MeasureOfDispersion; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php index 63c2f7e10..33afb6f28 100644 --- a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php +++ b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @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 f38e845c3..6f7765c72 100644 --- a/Math/Statistic/Forecast/Forecasts.php +++ b/Math/Statistic/Forecast/Forecasts.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Statistic\Forecast; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php index 001289df4..09cffb4d0 100644 --- a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Statistic\Forecast\Regression; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 24d858911..94cd2d309 100644 --- a/Math/Statistic/Forecast/Regression/LevelLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLogRegression.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 ea1b3d663..c7e99a0ef 100644 --- a/Math/Statistic/Forecast/Regression/LogLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLevelRegression.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 cb823cf78..fb0f20680 100644 --- a/Math/Statistic/Forecast/Regression/LogLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLogRegression.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 54715a21a..56fcc32dc 100644 --- a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php +++ b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 7c6821a82..b8f7cda32 100644 --- a/Math/Statistic/Forecast/Regression/RegressionAbstract.php +++ b/Math/Statistic/Forecast/Regression/RegressionAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Statistic/MeasureOfDispersion.php b/Math/Statistic/MeasureOfDispersion.php index 7fe6bd519..09bc6d104 100644 --- a/Math/Statistic/MeasureOfDispersion.php +++ b/Math/Statistic/MeasureOfDispersion.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/BernoulliDistribution.php b/Math/Stochastic/Distribution/BernoulliDistribution.php index 134fb887a..6a6e8dcae 100644 --- a/Math/Stochastic/Distribution/BernoulliDistribution.php +++ b/Math/Stochastic/Distribution/BernoulliDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/BetaDistribution.php b/Math/Stochastic/Distribution/BetaDistribution.php index 2518d7f85..e3e9a5598 100644 --- a/Math/Stochastic/Distribution/BetaDistribution.php +++ b/Math/Stochastic/Distribution/BetaDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 8ed40e392..1dbb1bb74 100644 --- a/Math/Stochastic/Distribution/BinomialDistribution.php +++ b/Math/Stochastic/Distribution/BinomialDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Functions\Functions; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/CauchyDistribution.php b/Math/Stochastic/Distribution/CauchyDistribution.php index 4fe8acdd3..91347b973 100644 --- a/Math/Stochastic/Distribution/CauchyDistribution.php +++ b/Math/Stochastic/Distribution/CauchyDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/ChiSquaredDistribution.php b/Math/Stochastic/Distribution/ChiSquaredDistribution.php index 0397f44d3..0a7afa1d8 100644 --- a/Math/Stochastic/Distribution/ChiSquaredDistribution.php +++ b/Math/Stochastic/Distribution/ChiSquaredDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Functions\Functions; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/ExponentialDistribution.php b/Math/Stochastic/Distribution/ExponentialDistribution.php index 04e4e00f3..237c62eb7 100644 --- a/Math/Stochastic/Distribution/ExponentialDistribution.php +++ b/Math/Stochastic/Distribution/ExponentialDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/FDistribution.php b/Math/Stochastic/Distribution/FDistribution.php index a15aa1a4e..df308127b 100644 --- a/Math/Stochastic/Distribution/FDistribution.php +++ b/Math/Stochastic/Distribution/FDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 2a16dcbeb..10fc9d628 100644 --- a/Math/Stochastic/Distribution/GammaDistribution.php +++ b/Math/Stochastic/Distribution/GammaDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 1f97d3599..15ac256bd 100644 --- a/Math/Stochastic/Distribution/GeometricDistribution.php +++ b/Math/Stochastic/Distribution/GeometricDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/HypergeometricDistribution.php b/Math/Stochastic/Distribution/HypergeometricDistribution.php index 74e313803..c7df59a02 100644 --- a/Math/Stochastic/Distribution/HypergeometricDistribution.php +++ b/Math/Stochastic/Distribution/HypergeometricDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 0f00ac030..61b32d8dd 100644 --- a/Math/Stochastic/Distribution/LaplaceDistribution.php +++ b/Math/Stochastic/Distribution/LaplaceDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/LogDistribution.php b/Math/Stochastic/Distribution/LogDistribution.php index c3455e345..f1c3749af 100644 --- a/Math/Stochastic/Distribution/LogDistribution.php +++ b/Math/Stochastic/Distribution/LogDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 0bb977175..5aa64e3db 100644 --- a/Math/Stochastic/Distribution/LogNormalDistribution.php +++ b/Math/Stochastic/Distribution/LogNormalDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 54b8d856a..482364c66 100644 --- a/Math/Stochastic/Distribution/LogisticDistribution.php +++ b/Math/Stochastic/Distribution/LogisticDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 747070373..6a8c45631 100644 --- a/Math/Stochastic/Distribution/NormalDistribution.php +++ b/Math/Stochastic/Distribution/NormalDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/ParetoDistribution.php b/Math/Stochastic/Distribution/ParetoDistribution.php index c646e4dad..7464a7c1f 100644 --- a/Math/Stochastic/Distribution/ParetoDistribution.php +++ b/Math/Stochastic/Distribution/ParetoDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 0a8d6c855..e901576fa 100644 --- a/Math/Stochastic/Distribution/PoissonDistribution.php +++ b/Math/Stochastic/Distribution/PoissonDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Math\Functions\Functions; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/TDistribution.php b/Math/Stochastic/Distribution/TDistribution.php index b576f7e8d..19f51ae9e 100644 --- a/Math/Stochastic/Distribution/TDistribution.php +++ b/Math/Stochastic/Distribution/TDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 29536b71f..cc90f439d 100644 --- a/Math/Stochastic/Distribution/UniformDistributionContinuous.php +++ b/Math/Stochastic/Distribution/UniformDistributionContinuous.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php index 1196d6885..93fbe39a6 100644 --- a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php +++ b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Stochastic/Distribution/WeibullDistribution.php b/Math/Stochastic/Distribution/WeibullDistribution.php index 52554d484..9b7e8296e 100644 --- a/Math/Stochastic/Distribution/WeibullDistribution.php +++ b/Math/Stochastic/Distribution/WeibullDistribution.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 cd3802e89..128688bdb 100644 --- a/Math/Stochastic/NaiveBayesFilter.php +++ b/Math/Stochastic/NaiveBayesFilter.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ namespace phpOMS\Math\Stochastic; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 326ed4891..be901e96a 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Message; * * @category Framework * @package phpOMS\Response - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Http/BrowserType.php b/Message/Http/BrowserType.php index e0ee2a1c7..7e87f78e9 100644 --- a/Message/Http/BrowserType.php +++ b/Message/Http/BrowserType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @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 01c58a705..d668f2c60 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\LockExcpetion; * * @category Framework * @package phpOMS\Response - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Http/OSType.php b/Message/Http/OSType.php index cc2d211c6..67315be46 100644 --- a/Message/Http/OSType.php +++ b/Message/Http/OSType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @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 e7f8f61a0..5bc79c3a2 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -29,7 +28,6 @@ use phpOMS\Uri\UriInterface; * * @category Framework * @package phpOMS\Request - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Http/RequestMethod.php b/Message/Http/RequestMethod.php index 38b434e4a..3561af87d 100644 --- a/Message/Http/RequestMethod.php +++ b/Message/Http/RequestMethod.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Request * @package Framework - * @author OMS Development Team * @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 4a7f1e52b..65d5446a2 100644 --- a/Message/Http/RequestStatus.php +++ b/Message/Http/RequestStatus.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Request * @package Framework - * @author OMS Development Team * @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 1527751d5..01302f027 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Views\View; * * @category Framework * @package phpOMS\Response - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Http/Rest.php b/Message/Http/Rest.php index 7cecf4a95..9feff40d1 100644 --- a/Message/Http/Rest.php +++ b/Message/Http/Rest.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Message\Http; * * @category Framework * @package phpOMS\Request - * @author OMS Development Team * @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 9a12a89ab..c8f433127 100644 --- a/Message/Mail/Imap.php +++ b/Message/Mail/Imap.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Message\Mail; * * @category Framework * @package phpOMS\Message\Mail - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Mail/Mail.php b/Message/Mail/Mail.php index a4bd6f605..f8fbbc88f 100644 --- a/Message/Mail/Mail.php +++ b/Message/Mail/Mail.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Message\Mail; * * @category Framework * @package phpOMS\Message\Mail - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/Mail/MailType.php b/Message/Mail/MailType.php index 1d4259222..2208d25c3 100644 --- a/Message/Mail/MailType.php +++ b/Message/Mail/MailType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Message\Mail - * @author OMS Development Team * @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 d3d74c6fb..3ea7018f0 100644 --- a/Message/Mail/OAuth.php +++ b/Message/Mail/OAuth.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 3eb780769..bb1182d25 100644 --- a/Message/Mail/Pop3.php +++ b/Message/Mail/Pop3.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 398b171c3..9e958819d 100644 --- a/Message/Mail/Smtp.php +++ b/Message/Mail/Smtp.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/MessageInterface.php b/Message/MessageInterface.php index bfee1cb26..0cf5d7af9 100644 --- a/Message/MessageInterface.php +++ b/Message/MessageInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Message; * * @category Framework * @package phpOMS\Response - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 5fa242b1d..a5e213484 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Uri\UriInterface; * * @category Request * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/RequestSource.php b/Message/RequestSource.php index 8de611ce2..f1c168c45 100644 --- a/Message/RequestSource.php +++ b/Message/RequestSource.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Request * @package Framework - * @author OMS Development Team * @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 70d8bcc32..b8692ef41 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Utils\ArrayUtils; * * @category Framework * @package phpOMS\Response - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Message/ResponseType.php b/Message/ResponseType.php index 05451d45a..7ab000a70 100644 --- a/Message/ResponseType.php +++ b/Message/ResponseType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package Framework - * @author OMS Development Team * @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 0df2c532f..e44169e2b 100644 --- a/Message/Socket/Request.php +++ b/Message/Socket/Request.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 f4c35d7b4..df4a9bfcd 100644 --- a/Message/Socket/Response.php +++ b/Message/Socket/Response.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/UploadedFileInterface.php b/Message/UploadedFileInterface.php index 6c67a060a..2ab08acb7 100644 --- a/Message/UploadedFileInterface.php +++ b/Message/UploadedFileInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Message; * * @category Framework * @package phpOMS\Response - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Model/Html/Head.php b/Model/Html/Head.php index b43066e72..250d10f80 100644 --- a/Model/Html/Head.php +++ b/Model/Html/Head.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -27,7 +26,6 @@ use phpOMS\Contract\RenderableInterface; * * @category Framework * @package phpOMS/Model - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Model/Html/Meta.php b/Model/Html/Meta.php index a7b050fc5..1725be601 100644 --- a/Model/Html/Meta.php +++ b/Model/Html/Meta.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Contract\RenderableInterface; * * @category Framework * @package phpOMS/Model - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/ActivateAbstract.php b/Module/ActivateAbstract.php index 063d4f5ec..91957ea00 100644 --- a/Module/ActivateAbstract.php +++ b/Module/ActivateAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\DatabasePool; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/ConsoleInterface.php b/Module/ConsoleInterface.php index 18eae1eb8..e84fad460 100644 --- a/Module/ConsoleInterface.php +++ b/Module/ConsoleInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Module; * * @category Module * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/DeactivateAbstract.php b/Module/DeactivateAbstract.php index 578df49ca..1e3f3b763 100644 --- a/Module/DeactivateAbstract.php +++ b/Module/DeactivateAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\DatabasePool; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/Exception/InvalidModuleException.php b/Module/Exception/InvalidModuleException.php index 33eaf2d93..0ffdab349 100644 --- a/Module/Exception/InvalidModuleException.php +++ b/Module/Exception/InvalidModuleException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Module\Exception; * * @category Framework * @package phpOMS/Uri - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/Exception/InvalidThemeException.php b/Module/Exception/InvalidThemeException.php index ebb0f4506..bfe872281 100644 --- a/Module/Exception/InvalidThemeException.php +++ b/Module/Exception/InvalidThemeException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Module\Exception; * * @category Framework * @package phpOMS/Uri - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/InfoManager.php b/Module/InfoManager.php index 8e808fd5c..708e2de04 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Utils\ArrayUtils; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @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 72e4e2f46..b2a3bb619 100644 --- a/Module/InstallerAbstract.php +++ b/Module/InstallerAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Utils\Parser\Php\ArrayParser; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/ModuleAbstract.php b/Module/ModuleAbstract.php index c3e71ef2a..fe2823a85 100644 --- a/Module/ModuleAbstract.php +++ b/Module/ModuleAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Module; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/ModuleFactory.php b/Module/ModuleFactory.php index 7b9f74cf4..9858338db 100644 --- a/Module/ModuleFactory.php +++ b/Module/ModuleFactory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Autoloader; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index 2f9fb7e0e..a7169c947 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\Module\Exception\InvalidModuleException; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/NullModule.php b/Module/NullModule.php index 726dc7696..54a919db3 100644 --- a/Module/NullModule.php +++ b/Module/NullModule.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Module; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @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 68a8ec1c5..7a81858a2 100644 --- a/Module/SocketInterface.php +++ b/Module/SocketInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Module; * * @category Module * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/UninstallAbstract.php b/Module/UninstallAbstract.php index 3bb620955..8bce9306f 100644 --- a/Module/UninstallAbstract.php +++ b/Module/UninstallAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\DataStorage\Database\DatabasePool; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/UpdateAbstract.php b/Module/UpdateAbstract.php index 29a36ea03..2bc826f9f 100644 --- a/Module/UpdateAbstract.php +++ b/Module/UpdateAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\DataStorage\Database\DatabasePool; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Module/WebInterface.php b/Module/WebInterface.php index c53e8d8dd..f1e95509f 100644 --- a/Module/WebInterface.php +++ b/Module/WebInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Module; * * @category Framework * @package phpOMS\Module - * @author OMS Development Team * @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 a4b6c3848..97eda8ce4 100644 --- a/Pattern/Mediator.php +++ b/Pattern/Mediator.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Pattern; * * @category Pattern * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Pattern/Multition.php b/Pattern/Multition.php index 130663ae3..d575ebf5d 100644 --- a/Pattern/Multition.php +++ b/Pattern/Multition.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Pattern; * * @category Pattern * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Pattern/Observer.php b/Pattern/Observer.php index 33b777d79..cb32fd7fb 100644 --- a/Pattern/Observer.php +++ b/Pattern/Observer.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ namespace phpOMS\Pattern; * * @category Pattern * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Pattern/Singleton.php b/Pattern/Singleton.php index 47fe776cd..72f7f6e21 100644 --- a/Pattern/Singleton.php +++ b/Pattern/Singleton.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Pattern; * * @category Pattern * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Pattern/Subject.php b/Pattern/Subject.php index 302d64155..31641d3b7 100644 --- a/Pattern/Subject.php +++ b/Pattern/Subject.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ namespace phpOMS\Pattern; * * @category Pattern * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Router/RouteVerb.php b/Router/RouteVerb.php index d489c886d..c2eb69735 100644 --- a/Router/RouteVerb.php +++ b/Router/RouteVerb.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Router - * @author OMS Development Team * @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 6192a7250..7624fdf9c 100644 --- a/Router/Router.php +++ b/Router/Router.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Message\RequestAbstract; * * @category Framework * @package phpOMS\Router - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Security/Encryption/Encryption.php b/Security/Encryption/Encryption.php index 6a0c5d51a..16cdd1ff4 100644 --- a/Security/Encryption/Encryption.php +++ b/Security/Encryption/Encryption.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Security\Encryption; * * @category Framework * @package phpOMS\Security\Encryption - * @author OMS Development Team * @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 a59ce3081..fcd2b9d1f 100644 --- a/Socket/Client/Client.php +++ b/Socket/Client/Client.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Socket\SocketAbstract; * * @category Framework * @package phpOMS\Socket\Client - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/Client/ClientConnection.php b/Socket/Client/ClientConnection.php index b93a68bad..8897cbf68 100644 --- a/Socket/Client/ClientConnection.php +++ b/Socket/Client/ClientConnection.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Socket\Client; * * @category Framework * @package phpOMS\Socket\Client - * @author OMS Development Team * @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 dc9ea28a4..531405d99 100644 --- a/Socket/Client/NullClientConnection.php +++ b/Socket/Client/NullClientConnection.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Socket\Client; * * @category Framework * @package phpOMS\Socket\Client - * @author OMS Development Team * @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 a731aa3da..3d3462358 100644 --- a/Socket/CommandManager.php +++ b/Socket/CommandManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Socket/Packets/Header.php b/Socket/Packets/Header.php index dbf0aa0e9..2e28616e8 100644 --- a/Socket/Packets/Header.php +++ b/Socket/Packets/Header.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Socket\Packets; * * @category System * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/Packets/PacketAbstract.php b/Socket/Packets/PacketAbstract.php index 658a48ab2..8a9455db2 100644 --- a/Socket/Packets/PacketAbstract.php +++ b/Socket/Packets/PacketAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ namespace phpOMS\Socket\Packets; * * @category System * @package Framework - * @author OMS Development Team * @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 65a12b0aa..4753c2684 100644 --- a/Socket/Packets/PacketManager.php +++ b/Socket/Packets/PacketManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Socket\Server\ClientManager; * * @category System * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/Packets/PacketType.php b/Socket/Packets/PacketType.php index 24d952959..5e86c9d18 100644 --- a/Socket/Packets/PacketType.php +++ b/Socket/Packets/PacketType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Socket\Packets - * @author OMS Development Team * @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 f39b52965..4b1f2a732 100644 --- a/Socket/Server/ClientManager.php +++ b/Socket/Server/ClientManager.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 732f28b87..eacdcdd9c 100644 --- a/Socket/Server/Server.php +++ b/Socket/Server/Server.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Server - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/SocketAbstract.php b/Socket/SocketAbstract.php index 3fcdd98be..973b495a7 100644 --- a/Socket/SocketAbstract.php +++ b/Socket/SocketAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Socket; * * @category Socket * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Socket/SocketInterface.php b/Socket/SocketInterface.php index c91503611..a8b18e43a 100644 --- a/Socket/SocketInterface.php +++ b/Socket/SocketInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Socket; * * @category Socket * @package Framework - * @author OMS Development Team * @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 f55364518..0b88b7130 100644 --- a/Socket/SocketType.php +++ b/Socket/SocketType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Socket - * @author OMS Development Team * @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 c2b47ca02..d5b23ab53 100644 --- a/Stdlib/Collection/Collection.php +++ b/Stdlib/Collection/Collection.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Utils\ArrayUtils; * * @category Framework * @package phpOMS\Stdlib - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Graph/BinaryTree.php b/Stdlib/Graph/BinaryTree.php index c4248d548..bd8f5f233 100644 --- a/Stdlib/Graph/BinaryTree.php +++ b/Stdlib/Graph/BinaryTree.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Stdlib\Graph; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Graph/Edge.php b/Stdlib/Graph/Edge.php index b6c3b293e..3ce06ca2d 100644 --- a/Stdlib/Graph/Edge.php +++ b/Stdlib/Graph/Edge.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Stdlib\Graph; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @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 c1d733fab..78fbddada 100644 --- a/Stdlib/Graph/Graph.php +++ b/Stdlib/Graph/Graph.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Stdlib\Graph; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Graph/Node.php b/Stdlib/Graph/Node.php index 5be599353..507b2caa3 100644 --- a/Stdlib/Graph/Node.php +++ b/Stdlib/Graph/Node.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Stdlib\Graph; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @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 312d0b5b7..7c6a439af 100644 --- a/Stdlib/Graph/Tree.php +++ b/Stdlib/Graph/Tree.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Stdlib\Graph; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Map/KeyType.php b/Stdlib/Map/KeyType.php index b2f435429..7c79c0b5f 100644 --- a/Stdlib/Map/KeyType.php +++ b/Stdlib/Map/KeyType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Stdlib - * @author OMS Development Team * @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 2ce61b64f..8874296f1 100644 --- a/Stdlib/Map/MultiMap.php +++ b/Stdlib/Map/MultiMap.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Utils\Permutation; * * @category Framework * @package phpOMS\Stdlib - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Stdlib/Map/OrderType.php b/Stdlib/Map/OrderType.php index aa7ecd0bb..4d9c8a3f8 100644 --- a/Stdlib/Map/OrderType.php +++ b/Stdlib/Map/OrderType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Stdlib - * @author OMS Development Team * @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 8f4744a40..ae2c37341 100644 --- a/Stdlib/Queue/PriorityMode.php +++ b/Stdlib/Queue/PriorityMode.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Stdlib - * @author OMS Development Team * @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 1dcff87b4..c2e91e9f3 100644 --- a/Stdlib/Queue/PriorityQueue.php +++ b/Stdlib/Queue/PriorityQueue.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Stdlib\Queue; * * @category Framework * @package phpOMS\Stdlib - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/ContainerInterface.php b/System/File/ContainerInterface.php index 2b2f0774a..ae3457ae5 100644 --- a/System/File/ContainerInterface.php +++ b/System/File/ContainerInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/ContentPutMode.php b/System/File/ContentPutMode.php index 5e9b4a7cb..556f2e6a6 100644 --- a/System/File/ContentPutMode.php +++ b/System/File/ContentPutMode.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\System - * @author OMS Development Team * @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 d7ac51a69..bf6b52978 100644 --- a/System/File/DirectoryInterface.php +++ b/System/File/DirectoryInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/ExtensionType.php b/System/File/ExtensionType.php index 0a4b568b2..747111a66 100644 --- a/System/File/ExtensionType.php +++ b/System/File/ExtensionType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\System - * @author OMS Development Team * @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 7e5d1a3f5..3788fa189 100644 --- a/System/File/FileInterface.php +++ b/System/File/FileInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/FileUtils.php b/System/File/FileUtils.php index f5335355e..089c7e3c5 100644 --- a/System/File/FileUtils.php +++ b/System/File/FileUtils.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\System\File; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @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 0467c04a2..62c66da32 100644 --- a/System/File/Ftp/Directory.php +++ b/System/File/Ftp/Directory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -30,7 +29,6 @@ use phpOMS\System\File\Local\Directory as DirectoryLocal; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @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 aa7b538ce..3ec647e02 100644 --- a/System/File/Ftp/File.php +++ b/System/File/Ftp/File.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -31,7 +30,6 @@ use phpOMS\System\File\Local\Directory as DirectoryLocal; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/Ftp/FtpStorage.php b/System/File/Ftp/FtpStorage.php index 00ded654c..a681391fd 100644 --- a/System/File/Ftp/FtpStorage.php +++ b/System/File/Ftp/FtpStorage.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\System\File\StorageAbstract; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @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 0ff410ec0..dd5ee4d7d 100644 --- a/System/File/Local/Directory.php +++ b/System/File/Local/Directory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Utils\StringUtils; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/Local/File.php b/System/File/Local/File.php index e64cd03a6..2da086631 100644 --- a/System/File/Local/File.php +++ b/System/File/Local/File.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\System\File\PathException; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/Local/FileAbstract.php b/System/File/Local/FileAbstract.php index f6b4d7924..46a81b8ab 100644 --- a/System/File/Local/FileAbstract.php +++ b/System/File/Local/FileAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\System\File\ContainerInterface; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/Local/LocalStorage.php b/System/File/Local/LocalStorage.php index a5149d3c1..3cce69807 100644 --- a/System/File/Local/LocalStorage.php +++ b/System/File/Local/LocalStorage.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\System\File\StorageAbstract; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @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 c971f0685..5962a5a60 100644 --- a/System/File/PathException.php +++ b/System/File/PathException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\System\File; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/PermissionException.php b/System/File/PermissionException.php index 07d796781..b42c4f98e 100644 --- a/System/File/PermissionException.php +++ b/System/File/PermissionException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\System\File; * * @category Framework * @package phpOMS\System\File - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/Storage.php b/System/File/Storage.php index 12cac0349..2f51ee96c 100644 --- a/System/File/Storage.php +++ b/System/File/Storage.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/File/StorageAbstract.php b/System/File/StorageAbstract.php index 4a785ec63..fc6793f66 100644 --- a/System/File/StorageAbstract.php +++ b/System/File/StorageAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/MimeType.php b/System/MimeType.php index 87660f3f7..9bd46b9a7 100644 --- a/System/MimeType.php +++ b/System/MimeType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\System - * @author OMS Development Team * @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 1b3aa3b16..97ee9766b 100644 --- a/System/OperatingSystem.php +++ b/System/OperatingSystem.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\System; * * @category Framework * @package phpOMS\System - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/System/SystemType.php b/System/SystemType.php index cc0260e0c..12316a7ac 100644 --- a/System/SystemType.php +++ b/System/SystemType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\System - * @author OMS Development Team * @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 7ab5c9f3e..a900baef4 100644 --- a/System/SystemUtils.php +++ b/System/SystemUtils.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\System; * * @category Framework * @package phpOMS\System - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/UnhandledHandler.php b/UnhandledHandler.php index 3484ae806..1bdd1065a 100644 --- a/UnhandledHandler.php +++ b/UnhandledHandler.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Uri/Http.php b/Uri/Http.php index 44e7e4212..a7466bd77 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -25,7 +24,6 @@ use phpOMS\Utils\StringUtils; * * @category Framework * @package phpOMS/Uri - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Uri/InvalidUriException.php b/Uri/InvalidUriException.php index f267abc3b..9da6c3316 100644 --- a/Uri/InvalidUriException.php +++ b/Uri/InvalidUriException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Uri; * * @category Framework * @package phpOMS/Uri - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Uri/UriFactory.php b/Uri/UriFactory.php index b4c7b52f5..d610df9b3 100644 --- a/Uri/UriFactory.php +++ b/Uri/UriFactory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Uri/UriInterface.php b/Uri/UriInterface.php index 64adde028..a1e980979 100644 --- a/Uri/UriInterface.php +++ b/Uri/UriInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Uri; * * @category Framework * @package phpOMS/Uri - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Uri/UriScheme.php b/Uri/UriScheme.php index 5d1cdb527..59847ebe2 100644 --- a/Uri/UriScheme.php +++ b/Uri/UriScheme.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS/Uri - * @author OMS Development Team * @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 7cf962bc4..ec8621772 100644 --- a/Utils/ArrayUtils.php +++ b/Utils/ArrayUtils.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Barcode/Aztec.php b/Utils/Barcode/Aztec.php index 009e25b7d..c54bbc73b 100644 --- a/Utils/Barcode/Aztec.php +++ b/Utils/Barcode/Aztec.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 634f3cd21..a6ae55bed 100644 --- a/Utils/Barcode/C128Abstract.php +++ b/Utils/Barcode/C128Abstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Exception\InvalidEnumValue; * * @category Log * @package Framework - * @author OMS Development Team * @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 587231700..b3d953750 100644 --- a/Utils/Barcode/C128a.php +++ b/Utils/Barcode/C128a.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 8d9f5480e..7b2464130 100644 --- a/Utils/Barcode/C128b.php +++ b/Utils/Barcode/C128b.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 4819e4ddd..243b734b6 100644 --- a/Utils/Barcode/C128c.php +++ b/Utils/Barcode/C128c.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 c7467a93c..642e70253 100644 --- a/Utils/Barcode/C25.php +++ b/Utils/Barcode/C25.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 815dec010..c09e3c7ba 100644 --- a/Utils/Barcode/C39.php +++ b/Utils/Barcode/C39.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 ccdeae197..841d0f264 100644 --- a/Utils/Barcode/Codebar.php +++ b/Utils/Barcode/Codebar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 6c47be94f..0cd822e88 100644 --- a/Utils/Barcode/Datamatrix.php +++ b/Utils/Barcode/Datamatrix.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 188dd843f..3c20394e3 100644 --- a/Utils/Barcode/HIBCC.php +++ b/Utils/Barcode/HIBCC.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 13302b5d2..54d56877c 100644 --- a/Utils/Barcode/OrientationType.php +++ b/Utils/Barcode/OrientationType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\DataStorage\Database - * @author OMS Development Team * @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 627a6abcf..d93397a09 100644 --- a/Utils/Barcode/QR.php +++ b/Utils/Barcode/QR.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Barcode; * * @category Log * @package Framework - * @author OMS Development Team * @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 8afc41b74..51f9a797c 100644 --- a/Utils/ColorUtils.php +++ b/Utils/ColorUtils.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Compression/CompressionInterface.php b/Utils/Compression/CompressionInterface.php index 123c375c6..9368cd280 100644 --- a/Utils/Compression/CompressionInterface.php +++ b/Utils/Compression/CompressionInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Compression; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Compression/LZW.php b/Utils/Compression/LZW.php index de2da1103..d50504208 100644 --- a/Utils/Compression/LZW.php +++ b/Utils/Compression/LZW.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Compression; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @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 0213446e2..ebada7792 100644 --- a/Utils/Converter/AngleType.php +++ b/Utils/Converter/AngleType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 624bb68f1..0040c5b88 100644 --- a/Utils/Converter/AreaType.php +++ b/Utils/Converter/AreaType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 6ae5d2f94..1c319bb2d 100644 --- a/Utils/Converter/Currency.php +++ b/Utils/Converter/Currency.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Uri\Http; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/EnergyPowerType.php b/Utils/Converter/EnergyPowerType.php index ccf6c44b3..0db241b28 100644 --- a/Utils/Converter/EnergyPowerType.php +++ b/Utils/Converter/EnergyPowerType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 75fd2e1b6..427db21d6 100644 --- a/Utils/Converter/File.php +++ b/Utils/Converter/File.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Converter; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/FileSizeType.php b/Utils/Converter/FileSizeType.php index 4a7f49bca..3ad8e7e38 100644 --- a/Utils/Converter/FileSizeType.php +++ b/Utils/Converter/FileSizeType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 5a0dbb342..7c66b7ce9 100644 --- a/Utils/Converter/Ip.php +++ b/Utils/Converter/Ip.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Converter; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 d6f215216..6f73acf44 100644 --- a/Utils/Converter/LengthType.php +++ b/Utils/Converter/LengthType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 ca1e27545..f9f2e3555 100644 --- a/Utils/Converter/Measurement.php +++ b/Utils/Converter/Measurement.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Converter; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/Numeric.php b/Utils/Converter/Numeric.php index a9a7d811b..e978da495 100644 --- a/Utils/Converter/Numeric.php +++ b/Utils/Converter/Numeric.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Converter; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Converter/PressureType.php b/Utils/Converter/PressureType.php index 06a1ea756..3ca879972 100644 --- a/Utils/Converter/PressureType.php +++ b/Utils/Converter/PressureType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 6bc981eb4..ef4aac754 100644 --- a/Utils/Converter/SpeedType.php +++ b/Utils/Converter/SpeedType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 fbcc90867..67ea8c1c7 100644 --- a/Utils/Converter/TemperatureType.php +++ b/Utils/Converter/TemperatureType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 bd875d18f..c7176ac78 100644 --- a/Utils/Converter/TimeType.php +++ b/Utils/Converter/TimeType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 a0cd9fd24..326f214af 100644 --- a/Utils/Converter/VolumeType.php +++ b/Utils/Converter/VolumeType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 39e3d28dd..e3b3c0b28 100644 --- a/Utils/Converter/WeightType.php +++ b/Utils/Converter/WeightType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 7a6f87e02..b87c14f6d 100644 --- a/Utils/EDI/AnsiX12/EDIAbstract.php +++ b/Utils/EDI/AnsiX12/EDIAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 e41840a4d..283d6405a 100644 --- a/Utils/EDI/AnsiX12/FunctionalGroupHeader.php +++ b/Utils/EDI/AnsiX12/FunctionalGroupHeader.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\EDI\AnsiX12; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 25859f3bd..5bb602420 100644 --- a/Utils/EDI/AnsiX12/Header.php +++ b/Utils/EDI/AnsiX12/Header.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\EDI\AnsiX12; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 ada8d7df4..cc891351e 100644 --- a/Utils/EDI/AnsiX12/InterchangeControlHeader.php +++ b/Utils/EDI/AnsiX12/InterchangeControlHeader.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ namespace phpOMS\Utils\EDI\AnsiX12; * @link https://www.erico.com/public/library/edi/ERICO850_4010.pdf * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 6e6acfa37..475e15b0d 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Utils\EDI\AnsiX12\EDIAbstract; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 b6908a744..48c52b9e1 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 a680d69ca..6c5b39080 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Heading.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Heading.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 2a3234ec7..2816de3c7 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 d4649d24f..75394ae59 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; * * @category Framework * @package phpOMS\Utils\Converter - * @author OMS Development Team * @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 f335d64d0..07457d4e1 100644 --- a/Utils/Encoding/Caesar.php +++ b/Utils/Encoding/Caesar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Encoding; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 51b187015..50eca9533 100644 --- a/Utils/Encoding/EncodingInterface.php +++ b/Utils/Encoding/EncodingInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Encoding; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Encoding/Gray.php b/Utils/Encoding/Gray.php index a72fe3be7..449f010f5 100644 --- a/Utils/Encoding/Gray.php +++ b/Utils/Encoding/Gray.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Encoding; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 44393ad65..ece8d031c 100644 --- a/Utils/Encoding/Huffman/Dictionary.php +++ b/Utils/Encoding/Huffman/Dictionary.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Encoding\Huffman; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Encoding/Huffman/Huffman.php b/Utils/Encoding/Huffman/Huffman.php index c6b0cf056..7ce41d93e 100644 --- a/Utils/Encoding/Huffman/Huffman.php +++ b/Utils/Encoding/Huffman/Huffman.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Encoding\Huffman; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Encoding/XorEncoding.php b/Utils/Encoding/XorEncoding.php index f74654e65..e34df4c3f 100644 --- a/Utils/Encoding/XorEncoding.php +++ b/Utils/Encoding/XorEncoding.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Encoding; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 cd2683710..242a5aa3c 100644 --- a/Utils/Excel/Excel.php +++ b/Utils/Excel/Excel.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 a7778d16b..9d8c91b87 100644 --- a/Utils/Git/Author.php +++ b/Utils/Git/Author.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Git; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Git/Branch.php b/Utils/Git/Branch.php index 6b05b80cd..b19c63367 100644 --- a/Utils/Git/Branch.php +++ b/Utils/Git/Branch.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Git; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Git/Commit.php b/Utils/Git/Commit.php index 600f432c0..2248e97c2 100644 --- a/Utils/Git/Commit.php +++ b/Utils/Git/Commit.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Git; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Git/Git.php b/Utils/Git/Git.php index d4be0f85e..9b7cbcc6c 100644 --- a/Utils/Git/Git.php +++ b/Utils/Git/Git.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\System\File\PathException; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Git/Repository.php b/Utils/Git/Repository.php index 21b6e173b..6f2be2d1f 100644 --- a/Utils/Git/Repository.php +++ b/Utils/Git/Repository.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Utils\StringUtils; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Git/Tag.php b/Utils/Git/Tag.php index 6e8c441c0..c850f8c1d 100644 --- a/Utils/Git/Tag.php +++ b/Utils/Git/Tag.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Git; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/Csv/CsvDatabaseMapper.php b/Utils/IO/Csv/CsvDatabaseMapper.php index 2455a57a6..52ad106ff 100644 --- a/Utils/IO/Csv/CsvDatabaseMapper.php +++ b/Utils/IO/Csv/CsvDatabaseMapper.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 2e2e8eed6..909aecc1f 100644 --- a/Utils/IO/Csv/CsvInterface.php +++ b/Utils/IO/Csv/CsvInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 a3dc78179..2e06387be 100644 --- a/Utils/IO/Csv/CsvSettings.php +++ b/Utils/IO/Csv/CsvSettings.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 3a2dcaa1c..26f7cdfe2 100644 --- a/Utils/IO/Excel/ExcelDatabaseMapper.php +++ b/Utils/IO/Excel/ExcelDatabaseMapper.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 6efec043f..9d871a5b6 100644 --- a/Utils/IO/Excel/ExcelInterface.php +++ b/Utils/IO/Excel/ExcelInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\IO\Excel; * * @category Framework * @package Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/ExchangeInterface.php b/Utils/IO/ExchangeInterface.php index 3e3a65978..21b16ad88 100644 --- a/Utils/IO/ExchangeInterface.php +++ b/Utils/IO/ExchangeInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -26,7 +25,6 @@ use phpOMS\Utils\IO\Pdf\PdfInterface; * * @category Framework * @package phpOMS\Utils\IO - * @author OMS Development Team * @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 dede8c986..eb3eeed37 100644 --- a/Utils/IO/IODatabaseMapper.php +++ b/Utils/IO/IODatabaseMapper.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 0526e4cf9..53aa67fef 100644 --- a/Utils/IO/Json/InvalidJsonException.php +++ b/Utils/IO/Json/InvalidJsonException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\IO\Json; * * @category Framework * @package phpOMS\Utils\IO\Json - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/Json/JsonInterface.php b/Utils/IO/Json/JsonInterface.php index 7bb07d74e..d1bb6d1a5 100644 --- a/Utils/IO/Json/JsonInterface.php +++ b/Utils/IO/Json/JsonInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\IO\Json; * * @category Framework * @package Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/Pdf/PdfInterface.php b/Utils/IO/Pdf/PdfInterface.php index ae892b048..64d278a15 100644 --- a/Utils/IO/Pdf/PdfInterface.php +++ b/Utils/IO/Pdf/PdfInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\IO\Pdf; * * @category Framework * @package Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/Zip/ArchiveInterface.php b/Utils/IO/Zip/ArchiveInterface.php index 90041ca41..ecf949276 100644 --- a/Utils/IO/Zip/ArchiveInterface.php +++ b/Utils/IO/Zip/ArchiveInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ namespace phpOMS\Utils\IO\Zip; * * @category Framework * @package phpOMS\Utils\IO - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/IO/Zip/Gz.php b/Utils/IO/Zip/Gz.php index 93fa83291..b131c0541 100644 --- a/Utils/IO/Zip/Gz.php +++ b/Utils/IO/Zip/Gz.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Asset - * @author OMS Development Team * @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 5bd843f39..9b92b52a4 100644 --- a/Utils/IO/Zip/Tar.php +++ b/Utils/IO/Zip/Tar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Asset - * @author OMS Development Team * @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 631db38e2..7e90813f6 100644 --- a/Utils/IO/Zip/TarGz.php +++ b/Utils/IO/Zip/TarGz.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Asset - * @author OMS Development Team * @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 68034b41a..17f8cfbb6 100644 --- a/Utils/IO/Zip/Zip.php +++ b/Utils/IO/Zip/Zip.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @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 f9a232139..0ef014db6 100644 --- a/Utils/ImageUtils.php +++ b/Utils/ImageUtils.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/JobQueue/Job.php b/Utils/JobQueue/Job.php index 72232284b..50a286a96 100644 --- a/Utils/JobQueue/Job.php +++ b/Utils/JobQueue/Job.php @@ -7,7 +7,6 @@ * @category TBD * } * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ namespace phpOMS\Utils\JobQueue; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 fab7d84ec..c75c88701 100644 --- a/Utils/JobQueue/JobQueue.php +++ b/Utils/JobQueue/JobQueue.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Stdlib\Queue\PriorityQueue; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 0f3dcbad5..7c12126db 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 075b7ae54..ecbf2965d 100644 --- a/Utils/PDF/Pdf.php +++ b/Utils/PDF/Pdf.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 7cbd03887..d86e7600e 100644 --- a/Utils/Parser/LaTex/Expressions/Product.php +++ b/Utils/Parser/LaTex/Expressions/Product.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 65f9ccf8c..d920c2edb 100644 --- a/Utils/Parser/LaTex/Expressions/Sum.php +++ b/Utils/Parser/LaTex/Expressions/Sum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 289572f23..f485cec6f 100644 --- a/Utils/Parser/LaTex/Expressions/Trigonometry.php +++ b/Utils/Parser/LaTex/Expressions/Trigonometry.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 e7e4a24c5..b1e480b27 100644 --- a/Utils/Parser/LaTex/LaTexParser.php +++ b/Utils/Parser/LaTex/LaTexParser.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 f168a6673..9a1004351 100644 --- a/Utils/Parser/LaTex/Types/Interval.php +++ b/Utils/Parser/LaTex/Types/Interval.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 e6cefd512..a78908389 100644 --- a/Utils/Parser/LaTex/Types/MathFunction.php +++ b/Utils/Parser/LaTex/Types/MathFunction.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 3d09fa7cc..89f1daa42 100644 --- a/Utils/Parser/LaTex/Types/Variable.php +++ b/Utils/Parser/LaTex/Types/Variable.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 7bab60a53..846c617b6 100644 --- a/Utils/Parser/Markdown/Markdown.php +++ b/Utils/Parser/Markdown/Markdown.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\Parser\Markdown; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 15dd20344..c16bb72d8 100644 --- a/Utils/Parser/Php/ArrayParser.php +++ b/Utils/Parser/Php/ArrayParser.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Parser\Php; * * @category Framework * @package phpOMS\Utils\Parser - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Parser/Php/ClassParser.php b/Utils/Parser/Php/ClassParser.php index 1fd8ac242..55e1e8485 100644 --- a/Utils/Parser/Php/ClassParser.php +++ b/Utils/Parser/Php/ClassParser.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Parser\Php; * * @category Framework * @package phpOMS\Utils\Parser - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Parser/Php/ClassType.php b/Utils/Parser/Php/ClassType.php index d1ebd9be4..deabcaeae 100644 --- a/Utils/Parser/Php/ClassType.php +++ b/Utils/Parser/Php/ClassType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Parser - * @author OMS Development Team * @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 0c0faa3e9..649129e58 100644 --- a/Utils/Parser/Php/FunctionParser.php +++ b/Utils/Parser/Php/FunctionParser.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Parser\Php; * * @category Framework * @package phpOMS\Utils\Parser - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Parser/Php/MemberParser.php b/Utils/Parser/Php/MemberParser.php index c712f1ca8..f45cc79af 100644 --- a/Utils/Parser/Php/MemberParser.php +++ b/Utils/Parser/Php/MemberParser.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\Parser\Php; * * @category Framework * @package phpOMS\Utils\Parser - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/Parser/Php/Visibility.php b/Utils/Parser/Php/Visibility.php index afe0bcc6b..f7f63d03d 100644 --- a/Utils/Parser/Php/Visibility.php +++ b/Utils/Parser/Php/Visibility.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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\Parser - * @author OMS Development Team * @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 1f0424a06..207530c4f 100644 --- a/Utils/Permutation.php +++ b/Utils/Permutation.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/Address.php b/Utils/RnG/Address.php index 3b93f6d32..3078e5e99 100644 --- a/Utils/RnG/Address.php +++ b/Utils/RnG/Address.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 845b4c87f..02931e988 100644 --- a/Utils/RnG/ArrayRandomize.php +++ b/Utils/RnG/ArrayRandomize.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\RnG; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/City.php b/Utils/RnG/City.php index 51f4a4d82..5f3343a17 100644 --- a/Utils/RnG/City.php +++ b/Utils/RnG/City.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 2617d670d..2c709de10 100644 --- a/Utils/RnG/DateTime.php +++ b/Utils/RnG/DateTime.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\RnG; * * @category Framework * @package Utils\RnG - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/DistributionType.php b/Utils/RnG/DistributionType.php index 93bfb4401..525f1ce2a 100644 --- a/Utils/RnG/DistributionType.php +++ b/Utils/RnG/DistributionType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package Utils/RnG - * @author OMS Development Team * @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 688a9304d..0756d51e1 100644 --- a/Utils/RnG/Email.php +++ b/Utils/RnG/Email.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 4795acfe4..b892b587c 100644 --- a/Utils/RnG/File.php +++ b/Utils/RnG/File.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ namespace phpOMS\Utils\RnG; * * @category DataStorage * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/Iban.php b/Utils/RnG/Iban.php index 91b468ea8..85056b204 100644 --- a/Utils/RnG/Iban.php +++ b/Utils/RnG/Iban.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 f6059c111..ae777704d 100644 --- a/Utils/RnG/LinearCongruentialGenerator.php +++ b/Utils/RnG/LinearCongruentialGenerator.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\RnG; * * @category Framework * @package phpOMS\Asset - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/Name.php b/Utils/RnG/Name.php index 7ca63382c..ae64cc0cb 100644 --- a/Utils/RnG/Name.php +++ b/Utils/RnG/Name.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\RnG; * * @category Framework * @package Utils\RnG - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/Numeric.php b/Utils/RnG/Numeric.php index 264a5c902..0696086c9 100644 --- a/Utils/RnG/Numeric.php +++ b/Utils/RnG/Numeric.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 d14c08c09..128660d93 100644 --- a/Utils/RnG/Phone.php +++ b/Utils/RnG/Phone.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ namespace phpOMS\Utils\RnG; * * @category Framework * @package Utils\RnG - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/PostalZip.php b/Utils/RnG/PostalZip.php index e46b40854..bf3919bc3 100644 --- a/Utils/RnG/PostalZip.php +++ b/Utils/RnG/PostalZip.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 ca144d445..e70c147fd 100644 --- a/Utils/RnG/StringUtils.php +++ b/Utils/RnG/StringUtils.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\RnG; * * @category Framework * @package Utils\RnG - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/RnG/Text.php b/Utils/RnG/Text.php index a3d53b5d2..dd9b8016d 100644 --- a/Utils/RnG/Text.php +++ b/Utils/RnG/Text.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\RnG; * * @category Framework * @package RnG - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php index e46e8f2a9..607726670 100644 --- a/Utils/StringUtils.php +++ b/Utils/StringUtils.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/Cron.php b/Utils/TaskSchedule/Cron.php index 475b59a80..2f8b9d765 100644 --- a/Utils/TaskSchedule/Cron.php +++ b/Utils/TaskSchedule/Cron.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\TaskSchedule; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @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 7cdaf9a1e..d2c58a931 100644 --- a/Utils/TaskSchedule/CronJob.php +++ b/Utils/TaskSchedule/CronJob.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\TaskSchedule; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/Interval.php b/Utils/TaskSchedule/Interval.php index 65073c9dc..a18d220a0 100644 --- a/Utils/TaskSchedule/Interval.php +++ b/Utils/TaskSchedule/Interval.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\TaskSchedule; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/InvalidTaskParameterException.php b/Utils/TaskSchedule/InvalidTaskParameterException.php index 2f16e76fb..8a55a9fd2 100644 --- a/Utils/TaskSchedule/InvalidTaskParameterException.php +++ b/Utils/TaskSchedule/InvalidTaskParameterException.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Utils\TaskSchedule; * * @category System * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @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 0e50eb08c..bb67b820a 100644 --- a/Utils/TaskSchedule/Schedule.php +++ b/Utils/TaskSchedule/Schedule.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\TaskSchedule; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/SchedulerAbstract.php b/Utils/TaskSchedule/SchedulerAbstract.php index c1a0da212..8a875680a 100644 --- a/Utils/TaskSchedule/SchedulerAbstract.php +++ b/Utils/TaskSchedule/SchedulerAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ use phpOMS\System\File\PathException; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/SchedulerFactory.php b/Utils/TaskSchedule/SchedulerFactory.php index 3ff5b77db..ef8b6bd5d 100644 --- a/Utils/TaskSchedule/SchedulerFactory.php +++ b/Utils/TaskSchedule/SchedulerFactory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\System\SystemType; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/TaskAbstract.php b/Utils/TaskSchedule/TaskAbstract.php index 1ae256c7f..9ef962f30 100644 --- a/Utils/TaskSchedule/TaskAbstract.php +++ b/Utils/TaskSchedule/TaskAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils\TaskSchedule; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/TaskFactory.php b/Utils/TaskSchedule/TaskFactory.php index f3fd56f23..ebfba5f41 100644 --- a/Utils/TaskSchedule/TaskFactory.php +++ b/Utils/TaskSchedule/TaskFactory.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\System\SystemType; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Utils/TaskSchedule/TaskScheduler.php b/Utils/TaskSchedule/TaskScheduler.php index 65d3fba84..8dcc8c25e 100644 --- a/Utils/TaskSchedule/TaskScheduler.php +++ b/Utils/TaskSchedule/TaskScheduler.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Validation\Base\DateTime; * * @category Framework * @package phpOMS\Utils\TaskSchedule - * @author OMS Development Team * @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 30858b6c9..2bbb4f7c5 100644 --- a/Utils/TestUtils.php +++ b/Utils/TestUtils.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Utils; * * @category Framework * @package phpOMS\Utils - * @author OMS Development Team * @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 c430c2488..aa9c1bb55 100644 --- a/Validation/Barcode/Barcode.php +++ b/Validation/Barcode/Barcode.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 695b20908..adf3bd311 100644 --- a/Validation/Barcode/Barcode11.php +++ b/Validation/Barcode/Barcode11.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 010fb97b8..cf437f923 100644 --- a/Validation/Barcode/Barcode128.php +++ b/Validation/Barcode/Barcode128.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 09bf3dc07..c9b2293c3 100644 --- a/Validation/Barcode/Barcode25.php +++ b/Validation/Barcode/Barcode25.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 70c5f1002..dc1e2a8d6 100644 --- a/Validation/Barcode/Barcode39.php +++ b/Validation/Barcode/Barcode39.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 614b30bcd..bcc8325ff 100644 --- a/Validation/Barcode/Barcode93.php +++ b/Validation/Barcode/Barcode93.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 76131dc3e..ea3b2dc8d 100644 --- a/Validation/Barcode/BarcodeCodebar.php +++ b/Validation/Barcode/BarcodeCodebar.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 b62e422ec..e0113f396 100644 --- a/Validation/Barcode/BarcodeDatamatrix.php +++ b/Validation/Barcode/BarcodeDatamatrix.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 8952d78ae..9605072cf 100644 --- a/Validation/Barcode/BarcodeEAN.php +++ b/Validation/Barcode/BarcodeEAN.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 3107cd6df..04561456f 100644 --- a/Validation/Barcode/BarcodeMSI.php +++ b/Validation/Barcode/BarcodeMSI.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @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 ae122da02..2fdda33da 100644 --- a/Validation/Barcode/QrCode.php +++ b/Validation/Barcode/QrCode.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Base/DateTime.php b/Validation/Base/DateTime.php index 9b10b51de..e7a5ba372 100644 --- a/Validation/Base/DateTime.php +++ b/Validation/Base/DateTime.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Validation\ValidatorAbstract; * * @category Validation * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Finance/BIC.php b/Validation/Finance/BIC.php index b214451d5..cdf5e91db 100644 --- a/Validation/Finance/BIC.php +++ b/Validation/Finance/BIC.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Validation\ValidatorAbstract; * * @category Validation * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Finance/CreditCard.php b/Validation/Finance/CreditCard.php index 785473cb1..899129672 100644 --- a/Validation/Finance/CreditCard.php +++ b/Validation/Finance/CreditCard.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Validation\ValidatorAbstract; * * @category Validation * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Finance/Iban.php b/Validation/Finance/Iban.php index 09df00608..3045603b3 100644 --- a/Validation/Finance/Iban.php +++ b/Validation/Finance/Iban.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -24,7 +23,6 @@ use phpOMS\Validation\ValidatorAbstract; * * @category Validation * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Finance/IbanEnum.php b/Validation/Finance/IbanEnum.php index 65bccbaf7..45880592e 100644 --- a/Validation/Finance/IbanEnum.php +++ b/Validation/Finance/IbanEnum.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Localization - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Finance/IbanErrorType.php b/Validation/Finance/IbanErrorType.php index e2b17fe60..f728b971a 100644 --- a/Validation/Finance/IbanErrorType.php +++ b/Validation/Finance/IbanErrorType.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Datatypes - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/ModelValidationTrait.php b/Validation/ModelValidationTrait.php index 8c4175463..3bdc9c26b 100644 --- a/Validation/ModelValidationTrait.php +++ b/Validation/ModelValidationTrait.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/Network/Email.php b/Validation/Network/Email.php index dca36c7d1..8f3e506ed 100644 --- a/Validation/Network/Email.php +++ b/Validation/Network/Email.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Validation\ValidatorAbstract; * * @category Validation * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Network/Hostname.php b/Validation/Network/Hostname.php index f62698133..53df28894 100644 --- a/Validation/Network/Hostname.php +++ b/Validation/Network/Hostname.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Validation\ValidatorAbstract; * * @category Validation * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Network/Ip.php b/Validation/Network/Ip.php index f30e90ea7..abd1222e5 100644 --- a/Validation/Network/Ip.php +++ b/Validation/Network/Ip.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Validation\ValidatorAbstract; * * @category Validation * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Validation/Validator.php b/Validation/Validator.php index cd19a3ec2..ecb079c71 100644 --- a/Validation/Validator.php +++ b/Validation/Validator.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Validation/ValidatorAbstract.php b/Validation/ValidatorAbstract.php index f3283916e..afc98b019 100644 --- a/Validation/ValidatorAbstract.php +++ b/Validation/ValidatorAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Validation; * * @category Validation * @package Framework - * @author OMS Development Team * @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 91aeefce1..22a695d5b 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ namespace phpOMS\Validation; * * @category Validation * @package Framework - * @author OMS Development Team * @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 a8601cbb5..e202faf5d 100644 --- a/Version/Version.php +++ b/Version/Version.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ namespace phpOMS\Version; * * @category Version * @package Framework - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Views/View.php b/Views/View.php index 17401f295..8d124a8c5 100644 --- a/Views/View.php +++ b/Views/View.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -28,7 +27,6 @@ use phpOMS\Module\Exception\InvalidThemeException; * * @category Framework * @package phpOMS/Views - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index a1427c93c..e96f95de7 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 @@ -24,7 +23,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 diff --git a/Views/ViewLayout.php b/Views/ViewLayout.php index d4f36f611..b789740ee 100644 --- a/Views/ViewLayout.php +++ b/Views/ViewLayout.php @@ -6,7 +6,6 @@ * * @category TBD * @package TBD - * @author OMS Development Team * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ use phpOMS\Datatypes\Enum; * * @category Framework * @package phpOMS\Socket - * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 From 463df4dfd90577595523237a06d0db7722476ce7 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 3 Aug 2017 23:05:46 +0200 Subject: [PATCH 035/103] Add simplified create --- Message/Http/Request.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Message/Http/Request.php b/Message/Http/Request.php index 5bc79c3a2..084de7896 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -82,6 +82,20 @@ class Request extends RequestAbstract $this->init(); } + /** + * Create request from super globals. + * + * @param Localization $l11n Localization + * + * @return Request + * + * @since 1.0.0 + */ + public static function createFromSuperglobals(Localization $l11n = null) : Request + { + return new self($l11n); + } + /** * Init request. * From 5fedebbf7f95158e9059c28009910d25c6fa8aa5 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 10:33:49 +0200 Subject: [PATCH 036/103] Build plan for monthly calendar --- Datatypes/SmartDateTime.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index 1b07a67bc..470a87929 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -221,4 +221,15 @@ class SmartDateTime extends \DateTime return $w; } + public function getMonthCalendar(int $weekStartsWith = 0) : array + { + // get day of first day in month + // calculate difference to $weekStartsWith + // get days of previous month + // add difference to $weekStartsWith counting backwards from days of previous month (reorder so that lowest value first) + // add normal count of current days + // add remaining days to next month (7*6 - difference+count of current month) + + // return maybe two dimensional array (one week = first dimension) one dimensional also ok with some easy calculations (one week = 7 days) + } } From 7c75052de016a4fdae96f1b932bf4a4b44917249 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 11:03:50 +0200 Subject: [PATCH 037/103] Created draft for month array based on date --- Datatypes/SmartDateTime.php | 87 +++++++++++++++++++++++++++++++++---- 1 file changed, 79 insertions(+), 8 deletions(-) diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index 470a87929..2c297933f 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -51,6 +51,20 @@ class SmartDateTime extends \DateTime { parent::__construct($time, $timezone); } + + /** + * Create object from DateTime + * + * @param \DateTime $date DateTime to extend + * + * @return SmartDateTime + * + * @since 1.0.0 + */ + public static function createFromDateTime(\Datetime $date) : SmarteDateTime + { + return new self('Y-m-d H:i:s', $date->getTimezone()); + } /** * Modify datetime in a smart way. @@ -201,6 +215,10 @@ class SmartDateTime extends \DateTime /** * Get day of week * + * @param int $y Year + * @param int $m Month + * @param int $d Day + * * @return int * * @since 1.0.0 @@ -215,21 +233,74 @@ class SmartDateTime extends \DateTime $ry = $y - 1 - $ly; $w = $w + $ry; $w = $w + 2 * $ly; - $w = $w + date("z", mktime(0, 0, 0, $m, $d, $y)) + 1;; + $w = $w + date("z", mktime(0, 0, 0, $m, $d, $y)) + 1; + $w = ($w - 1) % 7 + 1; + + return $w; + } + + /** + * Get day of week + * + * @return int + * + * @since 1.0.0 + */ + public function getFirstDayOfWeek() : int + { + $w = 1; + $y = ((int) $this->formay('Y') - 1) % 400 + 1; + $ly = ($y - 1) / 4; + $ly = $ly - ($y - 1) / 100; + $ly = $ly + ($y - 1) / 400; + $ry = $y - 1 - $ly; + $w = $w + $ry; + $w = $w + 2 * $ly; + $w = $w + date("z", mktime(0, 0, 0, (int) $this->formay('m'), (int) $this->formay('d'), $y)) + 1; $w = ($w - 1) % 7 + 1; return $w; } + /** + * Create calendar array + * + * @param int $weekStartsWith Day of the week start (0 = Sunday) + * + * @return array + * + * @since 1.0.0 + */ public function getMonthCalendar(int $weekStartsWith = 0) : array { - // get day of first day in month - // calculate difference to $weekStartsWith - // get days of previous month - // add difference to $weekStartsWith counting backwards from days of previous month (reorder so that lowest value first) - // add normal count of current days - // add remaining days to next month (7*6 - difference+count of current month) + $days = []; - // return maybe two dimensional array (one week = first dimension) one dimensional also ok with some easy calculations (one week = 7 days) + // get day of first day in month + $firstDay = $this->getFirstDayOfMonth(); + + // calculate difference to $weekStartsWith + $diffToWeekStart = Functions::mod($firstDay - $weekStartsWith, 7); + $diffToWeekStart = $diffToWeekStart === 0 ? 7 : $diffToWeekStart; + + // get days of previous month + $previousMonth = self::createModify(0, -1); + $daysPreviousMonth = $previousMonth->getDaysOfMonth(); + + // add difference to $weekStartsWith counting backwards from days of previous month (reorder so that lowest value first) + for($i = $daysPreviousMonth - $diffToWeekStart; $i < $daysPreviousMonth; $i++) { + $days[] = $i; + } + // add normal count of current days + $daysMonth = $this->getDaysOfMonth(); + for($i = 1; $i <= $daysMonth; $i++) { + $days[] = $i; + } + + // add remaining days to next month (7*6 - difference+count of current month) + for($i = 42 - $daysPreviousMonth - $daysMonth; $i < 42; $i++) { + $days[] = $i; + } + + return $days; } } From 31094e8c94ecb93c77ef07eccb6da6cd01457353 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 11:18:46 +0200 Subject: [PATCH 038/103] Update SmartDateTime.php --- Datatypes/SmartDateTime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index 2c297933f..fb66a0a8a 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -283,7 +283,7 @@ class SmartDateTime extends \DateTime $diffToWeekStart = $diffToWeekStart === 0 ? 7 : $diffToWeekStart; // get days of previous month - $previousMonth = self::createModify(0, -1); + $previousMonth = $this->createModify(0, -1); $daysPreviousMonth = $previousMonth->getDaysOfMonth(); // add difference to $weekStartsWith counting backwards from days of previous month (reorder so that lowest value first) From f963d6df8ea1cf1994855e1e8010a5f95b935dc1 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 16:10:04 +0200 Subject: [PATCH 039/103] Make countable --- Datatypes/Enum.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Datatypes/Enum.php b/Datatypes/Enum.php index dbd2efb83..3d9f68655 100644 --- a/Datatypes/Enum.php +++ b/Datatypes/Enum.php @@ -26,7 +26,7 @@ namespace phpOMS\Datatypes; * @link http://orange-management.com * @since 1.0.0 */ -abstract class Enum +abstract class Enum implements \Countable { /** From 2f702386734ad51ca8050d701e06788530753f06 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 16:12:07 +0200 Subject: [PATCH 040/103] Remove countable Was a stupid idea. Enum is static and \Countable is non-static. --- Datatypes/Enum.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Datatypes/Enum.php b/Datatypes/Enum.php index 3d9f68655..dbd2efb83 100644 --- a/Datatypes/Enum.php +++ b/Datatypes/Enum.php @@ -26,7 +26,7 @@ namespace phpOMS\Datatypes; * @link http://orange-management.com * @since 1.0.0 */ -abstract class Enum implements \Countable +abstract class Enum { /** From 321da764263a0c505ece89bd17b094087ec177f2 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 20:07:13 +0200 Subject: [PATCH 041/103] Use functions class --- Datatypes/SmartDateTime.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index fb66a0a8a..ca879f39a 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -15,6 +15,8 @@ declare(strict_types=1); namespace phpOMS\Datatypes; +use phpOMS\Math\Functions; + /** * SmartDateTime. * From adadf9d19873f8b55341729c229e43cebeea53ed Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 20:08:38 +0200 Subject: [PATCH 042/103] fix ocd --- Datatypes/SmartDateTime.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index ca879f39a..7c174f62c 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -292,6 +292,7 @@ class SmartDateTime extends \DateTime for($i = $daysPreviousMonth - $diffToWeekStart; $i < $daysPreviousMonth; $i++) { $days[] = $i; } + // add normal count of current days $daysMonth = $this->getDaysOfMonth(); for($i = 1; $i <= $daysMonth; $i++) { From 4e769fc9794b79a1b860235965d7aa07b82440cf Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 20:41:46 +0200 Subject: [PATCH 043/103] Fix mini bugs --- Math/Stochastic/NaiveBayesFilter.php | 4 ++-- Validation/ValidatorInterface.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Math/Stochastic/NaiveBayesFilter.php b/Math/Stochastic/NaiveBayesFilter.php index 128688bdb..99bcee44c 100644 --- a/Math/Stochastic/NaiveBayesFilter.php +++ b/Math/Stochastic/NaiveBayesFilter.php @@ -30,11 +30,11 @@ class NaiveBayesFilter { } - public function trainMatch($matched) \* : void *\ + public function trainMatch($matched) /* : void */ { } - public function trainMismatch($mismatch) \* : void *\ + public function trainMismatch($mismatch) /* : void */ { } diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index 22a695d5b..33589fdfb 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -55,5 +55,5 @@ interface ValidatorInterface * * @since 1.0.0 */ - public static function getErrorCode() : int + public static function getErrorCode() : int; } From 5950c1fcf44ec82820f84e0d17ea006b6d4aff50 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 11 Aug 2017 20:09:12 +0200 Subject: [PATCH 044/103] Fix calendar month calculation --- Datatypes/SmartDateTime.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index 7c174f62c..aaeb2a0c9 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Datatypes; -use phpOMS\Math\Functions; +use phpOMS\Math\Functions\Functions; /** * SmartDateTime. @@ -290,7 +290,7 @@ class SmartDateTime extends \DateTime // add difference to $weekStartsWith counting backwards from days of previous month (reorder so that lowest value first) for($i = $daysPreviousMonth - $diffToWeekStart; $i < $daysPreviousMonth; $i++) { - $days[] = $i; + $days[] = $i+1; } // add normal count of current days @@ -300,10 +300,11 @@ class SmartDateTime extends \DateTime } // add remaining days to next month (7*6 - difference+count of current month) - for($i = 42 - $daysPreviousMonth - $daysMonth; $i < 42; $i++) { + $remainingDays = 42 - $diffToWeekStart - $daysMonth; + for($i = 1; $i <= $remainingDays; $i++) { $days[] = $i; } - + return $days; } } From a5039867baa1a9c96e330e54e6c70e4f30a6f61c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 11 Aug 2017 20:25:44 +0200 Subject: [PATCH 045/103] Return array of datetimes instead of values --- Datatypes/SmartDateTime.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index aaeb2a0c9..952ee9914 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -290,19 +290,20 @@ class SmartDateTime extends \DateTime // add difference to $weekStartsWith counting backwards from days of previous month (reorder so that lowest value first) for($i = $daysPreviousMonth - $diffToWeekStart; $i < $daysPreviousMonth; $i++) { - $days[] = $i+1; + $days[] = new \DateTime($previousMonth->format('Y') . '-' . $previousMonth->format('m') . '-' . ($i+1)); } // add normal count of current days $daysMonth = $this->getDaysOfMonth(); for($i = 1; $i <= $daysMonth; $i++) { - $days[] = $i; + $days[] = new \DateTime($this->format('Y') . '-' . $this->format('m') . '-' . ($i)); } // add remaining days to next month (7*6 - difference+count of current month) $remainingDays = 42 - $diffToWeekStart - $daysMonth; + $nextMonth = $this->createModify(0, 1); for($i = 1; $i <= $remainingDays; $i++) { - $days[] = $i; + $days[] = new \DateTime($nextMonth->format('Y') . '-' . $nextMonth->format('m') . '-' . ($i)); } return $days; From 65540606346e95d08d8f00b0aa0dac1f9fcadaf5 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 11 Aug 2017 20:43:38 +0200 Subject: [PATCH 046/103] fixes #116 --- Account/AccountStatus.php | 2 +- Account/AccountType.php | 2 +- Account/GroupStatus.php | 2 +- Algorithm/AlgorithmType.php | 2 +- Asset/AssetType.php | 2 +- Auth/LoginReturnType.php | 2 +- DataStorage/Cache/CacheInterface.php | 2 +- DataStorage/Cache/CacheStatus.php | 2 +- DataStorage/Cache/CacheType.php | 2 +- DataStorage/Cache/FileCache.php | 2 +- DataStorage/Database/DatabaseStatus.php | 2 +- DataStorage/Database/DatabaseType.php | 2 +- DataStorage/Database/Query/JoinType.php | 2 +- DataStorage/Database/Query/QueryType.php | 2 +- DataStorage/Database/RelationType.php | 2 +- DataStorage/Database/Schema/QueryType.php | 2 +- Html/TagType.php | 2 +- Localization/ISO3166CharEnum.php | 2 +- Localization/ISO3166NameEnum.php | 2 +- Localization/ISO3166NumEnum.php | 2 +- Localization/ISO3166TwoEnum.php | 2 +- Localization/ISO4217CharEnum.php | 2 +- Localization/ISO4217DecimalEnum.php | 2 +- Localization/ISO4217Enum.php | 2 +- Localization/ISO4217NumEnum.php | 2 +- Localization/ISO4217SubUnitEnum.php | 2 +- Localization/ISO4217SymbolEnum.php | 2 +- Localization/ISO639Enum.php | 2 +- Localization/ISO639x1Enum.php | 2 +- Localization/ISO639x2Enum.php | 2 +- Localization/ISO8601EnumArray.php | 2 +- Localization/Localization.php | 2 +- Localization/PhoneEnum.php | 2 +- Localization/TimeZoneEnumArray.php | 2 +- Log/FileLogger.php | 2 +- Log/LogLevel.php | 2 +- Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php | 2 +- Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php | 2 +- Math/Finance/Forecasting/SmoothingType.php | 2 +- Math/Matrix/InverseType.php | 2 +- Math/Number/NumberType.php | 2 +- Math/Statistic/Forecast/ForecastIntervalMultiplier.php | 2 +- Message/Http/BrowserType.php | 2 +- Message/Http/OSType.php | 2 +- Message/Http/RequestMethod.php | 2 +- Message/Http/RequestStatus.php | 2 +- Message/Mail/MailType.php | 2 +- Message/RequestAbstract.php | 2 +- Message/RequestSource.php | 2 +- Message/ResponseType.php | 2 +- Router/RouteVerb.php | 2 +- Socket/Packets/PacketType.php | 2 +- Socket/SocketType.php | 2 +- {Datatypes => Stdlib/Base}/Address.php | 2 +- {Datatypes => Stdlib/Base}/AddressType.php | 2 +- {Datatypes => Stdlib/Base}/Enum.php | 2 +- {Datatypes => Stdlib/Base}/EnumArray.php | 2 +- {Datatypes => Stdlib/Base}/ExactFloat.php | 2 +- {Datatypes => Stdlib/Base}/Exception/InvalidEnumName.php | 2 +- {Datatypes => Stdlib/Base}/Exception/InvalidEnumValue.php | 2 +- {Datatypes => Stdlib/Base}/Iban.php | 2 +- {Datatypes => Stdlib/Base}/Location.php | 2 +- {Datatypes => Stdlib/Base}/NullLocation.php | 2 +- {Datatypes => Stdlib/Base}/PhoneType.php | 2 +- {Datatypes => Stdlib/Base}/SmartDateTime.php | 2 +- Stdlib/Map/KeyType.php | 2 +- Stdlib/Map/OrderType.php | 2 +- Stdlib/Queue/PriorityMode.php | 2 +- System/File/ContentPutMode.php | 2 +- System/File/ExtensionType.php | 2 +- System/MimeType.php | 2 +- System/SystemType.php | 2 +- Uri/UriScheme.php | 2 +- Utils/Barcode/C128Abstract.php | 2 +- Utils/Barcode/OrientationType.php | 2 +- Utils/Converter/AngleType.php | 2 +- Utils/Converter/AreaType.php | 2 +- Utils/Converter/EnergyPowerType.php | 2 +- Utils/Converter/FileSizeType.php | 2 +- Utils/Converter/LengthType.php | 2 +- Utils/Converter/PressureType.php | 2 +- Utils/Converter/SpeedType.php | 2 +- Utils/Converter/TemperatureType.php | 2 +- Utils/Converter/TimeType.php | 2 +- Utils/Converter/VolumeType.php | 2 +- Utils/Converter/WeightType.php | 2 +- Utils/Parser/Php/ClassType.php | 2 +- Utils/Parser/Php/Visibility.php | 2 +- Utils/RnG/DistributionType.php | 2 +- Validation/Finance/IbanEnum.php | 2 +- Validation/Finance/IbanErrorType.php | 2 +- Views/ViewLayout.php | 2 +- 92 files changed, 92 insertions(+), 92 deletions(-) rename {Datatypes => Stdlib/Base}/Address.php (98%) rename {Datatypes => Stdlib/Base}/AddressType.php (96%) rename {Datatypes => Stdlib/Base}/Enum.php (98%) rename {Datatypes => Stdlib/Base}/EnumArray.php (98%) rename {Datatypes => Stdlib/Base}/ExactFloat.php (99%) rename {Datatypes => Stdlib/Base}/Exception/InvalidEnumName.php (96%) rename {Datatypes => Stdlib/Base}/Exception/InvalidEnumValue.php (96%) rename {Datatypes => Stdlib/Base}/Iban.php (99%) rename {Datatypes => Stdlib/Base}/Location.php (99%) rename {Datatypes => Stdlib/Base}/NullLocation.php (94%) rename {Datatypes => Stdlib/Base}/PhoneType.php (95%) rename {Datatypes => Stdlib/Base}/SmartDateTime.php (99%) diff --git a/Account/AccountStatus.php b/Account/AccountStatus.php index e7396c606..c7aa95269 100644 --- a/Account/AccountStatus.php +++ b/Account/AccountStatus.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Account; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Account status enum. diff --git a/Account/AccountType.php b/Account/AccountType.php index 0f2cd3d2b..92369d6c9 100644 --- a/Account/AccountType.php +++ b/Account/AccountType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Account; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Account type enum. diff --git a/Account/GroupStatus.php b/Account/GroupStatus.php index 9605d4c6e..14916b4ef 100644 --- a/Account/GroupStatus.php +++ b/Account/GroupStatus.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Account; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Accept status enum. diff --git a/Algorithm/AlgorithmType.php b/Algorithm/AlgorithmType.php index 85196028f..ee1d0841d 100644 --- a/Algorithm/AlgorithmType.php +++ b/Algorithm/AlgorithmType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Algorithm; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Task status enum. diff --git a/Asset/AssetType.php b/Asset/AssetType.php index 6851e0249..7f710555f 100644 --- a/Asset/AssetType.php +++ b/Asset/AssetType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Asset; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Asset types enum. diff --git a/Auth/LoginReturnType.php b/Auth/LoginReturnType.php index b67f3a40a..8ce0352ae 100644 --- a/Auth/LoginReturnType.php +++ b/Auth/LoginReturnType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Auth; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Login return types enum. diff --git a/DataStorage/Cache/CacheInterface.php b/DataStorage/Cache/CacheInterface.php index 444214f22..015c56123 100644 --- a/DataStorage/Cache/CacheInterface.php +++ b/DataStorage/Cache/CacheInterface.php @@ -14,7 +14,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Cache; -use phpOMS\Datatypes\Exception\InvalidEnumValue; +use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; /** * Cache interface. diff --git a/DataStorage/Cache/CacheStatus.php b/DataStorage/Cache/CacheStatus.php index 2cfb17fef..ffb58806c 100644 --- a/DataStorage/Cache/CacheStatus.php +++ b/DataStorage/Cache/CacheStatus.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Cache; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Cache status enum. diff --git a/DataStorage/Cache/CacheType.php b/DataStorage/Cache/CacheType.php index f88bf5067..35b12ac41 100644 --- a/DataStorage/Cache/CacheType.php +++ b/DataStorage/Cache/CacheType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Cache; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Cache type enum. diff --git a/DataStorage/Cache/FileCache.php b/DataStorage/Cache/FileCache.php index 631d9830b..ef9906889 100644 --- a/DataStorage/Cache/FileCache.php +++ b/DataStorage/Cache/FileCache.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Cache; -use phpOMS\Datatypes\Exception\InvalidEnumValue; +use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; use phpOMS\System\File\Local\Directory; use phpOMS\System\File\Local\File; diff --git a/DataStorage/Database/DatabaseStatus.php b/DataStorage/Database/DatabaseStatus.php index 99d80b9fa..db73f88cb 100644 --- a/DataStorage/Database/DatabaseStatus.php +++ b/DataStorage/Database/DatabaseStatus.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Database; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database status enum. diff --git a/DataStorage/Database/DatabaseType.php b/DataStorage/Database/DatabaseType.php index 4b302322b..f0ac90eb4 100644 --- a/DataStorage/Database/DatabaseType.php +++ b/DataStorage/Database/DatabaseType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Database; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database type enum. diff --git a/DataStorage/Database/Query/JoinType.php b/DataStorage/Database/Query/JoinType.php index 5b5e2ef19..449a165cd 100644 --- a/DataStorage/Database/Query/JoinType.php +++ b/DataStorage/Database/Query/JoinType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Query type enum. diff --git a/DataStorage/Database/Query/QueryType.php b/DataStorage/Database/Query/QueryType.php index b227fadf6..40481343b 100644 --- a/DataStorage/Database/Query/QueryType.php +++ b/DataStorage/Database/Query/QueryType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Query type enum. diff --git a/DataStorage/Database/RelationType.php b/DataStorage/Database/RelationType.php index 013454a6e..206e5d019 100644 --- a/DataStorage/Database/RelationType.php +++ b/DataStorage/Database/RelationType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Database; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database type enum. diff --git a/DataStorage/Database/Schema/QueryType.php b/DataStorage/Database/Schema/QueryType.php index 085d66ee3..98cbba489 100644 --- a/DataStorage/Database/Schema/QueryType.php +++ b/DataStorage/Database/Schema/QueryType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Database\Schema; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database type enum. diff --git a/Html/TagType.php b/Html/TagType.php index b8012e31c..9c246f465 100644 --- a/Html/TagType.php +++ b/Html/TagType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Html; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Tag type enum. diff --git a/Localization/ISO3166CharEnum.php b/Localization/ISO3166CharEnum.php index ec330af3a..02cf06b0b 100644 --- a/Localization/ISO3166CharEnum.php +++ b/Localization/ISO3166CharEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Country codes ISO list. diff --git a/Localization/ISO3166NameEnum.php b/Localization/ISO3166NameEnum.php index e66c5fcb6..f85eecfbe 100644 --- a/Localization/ISO3166NameEnum.php +++ b/Localization/ISO3166NameEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Country names ISO list. diff --git a/Localization/ISO3166NumEnum.php b/Localization/ISO3166NumEnum.php index 476541e5f..5ba84a9a7 100644 --- a/Localization/ISO3166NumEnum.php +++ b/Localization/ISO3166NumEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Country codes ISO list. diff --git a/Localization/ISO3166TwoEnum.php b/Localization/ISO3166TwoEnum.php index fbec9c1d1..68a4162bc 100644 --- a/Localization/ISO3166TwoEnum.php +++ b/Localization/ISO3166TwoEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Country codes ISO list. diff --git a/Localization/ISO4217CharEnum.php b/Localization/ISO4217CharEnum.php index 367eb79eb..03ce8bb89 100644 --- a/Localization/ISO4217CharEnum.php +++ b/Localization/ISO4217CharEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Currency codes ISO list. diff --git a/Localization/ISO4217DecimalEnum.php b/Localization/ISO4217DecimalEnum.php index d643586d0..416ee7aaa 100644 --- a/Localization/ISO4217DecimalEnum.php +++ b/Localization/ISO4217DecimalEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Currency decimals ISO list. diff --git a/Localization/ISO4217Enum.php b/Localization/ISO4217Enum.php index 5e970727d..09cced948 100644 --- a/Localization/ISO4217Enum.php +++ b/Localization/ISO4217Enum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Currency names ISO list. diff --git a/Localization/ISO4217NumEnum.php b/Localization/ISO4217NumEnum.php index 49ffc2433..b3c574bb7 100644 --- a/Localization/ISO4217NumEnum.php +++ b/Localization/ISO4217NumEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Currency codes ISO list. diff --git a/Localization/ISO4217SubUnitEnum.php b/Localization/ISO4217SubUnitEnum.php index 2405b9447..391b8ffc4 100644 --- a/Localization/ISO4217SubUnitEnum.php +++ b/Localization/ISO4217SubUnitEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Currency sub units ISO list. diff --git a/Localization/ISO4217SymbolEnum.php b/Localization/ISO4217SymbolEnum.php index 8c5eabfe2..c4ae80496 100644 --- a/Localization/ISO4217SymbolEnum.php +++ b/Localization/ISO4217SymbolEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Country symbols ISO list. diff --git a/Localization/ISO639Enum.php b/Localization/ISO639Enum.php index 690d99875..110c3216f 100644 --- a/Localization/ISO639Enum.php +++ b/Localization/ISO639Enum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Language name ISO list. diff --git a/Localization/ISO639x1Enum.php b/Localization/ISO639x1Enum.php index 8cb50c1aa..f88b890cf 100644 --- a/Localization/ISO639x1Enum.php +++ b/Localization/ISO639x1Enum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Language codes ISO list. diff --git a/Localization/ISO639x2Enum.php b/Localization/ISO639x2Enum.php index e65535da7..f5cb1cfed 100644 --- a/Localization/ISO639x2Enum.php +++ b/Localization/ISO639x2Enum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Language codes ISO list. diff --git a/Localization/ISO8601EnumArray.php b/Localization/ISO8601EnumArray.php index 373103651..2524fb9d8 100644 --- a/Localization/ISO8601EnumArray.php +++ b/Localization/ISO8601EnumArray.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\EnumArray; +use phpOMS\Stdlib\Base\EnumArray; /** * Datetime ISO format. diff --git a/Localization/Localization.php b/Localization/Localization.php index 7600eec50..4fd894cd3 100644 --- a/Localization/Localization.php +++ b/Localization/Localization.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Exception\InvalidEnumValue; +use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; use phpOMS\Utils\Converter\AngleType; use phpOMS\Utils\Converter\TemperatureType; diff --git a/Localization/PhoneEnum.php b/Localization/PhoneEnum.php index 3ecaef0dd..9cc663db8 100644 --- a/Localization/PhoneEnum.php +++ b/Localization/PhoneEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Country codes ISO list. diff --git a/Localization/TimeZoneEnumArray.php b/Localization/TimeZoneEnumArray.php index ec557a4b2..0c5ea8276 100644 --- a/Localization/TimeZoneEnumArray.php +++ b/Localization/TimeZoneEnumArray.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Localization; -use phpOMS\Datatypes\EnumArray; +use phpOMS\Stdlib\Base\EnumArray; /** * PHP Time zones. diff --git a/Log/FileLogger.php b/Log/FileLogger.php index b13e386a3..4a23e6319 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Log; -use phpOMS\Datatypes\Exception\InvalidEnumValue; +use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; use phpOMS\System\File\Local\File; use phpOMS\System\File\PathException; use phpOMS\Utils\StringUtils; diff --git a/Log/LogLevel.php b/Log/LogLevel.php index 4fcb6f7ac..c12411d4d 100644 --- a/Log/LogLevel.php +++ b/Log/LogLevel.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Log; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Log level enum. diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php b/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php index b22a4c0fe..48959cedd 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting\ExponentialSmoothing; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Smoothing enum. diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php b/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php index 7bd8ad518..423ac9c99 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting\ExponentialSmoothing; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Smoothing enum. diff --git a/Math/Finance/Forecasting/SmoothingType.php b/Math/Finance/Forecasting/SmoothingType.php index 10e5c3319..abc8f931b 100644 --- a/Math/Finance/Forecasting/SmoothingType.php +++ b/Math/Finance/Forecasting/SmoothingType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Smoothing enum. diff --git a/Math/Matrix/InverseType.php b/Math/Matrix/InverseType.php index 30409f34e..d58908585 100644 --- a/Math/Matrix/InverseType.php +++ b/Math/Matrix/InverseType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Math\Matrix; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Inverse type enum. diff --git a/Math/Number/NumberType.php b/Math/Number/NumberType.php index 4647988f0..de6d487ea 100644 --- a/Math/Number/NumberType.php +++ b/Math/Number/NumberType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Math\Number; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Number type enum. diff --git a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php index 33afb6f28..a8bddc0fa 100644 --- a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php +++ b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Prediction interval multiplier. diff --git a/Message/Http/BrowserType.php b/Message/Http/BrowserType.php index 7e87f78e9..1fa9b75dd 100644 --- a/Message/Http/BrowserType.php +++ b/Message/Http/BrowserType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Message\Http; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Browser type enum. diff --git a/Message/Http/OSType.php b/Message/Http/OSType.php index 67315be46..343381749 100644 --- a/Message/Http/OSType.php +++ b/Message/Http/OSType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Message\Http; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * OS type enum. diff --git a/Message/Http/RequestMethod.php b/Message/Http/RequestMethod.php index 3561af87d..c287f14ee 100644 --- a/Message/Http/RequestMethod.php +++ b/Message/Http/RequestMethod.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Message\Http; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Request method enum. diff --git a/Message/Http/RequestStatus.php b/Message/Http/RequestStatus.php index 65d5446a2..537aabc46 100644 --- a/Message/Http/RequestStatus.php +++ b/Message/Http/RequestStatus.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Message\Http; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Request status enum. diff --git a/Message/Mail/MailType.php b/Message/Mail/MailType.php index 2208d25c3..a4fe5ac31 100644 --- a/Message/Mail/MailType.php +++ b/Message/Mail/MailType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Message\Mail; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Mail type. diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index a5e213484..70c078137 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Message; -use phpOMS\Datatypes\Exception\InvalidEnumValue; +use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; use phpOMS\Localization\Localization; use phpOMS\Uri\UriInterface; diff --git a/Message/RequestSource.php b/Message/RequestSource.php index f1c168c45..a65e90d5a 100644 --- a/Message/RequestSource.php +++ b/Message/RequestSource.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Message; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Request source enum. diff --git a/Message/ResponseType.php b/Message/ResponseType.php index 7ab000a70..5681897b8 100644 --- a/Message/ResponseType.php +++ b/Message/ResponseType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Message; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Request type enum. diff --git a/Router/RouteVerb.php b/Router/RouteVerb.php index c2eb69735..4c36d6732 100644 --- a/Router/RouteVerb.php +++ b/Router/RouteVerb.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Router; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Route verb enum. diff --git a/Socket/Packets/PacketType.php b/Socket/Packets/PacketType.php index 5e86c9d18..62011fde1 100644 --- a/Socket/Packets/PacketType.php +++ b/Socket/Packets/PacketType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Socket\Packets; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Packet type enum. diff --git a/Socket/SocketType.php b/Socket/SocketType.php index 0b88b7130..94008f57d 100644 --- a/Socket/SocketType.php +++ b/Socket/SocketType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Socket; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Socket type enum. diff --git a/Datatypes/Address.php b/Stdlib/Base/Address.php similarity index 98% rename from Datatypes/Address.php rename to Stdlib/Base/Address.php index a597aba4b..58192c2d4 100644 --- a/Datatypes/Address.php +++ b/Stdlib/Base/Address.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; /** * Address class. diff --git a/Datatypes/AddressType.php b/Stdlib/Base/AddressType.php similarity index 96% rename from Datatypes/AddressType.php rename to Stdlib/Base/AddressType.php index bdc045148..f33b460ba 100644 --- a/Datatypes/AddressType.php +++ b/Stdlib/Base/AddressType.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; /** * Address type enum. diff --git a/Datatypes/Enum.php b/Stdlib/Base/Enum.php similarity index 98% rename from Datatypes/Enum.php rename to Stdlib/Base/Enum.php index dbd2efb83..abaaed0d1 100644 --- a/Datatypes/Enum.php +++ b/Stdlib/Base/Enum.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; /** * Enum class. diff --git a/Datatypes/EnumArray.php b/Stdlib/Base/EnumArray.php similarity index 98% rename from Datatypes/EnumArray.php rename to Stdlib/Base/EnumArray.php index 795ab6ee8..76637b2c9 100644 --- a/Datatypes/EnumArray.php +++ b/Stdlib/Base/EnumArray.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; /** * Enum class. diff --git a/Datatypes/ExactFloat.php b/Stdlib/Base/ExactFloat.php similarity index 99% rename from Datatypes/ExactFloat.php rename to Stdlib/Base/ExactFloat.php index 3ed788e6e..07f1cfc0e 100644 --- a/Datatypes/ExactFloat.php +++ b/Stdlib/Base/ExactFloat.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; class ExactFloat { diff --git a/Datatypes/Exception/InvalidEnumName.php b/Stdlib/Base/Exception/InvalidEnumName.php similarity index 96% rename from Datatypes/Exception/InvalidEnumName.php rename to Stdlib/Base/Exception/InvalidEnumName.php index b5fa7d95e..a15dfa205 100644 --- a/Datatypes/Exception/InvalidEnumName.php +++ b/Stdlib/Base/Exception/InvalidEnumName.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes\Exception; +namespace phpOMS\Stdlib\Base\Exception; /** * Filesystem class. diff --git a/Datatypes/Exception/InvalidEnumValue.php b/Stdlib/Base/Exception/InvalidEnumValue.php similarity index 96% rename from Datatypes/Exception/InvalidEnumValue.php rename to Stdlib/Base/Exception/InvalidEnumValue.php index 7c24f0811..fb2a8ef2f 100644 --- a/Datatypes/Exception/InvalidEnumValue.php +++ b/Stdlib/Base/Exception/InvalidEnumValue.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes\Exception; +namespace phpOMS\Stdlib\Base\Exception; /** * Filesystem class. diff --git a/Datatypes/Iban.php b/Stdlib/Base/Iban.php similarity index 99% rename from Datatypes/Iban.php rename to Stdlib/Base/Iban.php index 9f9393d72..9fc49b8b8 100644 --- a/Datatypes/Iban.php +++ b/Stdlib/Base/Iban.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; use phpOMS\Validation\Finance\IbanEnum; diff --git a/Datatypes/Location.php b/Stdlib/Base/Location.php similarity index 99% rename from Datatypes/Location.php rename to Stdlib/Base/Location.php index 4f79e3136..38d421a78 100644 --- a/Datatypes/Location.php +++ b/Stdlib/Base/Location.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; /** * Location class. diff --git a/Datatypes/NullLocation.php b/Stdlib/Base/NullLocation.php similarity index 94% rename from Datatypes/NullLocation.php rename to Stdlib/Base/NullLocation.php index 83170c775..060c35d83 100644 --- a/Datatypes/NullLocation.php +++ b/Stdlib/Base/NullLocation.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; /** * Location class. diff --git a/Datatypes/PhoneType.php b/Stdlib/Base/PhoneType.php similarity index 95% rename from Datatypes/PhoneType.php rename to Stdlib/Base/PhoneType.php index 325a39cbf..f099ce37a 100644 --- a/Datatypes/PhoneType.php +++ b/Stdlib/Base/PhoneType.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; /** * Address type enum. diff --git a/Datatypes/SmartDateTime.php b/Stdlib/Base/SmartDateTime.php similarity index 99% rename from Datatypes/SmartDateTime.php rename to Stdlib/Base/SmartDateTime.php index 952ee9914..c10250abf 100644 --- a/Datatypes/SmartDateTime.php +++ b/Stdlib/Base/SmartDateTime.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Datatypes; +namespace phpOMS\Stdlib\Base; use phpOMS\Math\Functions\Functions; diff --git a/Stdlib/Map/KeyType.php b/Stdlib/Map/KeyType.php index 7c79c0b5f..13f304d68 100644 --- a/Stdlib/Map/KeyType.php +++ b/Stdlib/Map/KeyType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Stdlib\Map; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Account type enum. diff --git a/Stdlib/Map/OrderType.php b/Stdlib/Map/OrderType.php index 4d9c8a3f8..1dd55d46f 100644 --- a/Stdlib/Map/OrderType.php +++ b/Stdlib/Map/OrderType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Stdlib\Map; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Account type enum. diff --git a/Stdlib/Queue/PriorityMode.php b/Stdlib/Queue/PriorityMode.php index ae2c37341..977190f08 100644 --- a/Stdlib/Queue/PriorityMode.php +++ b/Stdlib/Queue/PriorityMode.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Stdlib\Queue; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Account type enum. diff --git a/System/File/ContentPutMode.php b/System/File/ContentPutMode.php index 556f2e6a6..1293af244 100644 --- a/System/File/ContentPutMode.php +++ b/System/File/ContentPutMode.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\System\File; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database type enum. diff --git a/System/File/ExtensionType.php b/System/File/ExtensionType.php index 747111a66..0eeb6ce57 100644 --- a/System/File/ExtensionType.php +++ b/System/File/ExtensionType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\System\File; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database type enum. diff --git a/System/MimeType.php b/System/MimeType.php index 9bd46b9a7..1d52aad06 100644 --- a/System/MimeType.php +++ b/System/MimeType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\System; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database type enum. diff --git a/System/SystemType.php b/System/SystemType.php index 12316a7ac..a24a98490 100644 --- a/System/SystemType.php +++ b/System/SystemType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\System; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database type enum. diff --git a/Uri/UriScheme.php b/Uri/UriScheme.php index 59847ebe2..f616af2be 100644 --- a/Uri/UriScheme.php +++ b/Uri/UriScheme.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Uri; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Uri scheme. diff --git a/Utils/Barcode/C128Abstract.php b/Utils/Barcode/C128Abstract.php index a6ae55bed..135f055f1 100644 --- a/Utils/Barcode/C128Abstract.php +++ b/Utils/Barcode/C128Abstract.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Barcode; -use phpOMS\Datatypes\Exception\InvalidEnumValue; +use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; /** * Code 128 abstract class. diff --git a/Utils/Barcode/OrientationType.php b/Utils/Barcode/OrientationType.php index 54d56877c..38bc5ebb1 100644 --- a/Utils/Barcode/OrientationType.php +++ b/Utils/Barcode/OrientationType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Barcode; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Account type enum. diff --git a/Utils/Converter/AngleType.php b/Utils/Converter/AngleType.php index ebada7792..bae297be5 100644 --- a/Utils/Converter/AngleType.php +++ b/Utils/Converter/AngleType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Speed type enum. diff --git a/Utils/Converter/AreaType.php b/Utils/Converter/AreaType.php index 0040c5b88..d499dbb92 100644 --- a/Utils/Converter/AreaType.php +++ b/Utils/Converter/AreaType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Area type enum. diff --git a/Utils/Converter/EnergyPowerType.php b/Utils/Converter/EnergyPowerType.php index 0db241b28..caaa22def 100644 --- a/Utils/Converter/EnergyPowerType.php +++ b/Utils/Converter/EnergyPowerType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Speed type enum. diff --git a/Utils/Converter/FileSizeType.php b/Utils/Converter/FileSizeType.php index 3ad8e7e38..36c68c59e 100644 --- a/Utils/Converter/FileSizeType.php +++ b/Utils/Converter/FileSizeType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * File size type enum. diff --git a/Utils/Converter/LengthType.php b/Utils/Converter/LengthType.php index 6f73acf44..bfda7cd3c 100644 --- a/Utils/Converter/LengthType.php +++ b/Utils/Converter/LengthType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Length type enum. diff --git a/Utils/Converter/PressureType.php b/Utils/Converter/PressureType.php index 3ca879972..9a8e454a7 100644 --- a/Utils/Converter/PressureType.php +++ b/Utils/Converter/PressureType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Speed type enum. diff --git a/Utils/Converter/SpeedType.php b/Utils/Converter/SpeedType.php index ef4aac754..4f7affa01 100644 --- a/Utils/Converter/SpeedType.php +++ b/Utils/Converter/SpeedType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Speed type enum. diff --git a/Utils/Converter/TemperatureType.php b/Utils/Converter/TemperatureType.php index 67ea8c1c7..a79f8d6e7 100644 --- a/Utils/Converter/TemperatureType.php +++ b/Utils/Converter/TemperatureType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Temperature type enum. diff --git a/Utils/Converter/TimeType.php b/Utils/Converter/TimeType.php index c7176ac78..781b01711 100644 --- a/Utils/Converter/TimeType.php +++ b/Utils/Converter/TimeType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Time type enum. diff --git a/Utils/Converter/VolumeType.php b/Utils/Converter/VolumeType.php index 326f214af..76710d790 100644 --- a/Utils/Converter/VolumeType.php +++ b/Utils/Converter/VolumeType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Volume type enum. diff --git a/Utils/Converter/WeightType.php b/Utils/Converter/WeightType.php index e3b3c0b28..b0c3ad8f2 100644 --- a/Utils/Converter/WeightType.php +++ b/Utils/Converter/WeightType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Converter; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Weight type enum. diff --git a/Utils/Parser/Php/ClassType.php b/Utils/Parser/Php/ClassType.php index deabcaeae..439e57a20 100644 --- a/Utils/Parser/Php/ClassType.php +++ b/Utils/Parser/Php/ClassType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Parser\Php; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Database type enum. diff --git a/Utils/Parser/Php/Visibility.php b/Utils/Parser/Php/Visibility.php index f7f63d03d..bb8f9ab18 100644 --- a/Utils/Parser/Php/Visibility.php +++ b/Utils/Parser/Php/Visibility.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\Parser\Php; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Visibility type enum. diff --git a/Utils/RnG/DistributionType.php b/Utils/RnG/DistributionType.php index 525f1ce2a..cc7ff2f5e 100644 --- a/Utils/RnG/DistributionType.php +++ b/Utils/RnG/DistributionType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Utils\RnG; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Distribution type enum. diff --git a/Validation/Finance/IbanEnum.php b/Validation/Finance/IbanEnum.php index 45880592e..bd9bf8de6 100644 --- a/Validation/Finance/IbanEnum.php +++ b/Validation/Finance/IbanEnum.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Validation\Finance; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Iban layout definition. diff --git a/Validation/Finance/IbanErrorType.php b/Validation/Finance/IbanErrorType.php index f728b971a..9d54d9f6a 100644 --- a/Validation/Finance/IbanErrorType.php +++ b/Validation/Finance/IbanErrorType.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Validation\Finance; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * Iban error type enum. diff --git a/Views/ViewLayout.php b/Views/ViewLayout.php index b789740ee..8cd5411ce 100644 --- a/Views/ViewLayout.php +++ b/Views/ViewLayout.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Views; -use phpOMS\Datatypes\Enum; +use phpOMS\Stdlib\Base\Enum; /** * View layout enum. From c3686e3db0fc453a9997789a57d24694dd4ddef5 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 12 Aug 2017 16:50:21 +0200 Subject: [PATCH 047/103] Fixes from test --- Event/EventManager.php | 10 ++++++++-- Localization/L11nManager.php | 5 +++++ Message/Http/Request.php | 1 + Message/RequestAbstract.php | 2 +- Message/RequestSource.php | 1 + Validation/Base/DateTime.php | 2 +- Validation/Finance/BIC.php | 2 +- Validation/Finance/CreditCard.php | 2 +- Validation/Finance/Iban.php | 2 +- Validation/Network/Email.php | 2 +- Validation/Network/Hostname.php | 2 +- Validation/Network/Ip.php | 2 +- 12 files changed, 23 insertions(+), 10 deletions(-) diff --git a/Event/EventManager.php b/Event/EventManager.php index 898b3821c..ecdd60481 100644 --- a/Event/EventManager.php +++ b/Event/EventManager.php @@ -157,19 +157,25 @@ class EventManager * * @param string $group Name of the event * - * @return void + * @return bool * * @since 1.0.0 */ - public function detach(string $group) /* : bool */ + public function detach(string $group) : bool { + $found = false; + if (isset($this->callbacks[$group])) { unset($this->callbacks[$group]); + $found = true; } if (isset($this->groups[$group])) { unset($this->groups[$group]); + $found = true; } + + return $found; } /** diff --git a/Localization/L11nManager.php b/Localization/L11nManager.php index 100646fbb..91590e1a1 100644 --- a/Localization/L11nManager.php +++ b/Localization/L11nManager.php @@ -189,4 +189,9 @@ class L11nManager return $this->language[$code][$module][$translation]; } + + public function getHtml(string $code, string $module, string $theme, string $translation) : string + { + return htmlspecialchars($this->getText($code, $module, $theme, $translation)); + } } diff --git a/Message/Http/Request.php b/Message/Http/Request.php index 084de7896..60badbd4d 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -282,6 +282,7 @@ class Request extends RequestAbstract if (!isset($this->browser)) { $arr = BrowserType::getConstants(); $http_request_type = strtolower($_SERVER['HTTP_USER_AGENT']); + foreach ($arr as $key => $val) { if (stripos($http_request_type, $val)) { $this->browser = $val; diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 70c078137..b3cc27a4b 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -110,7 +110,7 @@ abstract class RequestAbstract implements MessageInterface * @var \phpOMS\Message\RequestSource * @since 1.0.0 */ - private $source = null; + private $source = RequestSource::UNDEFINED; /** * Request hash. diff --git a/Message/RequestSource.php b/Message/RequestSource.php index a65e90d5a..3b30da6df 100644 --- a/Message/RequestSource.php +++ b/Message/RequestSource.php @@ -31,4 +31,5 @@ abstract class RequestSource extends Enum /* public */ const WEB = 0; /* This is a http request */ /* public */ const CONSOLE = 1; /* Request is a console command */ /* public */ const SOCKET = 2; /* Request through socket connection */ + /* public */ const UNDEFINED = 3; /* Request through socket connection */ } diff --git a/Validation/Base/DateTime.php b/Validation/Base/DateTime.php index e7a5ba372..8f0e8cdb8 100644 --- a/Validation/Base/DateTime.php +++ b/Validation/Base/DateTime.php @@ -41,7 +41,7 @@ abstract class DateTime extends ValidatorAbstract /** * {@inheritdoc} */ - public static function isValid($value) : bool + public static function isValid($value, array $constraints = null) : bool { return (bool) strtotime($value); } diff --git a/Validation/Finance/BIC.php b/Validation/Finance/BIC.php index cdf5e91db..5802fa04c 100644 --- a/Validation/Finance/BIC.php +++ b/Validation/Finance/BIC.php @@ -41,7 +41,7 @@ class BIC extends ValidatorAbstract /** * {@inheritdoc} */ - public static function isValid($value) : bool + public static function isValid($value, array $constraints = null) : bool { return (bool) preg_match('/^[a-z]{6}[0-9a-z]{2}([0-9a-z]{3})?\z/i', $value); } diff --git a/Validation/Finance/CreditCard.php b/Validation/Finance/CreditCard.php index 899129672..4ed2c178f 100644 --- a/Validation/Finance/CreditCard.php +++ b/Validation/Finance/CreditCard.php @@ -41,7 +41,7 @@ abstract class CreditCard extends ValidatorAbstract /** * {@inheritdoc} */ - public static function isValid($value) : bool + public static function isValid($value, array $constraints = null) : bool { $value = preg_replace('/\D/', '', $value); diff --git a/Validation/Finance/Iban.php b/Validation/Finance/Iban.php index 3045603b3..9095b3b87 100644 --- a/Validation/Finance/Iban.php +++ b/Validation/Finance/Iban.php @@ -45,7 +45,7 @@ abstract class Iban extends ValidatorAbstract * * @since 1.0.0 */ - public static function isValid($value) : bool + public static function isValid($value, array $constraints = null) : bool { $value = str_replace(' ', '', strtolower($value)); $enumName = 'C_' . strtoupper(substr($value, 0, 2)); diff --git a/Validation/Network/Email.php b/Validation/Network/Email.php index 8f3e506ed..f474ac3e0 100644 --- a/Validation/Network/Email.php +++ b/Validation/Network/Email.php @@ -41,7 +41,7 @@ class Email extends ValidatorAbstract /** * {@inheritdoc} */ - public static function isValid(string $value) : bool + public static function isValid($value, array $constraints = null) : bool { if (filter_var($value, FILTER_VALIDATE_EMAIL) === false) { self::$msg = 'Invalid Email by filter_var standards'; diff --git a/Validation/Network/Hostname.php b/Validation/Network/Hostname.php index 53df28894..5d64b4c3b 100644 --- a/Validation/Network/Hostname.php +++ b/Validation/Network/Hostname.php @@ -41,7 +41,7 @@ abstract class Hostname extends ValidatorAbstract /** * {@inheritdoc} */ - public static function isValid($value) : bool + public static function isValid($value, array $constraints = null) : bool { return filter_var(gethostbyname($value), FILTER_VALIDATE_IP) !== false; } diff --git a/Validation/Network/Ip.php b/Validation/Network/Ip.php index abd1222e5..4a1788b9a 100644 --- a/Validation/Network/Ip.php +++ b/Validation/Network/Ip.php @@ -41,7 +41,7 @@ class Ip extends ValidatorAbstract /** * {@inheritdoc} */ - public static function isValid($value) : bool + public static function isValid($value, array $constraints = null) : bool { return filter_var($value, FILTER_VALIDATE_IP) !== false; } From 94ff6b57e181f986c6f196feb4bb4db0a3c46b6e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 12 Aug 2017 20:48:13 +0200 Subject: [PATCH 048/103] Minor inspection bug fixes --- Dispatcher/Dispatcher.php | 1 + Localization/Money.php | 2 +- Message/Http/Request.php | 6 +++--- Message/RequestAbstract.php | 2 +- Utils/ArrayUtils.php | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Dispatcher/Dispatcher.php b/Dispatcher/Dispatcher.php index 9b24aeec3..1c8cb680a 100644 --- a/Dispatcher/Dispatcher.php +++ b/Dispatcher/Dispatcher.php @@ -178,6 +178,7 @@ class Dispatcher // If module controller use module manager for initialization if(strpos('\Modules\Controller', $controller) === 0) { + $split = explode('\\', $controller); $this->controllers[$controller] = $this->app->moduleManager->get($split[2]); } else { $this->controllers[$controller] = new $controller($this->app); diff --git a/Localization/Money.php b/Localization/Money.php index dddc54c0c..3d805fbe0 100644 --- a/Localization/Money.php +++ b/Localization/Money.php @@ -54,7 +54,7 @@ class Money implements \Serializable /** * Currency symbol position * - * @var string + * @var int * @since 1.0.0 */ private $position = 1; diff --git a/Message/Http/Request.php b/Message/Http/Request.php index 60badbd4d..acac47d42 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -45,14 +45,14 @@ class Request extends RequestAbstract /** * Browser type. * - * @var BrowserType + * @var string * @since 1.0.0 */ private $browser = BrowserType::CHROME; /** * OS type. * - * @var OSType + * @var string * @since 1.0.0 */ private $os = OSType::LINUX; @@ -282,7 +282,7 @@ class Request extends RequestAbstract if (!isset($this->browser)) { $arr = BrowserType::getConstants(); $http_request_type = strtolower($_SERVER['HTTP_USER_AGENT']); - + foreach ($arr as $key => $val) { if (stripos($http_request_type, $val)) { $this->browser = $val; diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index b3cc27a4b..5133b8204 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -110,7 +110,7 @@ abstract class RequestAbstract implements MessageInterface * @var \phpOMS\Message\RequestSource * @since 1.0.0 */ - private $source = RequestSource::UNDEFINED; + protected $source = RequestSource::UNDEFINED; /** * Request hash. diff --git a/Utils/ArrayUtils.php b/Utils/ArrayUtils.php index ec8621772..8c194509f 100644 --- a/Utils/ArrayUtils.php +++ b/Utils/ArrayUtils.php @@ -294,7 +294,7 @@ class ArrayUtils // see collection collapse as alternative?! $flat = []; $stack = array_values($array); - while ($stack) { + while (!empty($stack)) { $value = array_shift($stack); if (is_array($value)) { From 5b992f498abeb4a8c0d87a231d89f21a9d33a114 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 17 Aug 2017 21:56:08 +0200 Subject: [PATCH 049/103] Optimize email draft --- Message/Mail/EmailAbstract.php | 373 ++++++++++++++++++++++++ Message/Mail/Imap.php | 311 +------------------- Message/Mail/{MailType.php => Nntp.php} | 21 +- Message/Mail/OAuth.php | 20 -- Message/Mail/Pop3.php | 25 +- Message/Mail/Smtp.php | 20 -- 6 files changed, 413 insertions(+), 357 deletions(-) create mode 100644 Message/Mail/EmailAbstract.php rename Message/Mail/{MailType.php => Nntp.php} (51%) delete mode 100644 Message/Mail/OAuth.php delete mode 100644 Message/Mail/Smtp.php diff --git a/Message/Mail/EmailAbstract.php b/Message/Mail/EmailAbstract.php new file mode 100644 index 000000000..d5e3df4af --- /dev/null +++ b/Message/Mail/EmailAbstract.php @@ -0,0 +1,373 @@ +host = $host; + $this->port = $port; + $this->timeout = $timeout; + $this->ssl = $ssl; + + imap_timeout(IMAP_OPENTIMEOUT, $timeout); + imap_timeout(IMAP_READTIMEOUT, $timeout); + imap_timeout(IMAP_WRITETIMEOUT, $timeout); + imap_timeout(IMAP_CLOSETIMEOUT, $timeout); + } + + public static function decode($content, $encoding) + { + if ($encoding == 3) { + return imap_base64($content); + } else { + if ($encoding == 1) { + return imap_8bit($content); + } else { + return imap_qprint($content); + } + } + } + + public function __destruct() + { + $this->disconnect(); + } + + public function disconnect() + { + if(!isset($this->con)) { + imap_close($this->con); + $this->con = null; + } + } + + public function connect(string $user = '', string $pass = '') + { + $this->mailbox = substr($this->mailbox, 0, -1) . ($this->ssl ? '/ssl/validate-cert' : '/novalidate-cert') . '}'; + + // /novalidate-cert + if(!isset($this->con)) { + $this->con = imap_open($this->mailbox . 'INBOX', $user, $pass); + } + } + + public function isConnected() : bool + { + return imap_ping($this->con); + } + + /** + * Get boxes. + * + * @param string $pattern Pattern for boxes + * + * @return array + * + * @since 1.0.0 + */ + public function getBoxes(string $pattern = '*') : array + { + return imap_list($this->con, $this->host, $pattern); + } + + /** + * Get inbox quota. + * + * @return mixed + * + * @since 1.0.0 + */ + public function getQuota() + { + return imap_get_quotaroot($this->con, "INBOX"); + } + + /** + * Get email. + * + * @param mixed $id mail id + * + * @return Mail + * + * @since 1.0.0 + */ + public function getEmail($id) : Mail + { + $mail = new Mail($id); + $mail->setOverview(imap_fetch_overview($this->con, $id)); + $mail->setBody(imap_fetchbody($this->con, $id, 2)); + $mail->setEncoding(imap_fetchstructure($this->con, $id)); + + return $mail; + } + + /** + * Get all inbox messages. + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxAll() : array + { + return $this->getInboxOverview('ALL'); + } + + /** + * Get inbox overview. + * + * @param string $option Inbox option (imap_search creterias) + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxOverview(string $option = 'ALL') : array + { + $ids = imap_search($this->con, $option, SE_FREE, 'UTF-8'); + + return is_array($ids) ? imap_fetch_overview($this->con, implode(',', $ids)) : []; + } + + /** + * Get all new inbox messages. + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxNew() : array + { + return $this->getInboxOverview('NEW'); + } + + /** + * Get all inbox messages from a person. + * + * @param string $from Messages from + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxFrom(string $from) : array + { + return $this->getInboxOverview('FROM "' . $from . '"'); + } + + /** + * Get all inbox messages to a person. + * + * @param string $to Messages to + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxTo(string $to) : array + { + return $this->getInboxOverview('TO "' . $to . '"'); + } + + /** + * Get all inbox messages cc a person. + * + * @param string $cc Messages cc + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxCc(string $cc) : array + { + return $this->getInboxOverview('CC "' . $cc . '"'); + } + + /** + * Get all inbox messages bcc a person. + * + * @param string $bcc Messages bcc + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxBcc(string $bcc) : array + { + return $this->getInboxOverview('BCC "' . $bcc . '"'); + } + + /** + * Get all answered inbox messages. + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxAnswered() : array + { + return $this->getInboxOverview('ANSWERED'); + } + + /** + * Get all inbox messages with a certain subject. + * + * @param string $subject Subject + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxSubject(string $subject) : array + { + return $this->getInboxOverview('SUBJECT "' . $subject . '"'); + } + + /** + * Get all inbox messages from a certain date onwards. + * + * @param \DateTime $since Messages since + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxSince(\DateTime $since) : array + { + return $this->getInboxOverview('SINCE "' . $since->format('d-M-Y') . '"'); + } + + /** + * Get all unseen inbox messages. + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxUnseen() : array + { + return $this->getInboxOverview('UNSEEN'); + } + + /** + * Get all seen inbox messages. + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxSeen() : array + { + return $this->getInboxOverview('SEEN'); + } + + /** + * Get all deleted inbox messages. + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxDeleted() : array + { + return $this->getInboxOverview('DELETED'); + } + + /** + * Get all inbox messages with text. + * + * @param string $text Text in message body + * + * @return array + * + * @since 1.0.0 + */ + public function getInboxText(string $text) : array + { + return $this->getInboxOverview('TEXT "' . $text . '"'); + } + + public function listMailbox() : array + { + return imap_listmailbox($this->con, $this->mailbox, '*'); + } + + public function createMailbox(string $mailbox) : bool + { + return imap_createmailbox($this->con, $mailbox); + } + + public function renameMailbox(string $old, string $new) : bool + { + return imap_renamemailbox($this->con, $old, $new); + } + + public function deleteMailbox(string $mailbox) : bool + { + return imap_deletemailbox($this->con, $mailbox); + } + + public function deleteMessage(int $id) : bool + { + return imap_delete($this->con, $id); + } + + public function deleteMarkedMessages() : bool + { + return imap_expunge($this->con); + } + + public function getMessageOverview(int $length = 0, int $start = 1) : array + { + if($length === 0) { + $info = imap_check($this->con); + $length = $info->Nmsgs; + } + + return imap_fetch_overview($mbox, $start . ':' . ($length + $start), 0); + } + + public function countMessages() : int + { + return imap_num_msg($this->con); + } + + public function getMessageHeader(int $id) : string + { + return imap_fetchheader($this->con, $id); + } +} \ No newline at end of file diff --git a/Message/Mail/Imap.php b/Message/Mail/Imap.php index c8f433127..b5f26e27a 100644 --- a/Message/Mail/Imap.php +++ b/Message/Mail/Imap.php @@ -24,315 +24,16 @@ namespace phpOMS\Message\Mail; * @link http://orange-management.com * @since 1.0.0 */ -class Imap extends Mail +class Imap extends EmailAbstract { - /** - * Mail inbox. - * - * @var resource - * @since 1.0.0 - */ - private $inbox = null; - - /** - * Host. - * - * @var string - * @since 1.0.0 - */ - private $host = ''; - - /** - * User. - * - * @var string - * @since 1.0.0 - */ - private $user = ''; - - /** - * Constructor. - * - * @since 1.0.0 - */ - public function __construct() + public function __construct(string $host = 'localhost', int $port = 25, int $timeout = 30, bool $ssl = false) { - parent::__construct(MailType::IMAP); + parent::__construct($host, $port, $timeout, $options); } - public static function decode($content, $encoding) + public function connect(string $user = '', string $pass = '') { - if ($encoding == 3) { - return imap_base64($content); - } else { - if ($encoding == 1) { - return imap_8bit($content); - } else { - return imap_qprint($content); - } - } - } - - /** - * Destructor. - * - * @since 1.0.0 - */ - public function __destruct() - { - if (isset($this->inbox)) { - imap_close($this->inbox); - } - } - - /** - * Connect to inbox. - * - * @param string $host Host - * @param string $user User - * @param string $password Password - * - * @return bool - * - * @since 1.0.0 - */ - public function connect($host, $user, $password) - { - $this->host = $host; - $this->user = $user; - $this->inbox = imap_open($host, $user, $password); - - return !($this->inbox === false); - } - - /** - * Get boxes. - * - * @param string $pattern Pattern for boxes - * - * @return array - * - * @since 1.0.0 - */ - public function getBoxes(string $pattern = '*') : array - { - return imap_list($this->inbox, $this->host, $pattern); - } - - /** - * Get inbox quota. - * - * @return mixed - * - * @since 1.0.0 - */ - public function getQuota() - { - return imap_get_quotaroot($this->inbox, "INBOX"); - } - - /** - * Get email. - * - * @param mixed $id mail id - * - * @return Mail - * - * @since 1.0.0 - */ - public function getEmail($id) : Mail - { - $mail = new Mail($id); - $mail->setOverview(imap_fetch_overview($this->inbox, $id)); - $mail->setBody(imap_fetchbody($this->inbox, $id, 2)); - $mail->setEncoding(imap_fetchstructure($this->inbox, $id)); - - return $mail; - } - - /** - * Get all inbox messages. - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxAll() : array - { - return $this->getInboxOverview('ALL'); - } - - /** - * Get inbox overview. - * - * @param string $option Inbox option (imap_search creterias) - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxOverview(string $option = 'ALL') : array - { - $ids = imap_search($this->inbox, $option, SE_FREE, 'UTF-8'); - - return is_array($ids) ? imap_fetch_overview($this->inbox, implode(',', $ids)) : []; - } - - /** - * Get all new inbox messages. - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxNew() : array - { - return $this->getInboxOverview('NEW'); - } - - /** - * Get all inbox messages from a person. - * - * @param string $from Messages from - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxFrom(string $from) : array - { - return $this->getInboxOverview('FROM "' . $from . '"'); - } - - /** - * Get all inbox messages to a person. - * - * @param string $to Messages to - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxTo(string $to) : array - { - return $this->getInboxOverview('TO "' . $to . '"'); - } - - /** - * Get all inbox messages cc a person. - * - * @param string $cc Messages cc - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxCc(string $cc) : array - { - return $this->getInboxOverview('CC "' . $cc . '"'); - } - - /** - * Get all inbox messages bcc a person. - * - * @param string $bcc Messages bcc - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxBcc(string $bcc) : array - { - return $this->getInboxOverview('BCC "' . $bcc . '"'); - } - - /** - * Get all answered inbox messages. - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxAnswered() : array - { - return $this->getInboxOverview('ANSWERED'); - } - - /** - * Get all inbox messages with a certain subject. - * - * @param string $subject Subject - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxSubject(string $subject) : array - { - return $this->getInboxOverview('SUBJECT "' . $subject . '"'); - } - - /** - * Get all inbox messages from a certain date onwards. - * - * @param \DateTime $since Messages since - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxSince(\DateTime $since) : array - { - return $this->getInboxOverview('SINCE "' . $since->format('d-M-Y') . '"'); - } - - /** - * Get all unseen inbox messages. - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxUnseen() : array - { - return $this->getInboxOverview('UNSEEN'); - } - - /** - * Get all seen inbox messages. - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxSeen() : array - { - return $this->getInboxOverview('SEEN'); - } - - /** - * Get all deleted inbox messages. - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxDeleted() : array - { - return $this->getInboxOverview('DELETED'); - } - - /** - * Get all inbox messages with text. - * - * @param string $text Text in message body - * - * @return array - * - * @since 1.0.0 - */ - public function getInboxText(string $text) : array - { - return $this->getInboxOverview('TEXT "' . $text . '"'); + $this->mailbox = '{' . $this->host . ':' . $this->port . '/imap}'; + parent::connect(); } } diff --git a/Message/Mail/MailType.php b/Message/Mail/Nntp.php similarity index 51% rename from Message/Mail/MailType.php rename to Message/Mail/Nntp.php index a4fe5ac31..1428235a7 100644 --- a/Message/Mail/MailType.php +++ b/Message/Mail/Nntp.php @@ -15,10 +15,8 @@ declare(strict_types=1); namespace phpOMS\Message\Mail; -use phpOMS\Stdlib\Base\Enum; - /** - * Mail type. + * Imap mail class. * * @category Framework * @package phpOMS\Message\Mail @@ -26,11 +24,16 @@ use phpOMS\Stdlib\Base\Enum; * @link http://orange-management.com * @since 1.0.0 */ -abstract class MailType extends Enum +class Nntp extends EmailAbstract { - /* public */ const MAIL = 0; - /* public */ const SMTP = 1; - /* public */ const IMAP = 2; - /* public */ const POP3 = 3; - /* public */ const SENDMAIL = 4; + public function __construct(string $host = 'localhost', int $port = 25, int $timeout = 30, bool $ssl = false) + { + parent::__construct($host, $port, $timeout, $options); + } + + public function connect(string $user = '', string $pass = '') + { + $this->mailbox = '{' . $this->host . ':' . $this->port . '/nntp' . '}'; + parent::connect(); + } } diff --git a/Message/Mail/OAuth.php b/Message/Mail/OAuth.php deleted file mode 100644 index 3ea7018f0..000000000 --- a/Message/Mail/OAuth.php +++ /dev/null @@ -1,20 +0,0 @@ -mailbox = '{' . $this->host . ':' . $this->port . '/pop3' . '}'; + parent::connect(); + } +} diff --git a/Message/Mail/Smtp.php b/Message/Mail/Smtp.php deleted file mode 100644 index 9e958819d..000000000 --- a/Message/Mail/Smtp.php +++ /dev/null @@ -1,20 +0,0 @@ - Date: Fri, 18 Aug 2017 16:45:01 +0200 Subject: [PATCH 050/103] Add docblocks --- Message/Mail/EmailAbstract.php | 158 ++++++++++++++++++++++++++++++++- Message/Mail/Imap.php | 24 ++++- Message/Mail/Mail.php | 13 --- Message/Mail/Nntp.php | 24 ++++- Message/Mail/Pop3.php | 24 ++++- 5 files changed, 221 insertions(+), 22 deletions(-) diff --git a/Message/Mail/EmailAbstract.php b/Message/Mail/EmailAbstract.php index d5e3df4af..8fe899e90 100644 --- a/Message/Mail/EmailAbstract.php +++ b/Message/Mail/EmailAbstract.php @@ -26,16 +26,56 @@ namespace phpOMS\Message\Mail; */ class MailAbstract { + /** + * Host. + * + * @var string + * @since 1.0.0 + */ private $host = ''; + /** + * Port. + * + * @var int + * @since 1.0.0 + */ private $port = 25; + /** + * Use ssl. + * + * @var bool + * @since 1.0.0 + */ private $ssl = false; + /** + * Mailbox base. + * + * @var string + * @since 1.0.0 + */ private $mailbox = ''; + /** + * Timeout. + * + * @var int + * @since 1.0.0 + */ private $timeout = 30; + /** + * Construct + * + * @param string $host Host + * @param int $port Host port + * @param int $timeout Timeout + * @param bool $ssl Use ssl + * + * @since 1.0.0 + */ public function __construct(string $host = 'localhost', int $port = 25, int $timeout = 30, bool $ssl = false) { $this->host = $host; @@ -49,7 +89,15 @@ class MailAbstract imap_timeout(IMAP_CLOSETIMEOUT, $timeout); } - public static function decode($content, $encoding) + /** + * Decode + * + * @param string $host Content to decode + * @param int $encoding Encoding type + * + * @since 1.0.0 + */ + public static function decode(string $content, int $encoding) { if ($encoding == 3) { return imap_base64($content); @@ -62,11 +110,21 @@ class MailAbstract } } + /** + * Descrutor + * + * @since 1.0.0 + */ public function __destruct() { $this->disconnect(); } + /** + * Disconnect server + * + * @since 1.0.0 + */ public function disconnect() { if(!isset($this->con)) { @@ -75,7 +133,17 @@ class MailAbstract } } - public function connect(string $user = '', string $pass = '') + /** + * Connect to server + * + * @param string $user Username + * @param string $pass Password + * + * @return void + * + * @since 1.0.0 + */ + public function connect(string $user = '', string $pass = '') /* : void */ { $this->mailbox = substr($this->mailbox, 0, -1) . ($this->ssl ? '/ssl/validate-cert' : '/novalidate-cert') . '}'; @@ -85,6 +153,13 @@ class MailAbstract } } + /** + * Test connection + * + * @return bool + * + * @since 1.0.0 + */ public function isConnected() : bool { return imap_ping($this->con); @@ -321,36 +396,97 @@ class MailAbstract return $this->getInboxOverview('TEXT "' . $text . '"'); } + /** + * List mailboxes + * + * @return array + * + * @since 1.0.0 + */ public function listMailbox() : array { return imap_listmailbox($this->con, $this->mailbox, '*'); } + /** + * Create mailbox + * + * @param string $mailbox Mailbox to create + * + * @return bool + * + * @since 1.0.0 + */ public function createMailbox(string $mailbox) : bool { return imap_createmailbox($this->con, $mailbox); } + /** + * Rename mailbox + * + * @param string $old Old mailbox name + * @param string $new New mailbox name + * + * @return bool + * + * @since 1.0.0 + */ public function renameMailbox(string $old, string $new) : bool { return imap_renamemailbox($this->con, $old, $new); } + /** + * Delete mailbox + * + * @param string $mailbox Mailbox to delete + * + * @return bool + * + * @since 1.0.0 + */ public function deleteMailbox(string $mailbox) : bool { return imap_deletemailbox($this->con, $mailbox); } + /** + * Check message to delete + * + * @param int $id Message id + * + * @return bool + * + * @since 1.0.0 + */ public function deleteMessage(int $id) : bool { return imap_delete($this->con, $id); } + /** + * Delete all marked messages + * + * @return bool + * + * @since 1.0.0 + */ public function deleteMarkedMessages() : bool { return imap_expunge($this->con); } + /** + * Check message to delete + * + * @param int $length Amount of message overview + * @param int $start Start index of the overview for pagination + * + * @return array + * + * @since 1.0.0 + */ public function getMessageOverview(int $length = 0, int $start = 1) : array { if($length === 0) { @@ -361,13 +497,29 @@ class MailAbstract return imap_fetch_overview($mbox, $start . ':' . ($length + $start), 0); } + /** + * Count messages + * + * @return int + * + * @since 1.0.0 + */ public function countMessages() : int { return imap_num_msg($this->con); } + /** + * Get message header + * + * @param int $id Message id + * + * @return string + * + * @since 1.0.0 + */ public function getMessageHeader(int $id) : string { return imap_fetchheader($this->con, $id); } -} \ No newline at end of file +} diff --git a/Message/Mail/Imap.php b/Message/Mail/Imap.php index b5f26e27a..4e19db672 100644 --- a/Message/Mail/Imap.php +++ b/Message/Mail/Imap.php @@ -26,12 +26,32 @@ namespace phpOMS\Message\Mail; */ class Imap extends EmailAbstract { + /** + * Construct + * + * @param string $host Host + * @param int $port Host port + * @param int $timeout Timeout + * @param bool $ssl Use ssl + * + * @since 1.0.0 + */ public function __construct(string $host = 'localhost', int $port = 25, int $timeout = 30, bool $ssl = false) { - parent::__construct($host, $port, $timeout, $options); + parent::__construct($host, $port, $timeout, $ssl); } - public function connect(string $user = '', string $pass = '') + /** + * Connect to server + * + * @param string $user Username + * @param string $pass Password + * + * @return void + * + * @since 1.0.0 + */ + public function connect(string $user = '', string $pass = '') /* : void */ { $this->mailbox = '{' . $this->host . ':' . $this->port . '/imap}'; parent::connect(); diff --git a/Message/Mail/Mail.php b/Message/Mail/Mail.php index f8fbbc88f..bc52fb4c5 100644 --- a/Message/Mail/Mail.php +++ b/Message/Mail/Mail.php @@ -138,14 +138,6 @@ class Mail */ protected $encoding = 0; - /** - * Mail type. - * - * @var int - * @since 1.0.0 - */ - protected $type = MailType::MAIL; - /** * Mail host name. * @@ -178,11 +170,6 @@ class Mail */ protected $messageDate = null; - /** - * todo: ??? - */ - protected $mailer = null; - /** * Constructor. * diff --git a/Message/Mail/Nntp.php b/Message/Mail/Nntp.php index 1428235a7..a0a905d23 100644 --- a/Message/Mail/Nntp.php +++ b/Message/Mail/Nntp.php @@ -26,12 +26,32 @@ namespace phpOMS\Message\Mail; */ class Nntp extends EmailAbstract { + /** + * Construct + * + * @param string $host Host + * @param int $port Host port + * @param int $timeout Timeout + * @param bool $ssl Use ssl + * + * @since 1.0.0 + */ public function __construct(string $host = 'localhost', int $port = 25, int $timeout = 30, bool $ssl = false) { - parent::__construct($host, $port, $timeout, $options); + parent::__construct($host, $port, $timeout, $ssl); } - public function connect(string $user = '', string $pass = '') + /** + * Connect to server + * + * @param string $user Username + * @param string $pass Password + * + * @return void + * + * @since 1.0.0 + */ + public function connect(string $user = '', string $pass = '') /* : void */ { $this->mailbox = '{' . $this->host . ':' . $this->port . '/nntp' . '}'; parent::connect(); diff --git a/Message/Mail/Pop3.php b/Message/Mail/Pop3.php index 9c97886ca..38830a32d 100644 --- a/Message/Mail/Pop3.php +++ b/Message/Mail/Pop3.php @@ -26,12 +26,32 @@ namespace phpOMS\Message\Mail; */ class Pop3 extends EmailAbstract { + /** + * Construct + * + * @param string $host Host + * @param int $port Host port + * @param int $timeout Timeout + * @param bool $ssl Use ssl + * + * @since 1.0.0 + */ public function __construct(string $host = 'localhost', int $port = 25, int $timeout = 30, bool $ssl = false) { - parent::__construct($host, $port, $timeout, $options); + parent::__construct($host, $port, $timeout, $ssl); } - public function connect(string $user = '', string $pass = '') + /** + * Connect to server + * + * @param string $user Username + * @param string $pass Password + * + * @return void + * + * @since 1.0.0 + */ + public function connect(string $user = '', string $pass = '') /* : void */ { $this->mailbox = '{' . $this->host . ':' . $this->port . '/pop3' . '}'; parent::connect(); From 0787b0073655a4063bf3ae164f184fdabc8471fd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 18 Aug 2017 21:11:50 +0200 Subject: [PATCH 051/103] Added docblocks --- Math/Finance/Lorenzkurve.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Math/Finance/Lorenzkurve.php b/Math/Finance/Lorenzkurve.php index f30663a2c..ed04d5e9b 100644 --- a/Math/Finance/Lorenzkurve.php +++ b/Math/Finance/Lorenzkurve.php @@ -26,7 +26,16 @@ namespace phpOMS\Math\Finance; */ class Lorenzkurve { - public static function getGiniCoefficient(array $data) + /** + * Calculate Gini coefficient + * + * @param array $data Datapoints (can be unsorted) + * + * @return float + * + * @since 1.0.0 + */ + public static function getGiniCoefficient(array $data) : float { $sum1 = 0; $sum2 = 0; @@ -36,9 +45,9 @@ class Lorenzkurve sort($data); foreach ($data as $key => $value) { - $sum1 += $i * $value; - $sum2 += $value; - $i++; + $sum1 += $i * $value; + $sum2 += $value; + $i++; } return 2 * $sum1 / ($n * $sum2) - ($n + 1) / $n; From d4eea68b119cebf1401502bdfb1c0931e868029c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 18 Aug 2017 21:12:04 +0200 Subject: [PATCH 052/103] Added metrics --- Business/Marketing/Metrics.php | 43 ++++++++++++++++++++++++++++++++ Business/Programming/Metrics.php | 43 ++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 Business/Marketing/Metrics.php create mode 100644 Business/Programming/Metrics.php diff --git a/Business/Marketing/Metrics.php b/Business/Marketing/Metrics.php new file mode 100644 index 000000000..41f7872ae --- /dev/null +++ b/Business/Marketing/Metrics.php @@ -0,0 +1,43 @@ + Date: Sun, 20 Aug 2017 19:25:40 +0200 Subject: [PATCH 053/103] Move finance to business --- {Math => Business}/Finance/Depreciation.php | 2 +- .../Finance/FinanceFormulas.php | 2 +- {Math => Business}/Finance/Forecasting/AR.php | 2 +- .../Finance/Forecasting/ARCH.php | 2 +- .../Finance/Forecasting/ARFIMA.php | 2 +- .../Finance/Forecasting/ARIMA.php | 2 +- .../Finance/Forecasting/ARMA.php | 2 +- .../Forecasting/ClassicalDecomposition.php | 2 +- .../ExponentialSmoothing.php | 622 ++++++++++++++++++ .../ExponentialSmoothing/SeasonalType.php | 2 +- .../ExponentialSmoothing/TrendType.php | 2 +- .../Finance/Forecasting/GARCH.php | 2 +- {Math => Business}/Finance/Forecasting/MA.php | 2 +- .../Finance/Forecasting/NAR.php | 2 +- .../Finance/Forecasting/NMA.php | 2 +- .../Finance/Forecasting/SARIMA.php | 2 +- .../Finance/Forecasting/SmoothingType.php | 2 +- {Math => Business}/Finance/Loan.php | 2 +- {Math => Business}/Finance/Lorenzkurve.php | 2 +- {Math => Business}/Finance/StockBonds.php | 2 +- .../ExponentialSmoothing.php | 4 +- 21 files changed, 643 insertions(+), 21 deletions(-) rename {Math => Business}/Finance/Depreciation.php (88%) rename {Math => Business}/Finance/FinanceFormulas.php (99%) rename {Math => Business}/Finance/Forecasting/AR.php (84%) rename {Math => Business}/Finance/Forecasting/ARCH.php (84%) rename {Math => Business}/Finance/Forecasting/ARFIMA.php (84%) rename {Math => Business}/Finance/Forecasting/ARIMA.php (99%) rename {Math => Business}/Finance/Forecasting/ARMA.php (84%) rename {Math => Business}/Finance/Forecasting/ClassicalDecomposition.php (99%) create mode 100644 Business/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php rename {Math => Business}/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php (90%) rename {Math => Business}/Finance/Forecasting/ExponentialSmoothing/TrendType.php (90%) rename {Math => Business}/Finance/Forecasting/GARCH.php (84%) rename {Math => Business}/Finance/Forecasting/MA.php (84%) rename {Math => Business}/Finance/Forecasting/NAR.php (84%) rename {Math => Business}/Finance/Forecasting/NMA.php (84%) rename {Math => Business}/Finance/Forecasting/SARIMA.php (84%) rename {Math => Business}/Finance/Forecasting/SmoothingType.php (92%) rename {Math => Business}/Finance/Loan.php (98%) rename {Math => Business}/Finance/Lorenzkurve.php (96%) rename {Math => Business}/Finance/StockBonds.php (99%) diff --git a/Math/Finance/Depreciation.php b/Business/Finance/Depreciation.php similarity index 88% rename from Math/Finance/Depreciation.php rename to Business/Finance/Depreciation.php index 9bbddd77a..cc0fd25b3 100644 --- a/Math/Finance/Depreciation.php +++ b/Business/Finance/Depreciation.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance; +namespace phpOMS\Business\Finance; class Depreciation { diff --git a/Math/Finance/FinanceFormulas.php b/Business/Finance/FinanceFormulas.php similarity index 99% rename from Math/Finance/FinanceFormulas.php rename to Business/Finance/FinanceFormulas.php index 543686261..066192afa 100644 --- a/Math/Finance/FinanceFormulas.php +++ b/Business/Finance/FinanceFormulas.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance; +namespace phpOMS\Business\Finance; use phpOMS\Math\Statistic\Average; use phpOMS\Math\Matrix\Exception\InvalidDimensionException; diff --git a/Math/Finance/Forecasting/AR.php b/Business/Finance/Forecasting/AR.php similarity index 84% rename from Math/Finance/Forecasting/AR.php rename to Business/Finance/Forecasting/AR.php index 2e640d215..33a693b69 100644 --- a/Math/Finance/Forecasting/AR.php +++ b/Business/Finance/Forecasting/AR.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class AR { diff --git a/Math/Finance/Forecasting/ARCH.php b/Business/Finance/Forecasting/ARCH.php similarity index 84% rename from Math/Finance/Forecasting/ARCH.php rename to Business/Finance/Forecasting/ARCH.php index 9b5a34a29..4c9edf6f6 100644 --- a/Math/Finance/Forecasting/ARCH.php +++ b/Business/Finance/Forecasting/ARCH.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class ARCH { diff --git a/Math/Finance/Forecasting/ARFIMA.php b/Business/Finance/Forecasting/ARFIMA.php similarity index 84% rename from Math/Finance/Forecasting/ARFIMA.php rename to Business/Finance/Forecasting/ARFIMA.php index b7bb8e2b9..0b674419e 100644 --- a/Math/Finance/Forecasting/ARFIMA.php +++ b/Business/Finance/Forecasting/ARFIMA.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class ARFIMA { diff --git a/Math/Finance/Forecasting/ARIMA.php b/Business/Finance/Forecasting/ARIMA.php similarity index 99% rename from Math/Finance/Forecasting/ARIMA.php rename to Business/Finance/Forecasting/ARIMA.php index 4b92084dd..06155e65e 100644 --- a/Math/Finance/Forecasting/ARIMA.php +++ b/Business/Finance/Forecasting/ARIMA.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; use phpOMS\Math\Statistic\Average; diff --git a/Math/Finance/Forecasting/ARMA.php b/Business/Finance/Forecasting/ARMA.php similarity index 84% rename from Math/Finance/Forecasting/ARMA.php rename to Business/Finance/Forecasting/ARMA.php index ad09b52e1..69c6d0b5b 100644 --- a/Math/Finance/Forecasting/ARMA.php +++ b/Business/Finance/Forecasting/ARMA.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class ARMA { diff --git a/Math/Finance/Forecasting/ClassicalDecomposition.php b/Business/Finance/Forecasting/ClassicalDecomposition.php similarity index 99% rename from Math/Finance/Forecasting/ClassicalDecomposition.php rename to Business/Finance/Forecasting/ClassicalDecomposition.php index bcbc21a35..b45aaa8c9 100644 --- a/Math/Finance/Forecasting/ClassicalDecomposition.php +++ b/Business/Finance/Forecasting/ClassicalDecomposition.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance\Forecasting; +namespace phpOMS\Business\Finance\Forecasting; use phpOMS\Math\Statistic\Average; diff --git a/Business/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php b/Business/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php new file mode 100644 index 000000000..e44c60955 --- /dev/null +++ b/Business/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php @@ -0,0 +1,622 @@ +data = $data; + } + + public function getRMSE() : float + { + return $this->rmse; + } + + public function getMSE() : float + { + return $this->mse; + } + + public function getMAE() : float + { + return $this->mae; + } + + public function getSSE() : float + { + return $this->sse; + } + + public function getErrors() : array + { + return $this->errors; + } + + public function getForecast(int $future, int $trendType = TrendType::NONE, int $seasonalType = SeasonalType::NONE, int $cycle = 12, float $damping = 1) : array + { + $this->rmse = PHP_INT_MAX; + + if($trendType === TrendType::ALL || $seasonalType === SeasonalType::ALL) { + $trends = [$trendType]; + if($trendType === TrendType::ALL) { + $trends = [TrendType::NONE, TrendType::ADDITIVE, TrendType::MULTIPLICATIVE]; + } + + $seasonals = [$seasonalType]; + if($seasonalType === SeasonalType::ALL) { + $seasonals = [SeasonalType::NONE, SeasonalType::ADDITIVE, SeasonalType::MULTIPLICATIVE]; + } + + $forecast = []; + $bestError = PHP_INT_MAX; + foreach($trends as $trend) { + foreach($seasonals as $seasonal) { + $tempForecast = $this->getForecast($future, $trend, $seasonal, $cycle, $damping); + + if ($this->rmse < $bestError) { + $bestError = $this->rmse; + $forecast = $tempForecast; + } + } + } + + return $forecast; + } elseif($trendType === TrendType::NONE && $seasonalType === SeasonalType::NONE) { + return $this->getNoneNone($future); + } elseif($trendType === TrendType::NONE && $seasonalType === SeasonalType::ADDITIVE) { + return $this->getNoneAdditive($future, $cycle); + } elseif($trendType === TrendType::NONE && $seasonalType === SeasonalType::MULTIPLICATIVE) { + return $this->getNoneMultiplicative($future, $cycle); + } elseif($trendType === TrendType::ADDITIVE && $seasonalType === SeasonalType::NONE) { + return $this->getAdditiveNone($future, $damping); + } elseif($trendType === TrendType::ADDITIVE && $seasonalType === SeasonalType::ADDITIVE) { + return $this->getAdditiveAdditive($future, $cycle, $damping); + } elseif($trendType === TrendType::ADDITIVE && $seasonalType === SeasonalType::MULTIPLICATIVE) { + return $this->getAdditiveMultiplicative($future, $cycle, $damping); + } elseif($trendType === TrendType::MULTIPLICATIVE && $seasonalType === SeasonalType::NONE) { + return $this->getMultiplicativeNone($future, $damping); + } elseif($trendType === TrendType::MULTIPLICATIVE && $seasonalType === SeasonalType::ADDITIVE) { + return $this->getMultiplicativeAdditive($future, $cycle, $damping); + } elseif($trendType === TrendType::MULTIPLICATIVE && $seasonalType === SeasonalType::MULTIPLICATIVE) { + return $this->getMultiplicativeMultiplicative($future, $cycle, $damping); + } + + throw new \Exception(); + } + + private function dampingSum(float $damping, int $length) : float + { + if(abs($damping - 1) < 0.001) { + return $length; + } + + $sum = 0; + for($i = 0; $i < $length; $i++) { + $sum += pow($damping, $i); + } + + return $sum; + } + + public function getNoneNone(int $future) : array + { + $level = [$this->data[0]]; + $dataLength = count($this->data) + $future; + $forecast = []; + + $alpha = 0.00; + while ($alpha < 1) { + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $level[$i] = $alpha * ($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) + (1 - $alpha) * $level[$i-1]; + + $tempForecast[$i] = $level[$i]; + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + + public function getNoneAdditive(int $future, int $cycle) : array + { + $level = [$this->data[0]]; + $dataLength = count($this->data) + $future; + $forecast = []; + $seasonal = []; + + for($i = 1; $i < $cycle+1; $i++) { + $seasonal[$i] = $this->data[$i-1] - $level[0]; + } + + $alpha = 0.00; + while ($alpha < 1) { + $gamma = 0.00; + + while($gamma < 1) { + $gamma_ = $gamma * (1 - $alpha); + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $hm = (int) floor(($i-1) % $cycle) + 1; + + $level[$i] = $alpha * (($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) - $seasonal[$i]) + (1 - $alpha) * $level[$i-1]; + $seasonal[$i+$cycle] = $gamma_*(($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) - $level[$i-1]) + (1 - $gamma_) * $seasonal[$i]; + + $tempForecast[$i] = $level[$i] + $seasonal[$i+$hm]; + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $gamma += 0.01; + } + + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + + public function getNoneMultiplicative(int $future, int $cycle) : array + { + $level = [$this->data[0]]; + $dataLength = count($this->data) + $future; + $forecast = []; + $seasonal = []; + + for($i = 1; $i < $cycle+1; $i++) { + $seasonal[$i] = $this->data[$i] / $level[0]; + } + + $alpha = 0.00; + while ($alpha < 1) { + $gamma = 0.00; + + while($gamma < 1) { + $gamma_ = $gamma * (1 - $alpha); + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $hm = (int) floor(($i-1) % $cycle) + 1; + + $level[$i] = $alpha * (($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) / $seasonal[$i]) + (1 - $alpha) * $level[$i-1]; + $seasonal[$i+$cycle] = $gamma_*(($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) / $level[$i-1]) + (1 - $gamma_) * $seasonal[$i]; + + $tempForecast[$i] = $level[$i] + $seasonal[$i+$hm]; + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $gamma += 0.01; + } + + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + + public function getAdditiveNone(int $future, float $damping) : array + { + $level = [$this->data[0]]; + $trend = [$this->data[1] - $this->data[0]]; + $dataLength = count($this->data) + $future; + $forecast = []; + + $alpha = 0.00; + while ($alpha < 1) { + $beta = 0.00; + + while($beta < 1) { + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $level[$i] = $alpha * ($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) + (1 - $alpha) * ($level[$i-1] + $damping * $trend[$i-1]); + $trend[$i] = $beta * ($level[$i] - $level[$i-1]) + (1 - $beta) * $damping * $trend[$i-1]; + + $tempForecast[$i] = $level[$i] + $this->dampingSum($damping, $i) * $trend[$i]; + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $beta += 0.01; + } + + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + + public function getAdditiveAdditive(int $future, int $cycle, float $damping) : array + { + $level = [1 / $cycle * array_sum(array_slice($this->data, 0, $cycle))]; + $trend = [1 / $cycle]; + $dataLength = count($this->data) + $future; + $forecast = []; + $seasonal = []; + + $sum = 0; + for($i = 1; $i < $cycle+1; $i++) { + $sum += ($this->data[$cycle] - $this->data[$i]) / $cycle; + } + + $trend[0] *= $sum; + + for($i = 1; $i < $cycle+1; $i++) { + $seasonal[$i] = $this->data[$i-1] - $level[0]; + } + + $alpha = 0.00; + while ($alpha < 1) { + $beta = 0.00; + + while($beta < 1) { + $gamma = 0.00; + + while($gamma < 1) { + $gamma_ = $gamma * (1 - $alpha); + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $hm = (int) floor(($i-1) % $cycle) + 1; + + $level[$i] = $alpha * (($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) - $seasonal[$i]) + (1 - $alpha) * ($level[$i-1] + $damping * $trend[$i-1]); + $trend[$i] = $beta * ($level[$i] - $level[$i-1]) + (1 - $beta) * $damping * $trend[$i-1]; + $seasonal[$i+$cycle] = $gamma_*(($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) - $level[$i-1]) + (1 - $gamma_) * $seasonal[$i]; + + $tempForecast[$i] = $level[$i] + $this->dampingSum($damping, $i) * $trend[$i] + $seasonal[$i+$hm]; + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $gamma += 0.01; + } + + $beta += 0.01; + } + + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + + public function getAdditiveMultiplicative(int $future, int $cycle, float $damping) : array + { + $level = [1 / $cycle * array_sum(array_slice($this->data, 0, $cycle))]; + $trend = [1 / $cycle]; + $dataLength = count($this->data) + $future; + $forecast = []; + $seasonal = []; + $gamma_ = $gamma * (1 - $alpha); + + $sum = 0; + for($i = 1; $i < $cycle+1; $i++) { + $sum += ($this->data[$cycle] - $this->data[$i]) / $cycle; + } + + $trend[0] *= $sum; + + for($i = 1; $i < $cycle+1; $i++) { + $seasonal[$i] = $this->data[$i] / $level[0]; + } + + $alpha = 0.00; + while ($alpha < 1) { + $beta = 0.00; + + while($beta < 1) { + $gamma = 0.00; + + while($gamma < 1) { + $gamma_ = $gamma * (1 - $alpha); + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $hm = (int) floor(($i-1) % $cycle) + 1; + + $level[$i] = $alpha * (($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) / $seasonal[$i]) + (1 - $alpha) * ($level[$i-1] + $damping * $trend[$i-1]); + $trend[$i] = $beta * ($level[$i] - $level[$i-1]) + (1 - $beta) * $damping * $trend[$i-1]; + $seasonal[$i+$cycle] = $gamma_*($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) / ($level[$i-1] + $damping * $trend[$i-1]) + (1 - $gamma_) * $seasonal[$i]; + + $tempForecast[] = ($level[$i] + $this->dampingSum($damping, $i) * $trend[$i-1]) * $seasonal[$i+$hm]; + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $gamma += 0.01; + } + + $beta += 0.01; + } + + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + + public function getMultiplicativeNone(int $future, float $damping) : array + { + $level = [$this->data[0]]; + $trend = [$this->data[1] / $this->data[0]]; + $dataLength = count($this->data) + $future; + $forecast = []; + + $alpha = 0.00; + while ($alpha < 1) { + $beta = 0.00; + + while($beta < 1) { + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $level[$i] = $alpha * ($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) + (1 - $alpha) * $level[$i-1] * pow($trend[$i-1], $damping); + $trend[$i] = $beta * ($level[$i] / $level[$i-1]) + (1 - $beta) * pow($trend[$i-1], $damping); + + $tempForecast[$i] = $level[$i] * pow($trend[$i], $this->dampingSum($damping, $i)); + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $beta += 0.01; + } + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + + public function getMultiplicativeAdditive(int $future, int $cycle, float $damping) : array + { + $level = [$this->data[0]]; + $trend = [1 / $cycle]; + $dataLength = count($this->data) + $future; + $forecast = []; + $seasonal = []; + + $sum = 0; + for($i = 1; $i < $cycle+1; $i++) { + $sum += ($this->data[$cycle] - $this->data[$i]) / $cycle; + } + + $trend[0] *= $sum; + + for($i = 1; $i < $cycle+1; $i++) { + $seasonal[$i] = $this->data[$i-1] - $level[0]; + } + + $alpha = 0.00; + while ($alpha < 1) { + $beta = 0.00; + + while($beta < 1) { + $gamma = 0.00; + + while($gamma < 1) { + $gamma_ = $gamma * (1 - $alpha); + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $hm = (int) floor(($i-1) % $cycle) + 1; + + $level[$i] = $alpha * (($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) - $seasonal[$i]) + (1 - $alpha) * $level[$i-1] * pow($trend[$i-1], $damping); + $trend[$i] = $beta * ($level[$i] / $level[$i-1]) + (1 - $beta) * pow($trend[$i-1], $damping); + $seasonal[$i+$cycle] = $gamma_*(($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) - $level[$i-1] * pow($trend[$i-1], $damping)) + (1 - $gamma_) * $seasonal[$i]; + + $tempForecast[$i] = $level[$i] * pow($trend[$i], $this->dampingSum($damping, $i)) + $seasonal[$i+$hm]; + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $gamma += 0.01; + } + + $beta += 0.01; + } + + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + + public function getMultiplicativeMultiplicative(int $future, int $cycle, float $damping) : array + { + $level = [$this->data[0]]; + $trend = [1 / $cycle]; + $dataLength = count($this->data) + $future; + $forecast = []; + $seasonal = []; + + $sum = 0; + for($i = 1; $i < $cycle+1; $i++) { + $sum += ($this->data[$cycle] - $this->data[$i]) / $cycle; + } + + $trend[0] *= $sum; + + for($i = 1; $i < $cycle+1; $i++) { + $seasonal[$i] = $this->data[$i] / $level[0]; + } + + $alpha = 0.00; + while ($alpha < 1) { + $beta = 0.00; + + while($beta < 1) { + $gamma = 0.00; + + while($gamma < 1) { + $gamma_ = $gamma * (1 - $alpha); + $error = []; + $tempForecast = []; + + for($i = 1; $i < $dataLength; $i++) { + $hm = (int) floor(($i-1) % $cycle) + 1; + + $level[$i] = $alpha * (($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) / $seasonal[$i]) + (1 - $alpha) * $level[$i-1] * pow($trend[$i-1], $damping); + $trend[$i] = $beta * ($level[$i] / $level[$i-1]) + (1 - $beta) * pow($trend[$i-1], $damping); + $seasonal[$i+$cycle] = $gamma_*($i < $dataLength - $future ? $this->data[$i-1] : $tempForecast[$i-1]) / ($level[$i-1] * pow($trend[$i-1], $damping)) + (1 - $gamma_) * $seasonal[$i]; + + $tempForecast[$i] = $level[$i] * pow($trend[$i], $this->dampingSum($damping, $i)) * $seasonal[$i+$hm]; + $error[] = $i < $dataLength - $future ? $this->data[$i] - $tempForecast[$i] : 0; + } + + $tempRMSE = Error::getRootMeanSquaredError($error); + + if ($tempRMSE < $this->rmse) { + $this->rmse = $tempRMSE; + $forecast = $tempForecast; + } + + $gamma += 0.01; + } + + $beta += 0.01; + } + + $alpha += 0.01; + } + + $this->errors = $error; + $this->mse = Error::getMeanSquaredError($error); + $this->mae = Error::getMeanAbsoulteError($error); + $this->sse = Error::getSumSquaredError($error); + + return $forecast; + } + +} \ No newline at end of file diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php b/Business/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php similarity index 90% rename from Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php rename to Business/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php index 48959cedd..22c8bd549 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php +++ b/Business/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance\Forecasting\ExponentialSmoothing; +namespace phpOMS\Business\Finance\Forecasting\ExponentialSmoothing; use phpOMS\Stdlib\Base\Enum; diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php b/Business/Finance/Forecasting/ExponentialSmoothing/TrendType.php similarity index 90% rename from Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php rename to Business/Finance/Forecasting/ExponentialSmoothing/TrendType.php index 423ac9c99..72413e498 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php +++ b/Business/Finance/Forecasting/ExponentialSmoothing/TrendType.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance\Forecasting\ExponentialSmoothing; +namespace phpOMS\Business\Finance\Forecasting\ExponentialSmoothing; use phpOMS\Stdlib\Base\Enum; diff --git a/Math/Finance/Forecasting/GARCH.php b/Business/Finance/Forecasting/GARCH.php similarity index 84% rename from Math/Finance/Forecasting/GARCH.php rename to Business/Finance/Forecasting/GARCH.php index cce9e6647..07a3654b0 100644 --- a/Math/Finance/Forecasting/GARCH.php +++ b/Business/Finance/Forecasting/GARCH.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class GARCH { diff --git a/Math/Finance/Forecasting/MA.php b/Business/Finance/Forecasting/MA.php similarity index 84% rename from Math/Finance/Forecasting/MA.php rename to Business/Finance/Forecasting/MA.php index 7835bf3b6..4ec6a3103 100644 --- a/Math/Finance/Forecasting/MA.php +++ b/Business/Finance/Forecasting/MA.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class MA { diff --git a/Math/Finance/Forecasting/NAR.php b/Business/Finance/Forecasting/NAR.php similarity index 84% rename from Math/Finance/Forecasting/NAR.php rename to Business/Finance/Forecasting/NAR.php index 3d48db0fb..7f499cfa7 100644 --- a/Math/Finance/Forecasting/NAR.php +++ b/Business/Finance/Forecasting/NAR.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class NAR { diff --git a/Math/Finance/Forecasting/NMA.php b/Business/Finance/Forecasting/NMA.php similarity index 84% rename from Math/Finance/Forecasting/NMA.php rename to Business/Finance/Forecasting/NMA.php index 79884ab82..c8a67b716 100644 --- a/Math/Finance/Forecasting/NMA.php +++ b/Business/Finance/Forecasting/NMA.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class NMA { diff --git a/Math/Finance/Forecasting/SARIMA.php b/Business/Finance/Forecasting/SARIMA.php similarity index 84% rename from Math/Finance/Forecasting/SARIMA.php rename to Business/Finance/Forecasting/SARIMA.php index 3671547b9..53573e3c3 100644 --- a/Math/Finance/Forecasting/SARIMA.php +++ b/Business/Finance/Forecasting/SARIMA.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Finance\Forecasting; + namespace phpOMS\Business\Finance\Forecasting; class SARIMA { diff --git a/Math/Finance/Forecasting/SmoothingType.php b/Business/Finance/Forecasting/SmoothingType.php similarity index 92% rename from Math/Finance/Forecasting/SmoothingType.php rename to Business/Finance/Forecasting/SmoothingType.php index abc8f931b..d14f75f2d 100644 --- a/Math/Finance/Forecasting/SmoothingType.php +++ b/Business/Finance/Forecasting/SmoothingType.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance\Forecasting; +namespace phpOMS\Business\Finance\Forecasting; use phpOMS\Stdlib\Base\Enum; diff --git a/Math/Finance/Loan.php b/Business/Finance/Loan.php similarity index 98% rename from Math/Finance/Loan.php rename to Business/Finance/Loan.php index 482b75229..2938a44c5 100644 --- a/Math/Finance/Loan.php +++ b/Business/Finance/Loan.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance; +namespace phpOMS\Business\Finance; /** * Finance class. diff --git a/Math/Finance/Lorenzkurve.php b/Business/Finance/Lorenzkurve.php similarity index 96% rename from Math/Finance/Lorenzkurve.php rename to Business/Finance/Lorenzkurve.php index ed04d5e9b..fb1b15a56 100644 --- a/Math/Finance/Lorenzkurve.php +++ b/Business/Finance/Lorenzkurve.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance; +namespace phpOMS\Business\Finance; /** * Finance class. diff --git a/Math/Finance/StockBonds.php b/Business/Finance/StockBonds.php similarity index 99% rename from Math/Finance/StockBonds.php rename to Business/Finance/StockBonds.php index e61885014..cae66824c 100644 --- a/Math/Finance/StockBonds.php +++ b/Business/Finance/StockBonds.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance; +namespace phpOMS\Business\Finance; /** * Finance class. diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php b/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php index 5176085e7..e44c60955 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php @@ -13,9 +13,9 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Finance\Forecasting\ExponentialSmoothing; +namespace phpOMS\Business\Finance\Forecasting\ExponentialSmoothing; -use phpOMS\Math\Finance\Forecasting\SmoothingType; +use phpOMS\Business\Finance\Forecasting\SmoothingType; use phpOMS\Math\Statistic\Average; use phpOMS\Math\Statistic\Forecast\Error; From 886d2beff50d6d2ccf9becde6d5b9a1215fdb23a Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 21 Aug 2017 13:29:43 +0200 Subject: [PATCH 054/103] Make adjustments for tests --- UnhandledHandler.php | 4 +++- Uri/UriFactory.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/UnhandledHandler.php b/UnhandledHandler.php index 1bdd1065a..546d415c1 100644 --- a/UnhandledHandler.php +++ b/UnhandledHandler.php @@ -36,7 +36,7 @@ final class UnhandledHandler * * @since 1.0.0 */ - public static function exceptionHandler($e) /* : void */ + public static function exceptionHandler(\Throwable $e) /* : void */ { $logger = FileLogger::getInstance(__DIR__ . '/../Logs'); $logger->critical(FileLogger::MSG_FULL, [ @@ -103,6 +103,8 @@ final class UnhandledHandler /** * Shutdown handler. + * + * @return void * * @since 1.0.0 */ diff --git a/Uri/UriFactory.php b/Uri/UriFactory.php index d610df9b3..5c1a6d91d 100644 --- a/Uri/UriFactory.php +++ b/Uri/UriFactory.php @@ -197,7 +197,7 @@ class UriFactory $pars[] = $key . '=' . $value; } - return $parts[0] . (empty($pars) ? '' : '?' . implode('&', $pars)); + $url = $parts[0] . (empty($pars) ? '' : '?' . implode('&', $pars)); } return $url; From adc335d0e6eef95f85585021d031bb57a850f298 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 21 Aug 2017 16:04:58 +0200 Subject: [PATCH 055/103] Minor fixes during tests --- Utils/JsonBuilder.php | 7 ++++++- Utils/StringUtils.php | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Utils/JsonBuilder.php b/Utils/JsonBuilder.php index 7c12126db..e447e6a7f 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -24,7 +24,7 @@ namespace phpOMS\Utils; * @link http://orange-management.com * @since 1.0.0 */ -class JsonBuilder implements \Serializable +class JsonBuilder implements \Serializable, \JsonSerializable { /** @@ -110,4 +110,9 @@ class JsonBuilder implements \Serializable { $this->json = json_decode($serialized); } + + public function jsonSerialize() + { + return $this->json(); + } } diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php index 607726670..a0d175b0e 100644 --- a/Utils/StringUtils.php +++ b/Utils/StringUtils.php @@ -266,7 +266,7 @@ class StringUtils */ public static function mb_trim(string $string, string $charlist = ' ') : string { - if (is_null($charlist)) { + if ($charlist === ' ') { return trim($string); } else { $charlist = str_replace('/', '\/', preg_quote($charlist)); From 9dedf9303e06fa3b7bf5bfae3de987de6f46d548 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 22 Aug 2017 12:46:56 +0200 Subject: [PATCH 056/103] Test fixes --- Business/Finance/FinanceFormulas.php | 2 +- Message/Http/Header.php | 39 ++++++++++++++++++++++------ Message/Http/Request.php | 10 +++++++ Message/Http/Response.php | 6 ++--- Message/RequestAbstract.php | 2 +- Message/ResponseAbstract.php | 4 +-- Uri/Http.php | 18 ++++++++++++- Uri/UriFactory.php | 7 ++++- Utils/ArrayUtils.php | 2 +- Utils/JsonBuilder.php | 4 +-- Validation/ValidatorAbstract.php | 6 +++++ 11 files changed, 79 insertions(+), 21 deletions(-) diff --git a/Business/Finance/FinanceFormulas.php b/Business/Finance/FinanceFormulas.php index 066192afa..dfca67533 100644 --- a/Business/Finance/FinanceFormulas.php +++ b/Business/Finance/FinanceFormulas.php @@ -645,7 +645,7 @@ class FinanceFormulas * * @since 1.0.0 */ - public static function getCurrentRaio(float $assets, float $liabilities) : float + public static function getCurrentRatio(float $assets, float $liabilities) : float { return $assets / $liabilities; } diff --git a/Message/Http/Header.php b/Message/Http/Header.php index d668f2c60..9992e3c0c 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -117,7 +117,7 @@ class Header extends HeaderAbstract */ public static function getStatusCode() : int { - return http_response_code(); + return \http_response_code(); } /** @@ -129,7 +129,7 @@ class Header extends HeaderAbstract */ public function getHeaders() : array { - return getallheaders(); + return self::getAllHeaders(); } /** @@ -141,7 +141,30 @@ class Header extends HeaderAbstract */ public function getHeader(string $name) : string { - return getallheaders()[$name]; + return self::getAllHeaders()[$name] ?? ''; + } + + /** + * Get all headers for apache and nginx + * + * @return array + * + * @since 1.0.0 + */ + private static function getAllHeaders() : array + { + if (function_exists('getallheaders')) { + return getallheaders(); + } + + $headers = []; + foreach ($_SERVER as $name => $value) { + if (substr($name, 0, 5) == 'HTTP_') { + $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value; + } + } + + return $headers; } /** @@ -257,7 +280,7 @@ class Header extends HeaderAbstract { $this->set('HTTP', 'HTTP/1.0 403 Forbidden'); $this->set('Status', 'Status: HTTP/1.0 403 Forbidden'); - http_response_code(403); + \http_response_code(403); } /** @@ -271,7 +294,7 @@ class Header extends HeaderAbstract { $this->set('HTTP', 'HTTP/1.0 404 Not Found'); $this->set('Status', 'Status: HTTP/1.0 404 Not Found'); - http_response_code(404); + \http_response_code(404); } /** @@ -285,7 +308,7 @@ class Header extends HeaderAbstract { $this->set('HTTP', 'HTTP/1.0 406 Not acceptable'); $this->set('Status', 'Status: 406 Not acceptable'); - http_response_code(406); + \http_response_code(406); } /** @@ -312,7 +335,7 @@ class Header extends HeaderAbstract $this->set('HTTP', 'HTTP/1.0 500 Internal Server Error'); $this->set('Status', 'Status: 500 Internal Server Error'); $this->set('Retry-After', 'Retry-After: 300'); - http_response_code(500); + \http_response_code(500); } /** @@ -327,6 +350,6 @@ class Header extends HeaderAbstract $this->set('HTTP', 'HTTP/1.0 503 Service Temporarily Unavailable'); $this->set('Status', 'Status: 503 Service Temporarily Unavailable'); $this->set('Retry-After', 'Retry-After: 300'); - http_response_code(503); + \http_response_code(503); } } \ No newline at end of file diff --git a/Message/Http/Request.php b/Message/Http/Request.php index acac47d42..4505bded9 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -96,6 +96,16 @@ class Request extends RequestAbstract return new self($l11n); } + /** + * {@inheritdoc} + */ + public function setUri(UriInterface $uri) /* : void */ + { + $this->uri = $uri; + $this->path = explode('/', $this->uri->getPath()); + $this->data += $uri->getQueryArray(); + } + /** * Init request. * diff --git a/Message/Http/Response.php b/Message/Http/Response.php index 01302f027..37b1155fb 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -62,15 +62,13 @@ class Response extends ResponseAbstract implements RenderableInterface /** * Remove response by ID. * - * @param int $id Response ID + * @param mixed $id Response ID * * @return bool * - * @throws \Exception - * * @since 1.0.0 */ - public function remove(int $id) : bool + public function remove($id) : bool { if (isset($this->response[$id])) { unset($this->response[$id]); diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 5133b8204..855a80c6b 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -214,7 +214,7 @@ abstract class RequestAbstract implements MessageInterface public function setRequestSource(int $source) /* : void */ { if (!RequestSource::isValidValue($source)) { - throw new InvalidEnumValue($source); + throw new InvalidEnumValue((string) $source); } $this->source = $source; diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index b8692ef41..d5c402383 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -60,7 +60,7 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable * @var int * @since 1.0.0 */ - protected $account = null; + protected $account = 0; /** * Header. @@ -122,7 +122,7 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable * {@inheritdoc} * todo: shouldn't this only be available in the header?! */ - public function getStatusCode() : string + public function getStatusCode() : int { return $this->status; } diff --git a/Uri/Http.php b/Uri/Http.php index a7466bd77..406924df5 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -165,6 +165,8 @@ class Http implements UriInterface parse_str($this->queryString, $this->query); } + $this->query = array_change_key_case($this->query, CASE_LOWER); + $this->fragment = $url['fragment'] ?? ''; $this->base = $this->scheme . '://' . $this->host . $this->rootPath; } @@ -282,7 +284,21 @@ class Http implements UriInterface */ public function getQuery(string $key = null) /* : ?string */ { - return isset($key) ? $this->query[$key] ?? null : $this->queryString; + if(isset($key)) { + $key = strtolower($key); + + return $this->query[$key] ?? ''; + } + + return $this->queryString; + } + + /** + * {@inheritdoc} + */ + public function getQueryArray() : array + { + return $this->query; } /** diff --git a/Uri/UriFactory.php b/Uri/UriFactory.php index 5c1a6d91d..d75f968dd 100644 --- a/Uri/UriFactory.php +++ b/Uri/UriFactory.php @@ -117,6 +117,11 @@ class UriFactory self::setQuery('/', $uri->getPath()); self::setQuery(':user', $uri->getUser()); self::setQuery(':pass', $uri->getPass()); + + $data = $uri->getQueryArray(); + foreach($data as $key => $value) { + self::setQuery('?' . $key, $value); + } } /** @@ -224,7 +229,7 @@ class UriFactory */ public static function build(string $uri, array $toMatch = []) /* : ?string */ { - $parsed = preg_replace_callback('(\{[\/#\?@\.\$][a-zA-Z0-9\-]*\})', function ($match) use ($toMatch) { + $parsed = preg_replace_callback('(\{[\/#\?%@\.\$][a-zA-Z0-9\-]*\})', function ($match) use ($toMatch) { $match = substr($match[0], 1, strlen($match[0]) - 2); return $toMatch[$match] ?? self::$uri[$match] ?? $match; diff --git a/Utils/ArrayUtils.php b/Utils/ArrayUtils.php index 8c194509f..f5907c521 100644 --- a/Utils/ArrayUtils.php +++ b/Utils/ArrayUtils.php @@ -320,7 +320,7 @@ class ArrayUtils */ public static function arraySum(array $array, int $start = 0, int $count = 0) { - $count = $count === 0 ? count($array) : $count; + $count = $count === 0 ? count($array) : $start + $count; $sum = 0; $array = array_values($array); diff --git a/Utils/JsonBuilder.php b/Utils/JsonBuilder.php index e447e6a7f..dec4a70b2 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -108,11 +108,11 @@ class JsonBuilder implements \Serializable, \JsonSerializable */ public function unserialize($serialized) { - $this->json = json_decode($serialized); + $this->json = json_decode($serialized, true); } public function jsonSerialize() { - return $this->json(); + return $this->getJson(); } } diff --git a/Validation/ValidatorAbstract.php b/Validation/ValidatorAbstract.php index afc98b019..4f4ef5d85 100644 --- a/Validation/ValidatorAbstract.php +++ b/Validation/ValidatorAbstract.php @@ -58,4 +58,10 @@ abstract class ValidatorAbstract implements ValidatorInterface { return self::$error; } + + public static function resetError() /* : void */ + { + self::$error = 0; + self::$msg = ''; + } } From 871b5b5b994853e974bc94fbc6efa33e0af3c8ed Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 22 Aug 2017 16:37:23 +0200 Subject: [PATCH 057/103] More test fixes --- Message/HeaderAbstract.php | 4 +- Message/Http/Header.php | 12 +-- Message/Http/RequestStatusCode.php | 139 +++++++++++++++++++++++++++++ Message/Http/Response.php | 8 ++ Message/ResponseAbstract.php | 6 +- Stdlib/Base/SmartDateTime.php | 18 +--- 6 files changed, 162 insertions(+), 25 deletions(-) create mode 100644 Message/Http/RequestStatusCode.php diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index be901e96a..bb9899d75 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -48,11 +48,11 @@ abstract class HeaderAbstract /** * Generate header based on status code. * - * @param string $statusCode Status code + * @param int $statusCode Status code * * @since 1.0.0 */ - abstract public function generate(string $statusCode) /* : void */; + abstract public function generate(int $statusCode) /* : void */; /** * Get header by key. diff --git a/Message/Http/Header.php b/Message/Http/Header.php index 9992e3c0c..2c00bb831 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -246,22 +246,22 @@ class Header extends HeaderAbstract /** * {@inheritdoc} */ - public function generate(string $code) /* : void */ + public function generate(int $code) /* : void */ { switch ($code) { - case RequestStatus::R_403: + case RequestStatusCode::R_403: $this->generate403(); break; - case RequestStatus::R_404: + case RequestStatusCode::R_404: $this->generate404(); break; - case RequestStatus::R_406: + case RequestStatusCode::R_406: $this->generate406(); break; - case RequestStatus::R_407: + case RequestStatusCode::R_407: $this->generate407(); break; - case RequestStatus::R_503: + case RequestStatusCode::R_503: $this->generate503(); break; default: diff --git a/Message/Http/RequestStatusCode.php b/Message/Http/RequestStatusCode.php new file mode 100644 index 000000000..ea849833b --- /dev/null +++ b/Message/Http/RequestStatusCode.php @@ -0,0 +1,139 @@ +status = $status; $this->header->generate($status); diff --git a/Stdlib/Base/SmartDateTime.php b/Stdlib/Base/SmartDateTime.php index c10250abf..f6127e520 100644 --- a/Stdlib/Base/SmartDateTime.php +++ b/Stdlib/Base/SmartDateTime.php @@ -63,9 +63,9 @@ class SmartDateTime extends \DateTime * * @since 1.0.0 */ - public static function createFromDateTime(\Datetime $date) : SmarteDateTime + public static function createFromDateTime(\Datetime $date) : SmartDateTime { - return new self('Y-m-d H:i:s', $date->getTimezone()); + return new self($date->format('Y-m-d H:i:s'), $date->getTimezone()); } /** @@ -161,6 +161,7 @@ class SmartDateTime extends \DateTime */ public function getDaysOfMonth() : int { + // todo: maybe ->format('t') is better return cal_days_in_month(CAL_GREGORIAN, (int) $this->format('m'), (int) $this->format('Y')); } @@ -250,18 +251,7 @@ class SmartDateTime extends \DateTime */ public function getFirstDayOfWeek() : int { - $w = 1; - $y = ((int) $this->formay('Y') - 1) % 400 + 1; - $ly = ($y - 1) / 4; - $ly = $ly - ($y - 1) / 100; - $ly = $ly + ($y - 1) / 400; - $ry = $y - 1 - $ly; - $w = $w + $ry; - $w = $w + 2 * $ly; - $w = $w + date("z", mktime(0, 0, 0, (int) $this->formay('m'), (int) $this->formay('d'), $y)) + 1; - $w = ($w - 1) % 7 + 1; - - return $w; + return self::getDayOfWeek((int) $this->format('Y'), (int) $this->format('m'), (int) $this->format('d')); } /** From 12fdd4ea32a5dd3a9897cc4600496fac3b9253b5 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 22 Aug 2017 21:36:23 +0200 Subject: [PATCH 058/103] Optimize storage --- System/File/Storage.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/System/File/Storage.php b/System/File/Storage.php index 2f51ee96c..9ad46868a 100644 --- a/System/File/Storage.php +++ b/System/File/Storage.php @@ -62,9 +62,7 @@ final class Storage if (isset(self::$registered[$env])) { if(is_string(self::$registered[$env])) { $env = self::$registered[$env]::getInstance(); - } elseif(self::$registered[$env] instanceof StorageAbstract) { - $env = self::$registered[$env]; - } elseif(self::$registered[$env] instanceof ContainerInterface) { + } elseif(self::$registered[$env] instanceof StorageAbstract || self::$registered[$env] instanceof ContainerInterface) { $env = self::$registered[$env]; } else { throw new \Exception('Invalid type'); From f57699721aee47a6acf2a30924d6c61fa4bd7aa2 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 23 Aug 2017 15:31:07 +0200 Subject: [PATCH 059/103] Add docblocks --- DataStorage/Database/DataMapperAbstract.php | 102 +++++++++++++++++--- 1 file changed, 91 insertions(+), 11 deletions(-) diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index f1bc6a62b..d117baba4 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -138,7 +138,20 @@ class DataMapperAbstract implements DataMapperInterface */ protected static $fields = []; + /** + * Initialized objects for cross reference to reduce initialization costs + * + * @var array[] + * @since 1.0.0 + */ protected static $initObjects = []; + + /** + * Highest mapper to know when to clear initialized objects + * + * @var DataMapperAbstract + * @since 1.0.0 + */ protected static $parentMapper = null; /** @@ -168,6 +181,8 @@ class DataMapperAbstract implements DataMapperInterface /** * Clone. + * + * @return void * * @since 1.0.0 */ @@ -179,6 +194,8 @@ class DataMapperAbstract implements DataMapperInterface * Set database connection. * * @param ConnectionAbstract $con Database connection + * + * @return void * * @since 1.0.0 */ @@ -241,7 +258,7 @@ class DataMapperAbstract implements DataMapperInterface * * @param array $objects Objects to load * - * @return null + * @return void * * @since 1.0.0 */ @@ -296,7 +313,7 @@ class DataMapperAbstract implements DataMapperInterface * * @param string $search Search for * - * @return Builder + * @return array * * @since 1.0.0 */ @@ -405,6 +422,16 @@ class DataMapperAbstract implements DataMapperInterface return self::$db->con->lastInsertId(); } + /** + * Get id of object + * + * @param Object $obj Model to create + * @param \ReflectionClass $reflectionClass Reflection class + * + * @return mixed + * + * @since 1.0.0 + */ private static function getObjectId($obj, \ReflectionClass $reflectionClass = null) { $reflectionClass = $reflectionClass ?? new \ReflectionClass(get_class($obj)); @@ -1155,7 +1182,7 @@ class DataMapperAbstract implements DataMapperInterface * @param mixed $obj Object reference (gets filled with insert id) * @param int $relations Create all relations as well * - * @return int + * @return mixed * * @since 1.0.0 */ @@ -1504,7 +1531,7 @@ class DataMapperAbstract implements DataMapperInterface * * @since 1.0.0 */ - public static function getAll(int $relations = RelationType::ALL, string $lang = '') + public static function getAll(int $relations = RelationType::ALL, string $lang = '') : array { if(!isset(self::$parentMapper)) { self::setUpParentMapper(); @@ -1526,7 +1553,7 @@ class DataMapperAbstract implements DataMapperInterface * * @since 1.0.0 */ - public static function listResults(Builder $query) + public static function listResults(Builder $query) : array { $sth = self::$db->con->prepare($query->toSql()); $sth->execute(); @@ -1548,7 +1575,7 @@ class DataMapperAbstract implements DataMapperInterface * * @since 1.0.0 */ - public static function getNewest(int $limit = 1, Builder $query = null, int $relations = RelationType::ALL, string $lang = '') + public static function getNewest(int $limit = 1, Builder $query = null, int $relations = RelationType::ALL, string $lang = '') : array { self::extend(__CLASS__); @@ -1634,11 +1661,11 @@ class DataMapperAbstract implements DataMapperInterface * @param mixed $obj Objects to fill * @param int $relations Relations type * - * @return array + * @return void * * @since 1.0.0 */ - public static function fillRelations(array &$obj, int $relations = RelationType::ALL) + public static function fillRelations(array &$obj, int $relations = RelationType::ALL) /* : void */ { $hasMany = !empty(static::$hasMany); $hasOne = !empty(static::$hasOne); @@ -1850,7 +1877,18 @@ class DataMapperAbstract implements DataMapperInterface return $result; } - private static function addInitialized($mapper, $id, $obj = null) + /** + * Add initialized object to local cache + * + * @param string $mapper Mapper name + * @param mixed $id Object id + * @param object $obj Model to cache locally + * + * @return void + * + * @since 1.0.0 + */ + private static function addInitialized(string $mapper, $id, $obj = null) /* : void */ { if(!isset(self::$initObjects[$mapper])) { self::$initObjects[$mapper] = []; @@ -1859,13 +1897,55 @@ class DataMapperAbstract implements DataMapperInterface self::$initObjects[$mapper][$id] = $obj; } - private static function isInitialized($mapper, $id) + /** + * Check if a object is initialized + * + * @param string $mapper Mapper name + * @param mixed $id Object id + * + * @return bool + * + * @since 1.0.0 + */ + private static function isInitialized($mapper, $id) : bool { return isset(self::$initObjects[$mapper]) && isset(self::$initObjects[$mapper][$id]); } - private static function setUpParentMapper() + /** + * Define the highest mapper of this request + * + * @return void + * + * @since 1.0.0 + */ + private static function setUpParentMapper() /* : void */ { self::$parentMapper = static::class; } + + /** + * Check if model exists in database + * + * @param mixed $id Object id + * + * @return bool + * + * @since 1.0.0 + */ + public static function exists($id) : bool + { + $query = $query ?? new Builder(self::$db); + $query->prefix(self::$db->getPrefix()) + ->select(static::$primaryField) + ->from(static::$table) + ->where(static::$primaryField, '=', $id); + + $sth = self::$db->con->prepare($query->toSql()); + $sth->execute(); + + $results = $sth->fetchAll(\PDO::FETCH_ASSOC); + + return count($results) === 0; + } } From d22ff59b824469b8197b18452339092d6b10e1cd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 2 Sep 2017 19:10:29 +0200 Subject: [PATCH 060/103] fixes #118 --- Stdlib/Base/SmartDateTime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stdlib/Base/SmartDateTime.php b/Stdlib/Base/SmartDateTime.php index f6127e520..44abdbe8c 100644 --- a/Stdlib/Base/SmartDateTime.php +++ b/Stdlib/Base/SmartDateTime.php @@ -239,7 +239,7 @@ class SmartDateTime extends \DateTime $w = $w + date("z", mktime(0, 0, 0, $m, $d, $y)) + 1; $w = ($w - 1) % 7 + 1; - return $w; + return $w === 7 ? 0 : $w + 1; } /** From d14bb89583e79bb60ac23b9964e66a216d4a4c72 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 2 Sep 2017 20:41:09 +0200 Subject: [PATCH 061/103] fixes #70 --- Utils/StringCompare.php | 168 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 168 insertions(+) create mode 100644 Utils/StringCompare.php diff --git a/Utils/StringCompare.php b/Utils/StringCompare.php new file mode 100644 index 000000000..c78fa86db --- /dev/null +++ b/Utils/StringCompare.php @@ -0,0 +1,168 @@ +dictionary = $dictionary; + } + + /** + * Match word against dictionary. + * + * @param string $match Word to match against dictionary + * + * @return string Best match + * + * @since 1.0.0 + */ + public function matchDictionary(string $match) : string + { + $bestScore = PHP_INT_MAX; + $bestMatch = ''; + + foreach($dictionary as $word) { + $score = self::fuzzyMatch($word, $match); + + if($score < $bestScore) { + $bestMatch = $word; + } + } + + return $bestMatch; + } + + /** + * Calculate word match score. + * + * @param string $s1 Word 1 + * @param string $s2 Word 2 + * + * @return int + * + * @since 1.0.0 + */ + public static function valueWords(string $s1, string $s2) : int + { + $words1 = preg_split('/[ _-]/', $s1); + $words2 = preg_split('/[ _-]/', $s2); + $total = 0; + + foreach($words1 as $word1) { + $best = strlen($s2); + + foreach($words2 as $word2) { + $wordDist = levenshtein($word1, $word2); + + if($wordDist < $best) { + $best = $wordDist; + } + + if($wordDist === 0) { + break; + } + } + + $total += $total + $best; + } + + return $total; + } + + /** + * Calculate phrase match score. + * + * @param string $s1 Word 1 + * @param string $s2 Word 2 + * + * @return int + * + * @since 1.0.0 + */ + public static function valuePhrase(string $s1, string $s2) : int + { + return levenshtein($s1, $s2); + } + + /** + * Calculate word length score. + * + * @param string $s1 Word 1 + * @param string $s2 Word 2 + * + * @return int + * + * @since 1.0.0 + */ + public static function valueLength(string $s1, string $s2) : int + { + return abs(strlen($s1) - strlen($s2)); + } + + /** + * Calculate fuzzy match score. + * + * @param string $s1 Word 1 + * @param string $s2 Word 2 + * @param float $prhaseWeight Weighting for phrase score + * @param float $wordWeight Weighting for word score + * @param float $minWeight Min weight + * @param float $maxWeight Max weight + * @param float $lengthWeight Weighting for word length + * + * @return float + * + * @since 1.0.0 + */ + public static function fuzzyMatch(string $s1, string $s2, float $phraseWeight = 0.5, float $wordWeight = 1, float $minWeight = 10, float $maxWeight = 1, float $lengthWeight = -0.3) : float + { + $phraseValue = valuePhrase($s1, $s2); + $wordValue = valueWords($s1, $s2); + $lengthValue = valueLength($s1, $s2); + + return min($phraseValue * $phraseWeight, $wordValue * $wordWeight) * $minWeight + + max($phraseValue * $phraseWeight, $wordValue * $wordWeight) * $maxWeight + + $lengthValue * $lengthWeight; + } +} \ No newline at end of file From 3bfc05d5f29ec855680ca35d4810f668bbbed97a Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 3 Sep 2017 21:15:27 +0200 Subject: [PATCH 062/103] Fix const for php 7.1 --- Utils/EDI/AnsiX12/InterchangeControlHeader.php | 2 +- .../EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Utils/EDI/AnsiX12/InterchangeControlHeader.php b/Utils/EDI/AnsiX12/InterchangeControlHeader.php index cc891351e..a06f6c69e 100644 --- a/Utils/EDI/AnsiX12/InterchangeControlHeader.php +++ b/Utils/EDI/AnsiX12/InterchangeControlHeader.php @@ -27,7 +27,7 @@ namespace phpOMS\Utils\EDI\AnsiX12; */ class InterchangeControlHeader { - const COMPONENT_ELEMENT_SEPARATOR = '>'; + /* private */ const COMPONENT_ELEMENT_SEPARATOR = '>'; private $interchangeControlHeader = InterchangeControlHeader::ISA; diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php index 75394ae59..7c0bef37c 100644 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php +++ b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/TransactionSetHeader.php @@ -26,7 +26,7 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder; */ class TransactionSetHeader { - const IDENTIFIER = 'ST'; + /* private */ const IDENTIFIER = 'ST'; private $transactionSetIdentifierCode = 850; From 33470017ab81f6b2d6231d1ceaeed4bb7dc5702e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 3 Sep 2017 21:26:58 +0200 Subject: [PATCH 063/103] Add docblock --- Localization/L11nManager.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Localization/L11nManager.php b/Localization/L11nManager.php index 91590e1a1..7d8216e4f 100644 --- a/Localization/L11nManager.php +++ b/Localization/L11nManager.php @@ -190,6 +190,18 @@ class L11nManager return $this->language[$code][$module][$translation]; } + /** + * Get translation html escaped. + * + * @param string $code Country code + * @param string $module Module name + * @param string $theme Theme + * @param string $translation Text + * + * @return string In case the language element couldn't be found 'ERROR' will be returned + * + * @since 1.0.0 + */ public function getHtml(string $code, string $module, string $theme, string $translation) : string { return htmlspecialchars($this->getText($code, $module, $theme, $translation)); From ce5ba32f1d3c7ced1a136302b18e34f4017a910e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 3 Sep 2017 21:35:37 +0200 Subject: [PATCH 064/103] Remove error output --- UnhandledHandler.php | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/UnhandledHandler.php b/UnhandledHandler.php index 546d415c1..414152c13 100644 --- a/UnhandledHandler.php +++ b/UnhandledHandler.php @@ -44,11 +44,6 @@ final class UnhandledHandler 'line' => $e->getLine(), 'file' => $e->getFile(), ]); - - echo 'My Exception [' . $e->getCode() . '] ' . $e->getMessage() . '
' - . ' Exception on line ' . $e->getLine() . ' in file ' . $e->getFile() - . ', PHP ' . PHP_VERSION . ' (' . PHP_OS . ')
' - . 'aborting...
'; } /** @@ -77,25 +72,6 @@ final class UnhandledHandler 'file' => $errfile, ]); - switch ($errno) { - case E_USER_ERROR: - echo 'My ERROR [' . $errno . '] ' . $errstr . '
'; - break; - case E_USER_WARNING: - echo 'My WARNING [' . $errno . '] ' . $errstr . '
'; - break; - case E_USER_NOTICE: - echo 'My NOTICE [' . $errno . '] ' . $errstr . '
'; - break; - default: - echo 'Unknown error type: [' . $errno . '] ' . $errstr . '
'; - break; - } - - echo 'My Error Fatal error on line ' . $errline . ' in file ' . $errfile - . ', PHP ' . PHP_VERSION . ' (' . PHP_OS . '
' - . 'aborting...
'; - error_clear_last(); return true; @@ -119,11 +95,6 @@ final class UnhandledHandler 'line' => $e['line'], 'file' => $e['file'], ]); - - echo 'My Error unhandled [' . $e['type'] . '] ' . $e['message'] . '
' - . ' Fatal error on line ' . $e['line'] . ' in file ' . $e['file'] - . ', PHP ' . PHP_VERSION . ' (' . PHP_OS . ')
' - . 'aborting...
'; } } } From 4aa204858bae16b5ef9e8cf63f7d9071cd3141fd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:27:07 +0200 Subject: [PATCH 065/103] fixes #94 --- Message/ResponseAbstract.php | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index 9ec57d229..be717f379 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -46,14 +46,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable */ protected $response = []; - /** - * Response status. - * - * @var int - * @since 1.0.0 - */ - protected $status = 0; - /** * Account. * @@ -108,25 +100,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable $this->response = ArrayUtils::setArray((string) $key, $this->response, $response, ':', $overwrite); } - /** - * {@inheritdoc} - * todo: shouldn't this only be available in the header?! - */ - public function setStatusCode(int $status) /* : void */ - { - $this->status = $status; - $this->header->generate($status); - } - - /** - * {@inheritdoc} - * todo: shouldn't this only be available in the header?! - */ - public function getStatusCode() : int - { - return $this->status; - } - /** * {@inheritdoc} */ From ebab71704acc10c15f73d0a379bf8f7d90694aa6 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:27:13 +0200 Subject: [PATCH 066/103] fixes #94 --- Message/HeaderAbstract.php | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index bb9899d75..5320971d2 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -33,6 +33,33 @@ abstract class HeaderAbstract * @since 1.0.0 */ protected static $isLocked = false; + + /** + * Response status. + * + * @var int + * @since 1.0.0 + */ + protected $status = 0; + + /** + * {@inheritdoc} + * todo: shouldn't this only be available in the header?! + */ + public function setStatusCode(int $status) /* : void */ + { + $this->status = $status; + $this->header->generate($status); + } + + /** + * {@inheritdoc} + * todo: shouldn't this only be available in the header?! + */ + public function getStatusCode() : int + { + return $this->status; + } /** * Set header. @@ -98,4 +125,4 @@ abstract class HeaderAbstract { return self::$isLocked; } -} \ No newline at end of file +} From 6bf025ea81fb37c61c905f7d55bbca99a48d917a Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:38:18 +0200 Subject: [PATCH 067/103] Fix status return --- Message/Http/Header.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Message/Http/Header.php b/Message/Http/Header.php index 2c00bb831..3e1a40581 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -117,7 +117,11 @@ class Header extends HeaderAbstract */ public static function getStatusCode() : int { - return \http_response_code(); + if($this->status === 0) { + $this->status = \http_response_code(); + } + + return $this->status; } /** @@ -352,4 +356,4 @@ class Header extends HeaderAbstract $this->set('Retry-After', 'Retry-After: 300'); \http_response_code(503); } -} \ No newline at end of file +} From 6280c04ffcb739d23caf563a02742ee2d05b0314 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:41:16 +0200 Subject: [PATCH 068/103] Pull out more members to header --- Message/ResponseAbstract.php | 41 ------------------------------------ 1 file changed, 41 deletions(-) diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index be717f379..b1375f5aa 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -29,15 +29,6 @@ use phpOMS\Utils\ArrayUtils; */ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable { - - /** - * Localization. - * - * @var Localization - * @since 1.0.0 - */ - protected $l11n = null; - /** * Responses. * @@ -46,14 +37,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable */ protected $response = []; - /** - * Account. - * - * @var int - * @since 1.0.0 - */ - protected $account = 0; - /** * Header. * @@ -62,14 +45,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable */ protected $header = null; - /** - * {@inheritdoc} - */ - public function getL11n() : Localization - { - return $this->l11n; - } - /** * Get response by ID. * @@ -100,22 +75,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable $this->response = ArrayUtils::setArray((string) $key, $this->response, $response, ':', $overwrite); } - /** - * {@inheritdoc} - */ - public function getAccount() : int - { - return $this->account; - } - - /** - * {@inheritdoc} - */ - public function setAccount(int $account) /* : void */ - { - $this->account = $account; - } - /** * {@inheritdoc} */ From b87621bebcbf84307eef6d2e19aa9c4c7835a95b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:42:24 +0200 Subject: [PATCH 069/103] Pull out more members to header --- Message/RequestAbstract.php | 40 ------------------------------------- 1 file changed, 40 deletions(-) diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 855a80c6b..73e1594f9 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -80,14 +80,6 @@ abstract class RequestAbstract implements MessageInterface */ protected $path = []; - /** - * Localization. - * - * @var Localization - * @since 1.0.0 - */ - protected $l11n = null; - /** * Language. * @@ -96,14 +88,6 @@ abstract class RequestAbstract implements MessageInterface */ protected $language = ''; - /** - * Account. - * - * @var int - * @since 1.0.0 - */ - protected $account = null; - /** * Request type. * @@ -292,14 +276,6 @@ abstract class RequestAbstract implements MessageInterface return false; } - /** - * {@inheritdoc} - */ - public function getL11n() : Localization - { - return $this->l11n; - } - /** * Lock request for further manipulations. * @@ -312,22 +288,6 @@ abstract class RequestAbstract implements MessageInterface $this->lock = true; } - /** - * {@inheritdoc} - */ - public function getAccount() : int - { - return $this->account; - } - - /** - * {@inheritdoc} - */ - public function setAccount(int $account) /* : void */ - { - $this->account = $account; - } - /** * Get request header. * From 41de67d0db600e1922ce172c1735b4195718e972 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:47:02 +0200 Subject: [PATCH 070/103] Pull out more members to header --- Message/HeaderAbstract.php | 49 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index 5320971d2..5be6ffe8c 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -34,6 +34,22 @@ abstract class HeaderAbstract */ protected static $isLocked = false; + /** + * Localization. + * + * @var Localization + * @since 1.0.0 + */ + protected $l11n = null; + + /** + * Account. + * + * @var int + * @since 1.0.0 + */ + protected $account = 0; + /** * Response status. * @@ -42,6 +58,39 @@ abstract class HeaderAbstract */ protected $status = 0; + /** + * {@inheritdoc} + */ + public function getL11n() : Localization + { + return $this->l11n; + } + + /** + * {@inheritdoc} + */ + public function setL11n(Localization $l11n) /* : void */ + { + $this->l11n = $l11n; + } + + /** + * {@inheritdoc} + */ + public function getAccount() : int + { + return $this->account; + } + + /** + * {@inheritdoc} + */ + public function setAccount(int $account) /* : void */ + { + $this->account = $account; + } + + /** * {@inheritdoc} * todo: shouldn't this only be available in the header?! From 59ef2d27e1b597dacded7fa0c3b528f6856c4c75 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:48:08 +0200 Subject: [PATCH 071/103] Cleanup --- Message/MessageInterface.php | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/Message/MessageInterface.php b/Message/MessageInterface.php index 0cf5d7af9..071b36133 100644 --- a/Message/MessageInterface.php +++ b/Message/MessageInterface.php @@ -26,14 +26,6 @@ namespace phpOMS\Message; */ interface MessageInterface { - - /** - * Retrieves the HTTP protocol version as a string. - * - * @since 1.0.0 - */ - public function getProtocolVersion(); - /** * Retrieves all message header values. * @@ -51,24 +43,4 @@ interface MessageInterface * @since 1.0.0 */ public function getBody() : string; - - /** - * Get account id. - * - * @return int Account id - * - * @since 1.0.0 - */ - public function getAccount() : int; - - /** - * Set account id. - * - * @param int $account Account id - * - * @return void - * - * @since 1.0.0 - */ - public function setAccount(int $account) /* : void */; } From 40d52330f8deb15dc18cd65197450cb7b001a17e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:49:53 +0200 Subject: [PATCH 072/103] Pull out getProtocolVersion --- Message/Http/Request.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Message/Http/Request.php b/Message/Http/Request.php index 4505bded9..f6541ade9 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -400,14 +400,6 @@ class Request extends RequestAbstract return $lastElement; } - /** - * {@inheritdoc} - */ - public function getProtocolVersion() : string - { - return $_SERVER['SERVER_PROTOCOL'] ?? 'HTTP/1.1'; - } - /** * {@inheritdoc} */ From 9d4edf85ea0e99b5c23b14ad98f431c152ae9725 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:50:20 +0200 Subject: [PATCH 073/103] Pull out getProtocolVersion --- Message/Http/Response.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Message/Http/Response.php b/Message/Http/Response.php index 1edd3c145..1c033d74f 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -87,14 +87,6 @@ class Response extends ResponseAbstract implements RenderableInterface return false; } - /** - * {@inheritdoc} - */ - public function getProtocolVersion() : string - { - return '1.0'; - } - /** * {@inheritdoc} */ From c87d55deaad91eee14c37e0c9ffbcd1439cc43bc Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:50:43 +0200 Subject: [PATCH 074/103] Insert protocol Version --- Message/Http/Header.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Message/Http/Header.php b/Message/Http/Header.php index 3e1a40581..be5ac458c 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -90,6 +90,14 @@ class Header extends HeaderAbstract return true; } + + /** + * {@inheritdoc} + */ + public function getProtocolVersion() : string + { + return $_SERVER['SERVER_PROTOCOL'] ?? 'HTTP/1.1'; + } /** * Is security header. From efc4f1543b8e9a575db1a84811a0ec0a7e658b0d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:51:44 +0200 Subject: [PATCH 075/103] Make getProtocolVersion part of header --- Message/HeaderAbstract.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index 5be6ffe8c..fb3e4a4e1 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -109,6 +109,15 @@ abstract class HeaderAbstract { return $this->status; } + + /** + * Get protocol version. + * + * @return string + * + * @since 1.0.0 + */ + abstract public function getProtocolVersion() : string; /** * Set header. From 9472994cf6d0474289ad6914e05771ba2b77736e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 12:00:11 +0200 Subject: [PATCH 076/103] Pull out --- Message/Http/Response.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Message/Http/Response.php b/Message/Http/Response.php index 1c033d74f..61a895671 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -173,12 +173,4 @@ class Response extends ResponseAbstract implements RenderableInterface return $result; } } - - /** - * {@inheritdoc} - */ - public function getReasonPhrase() : string - { - return $this->header->getHeader('Status'); - } } From 3d840501f979a254ac0e6ad9e9e2951273a09c6e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 12:00:54 +0200 Subject: [PATCH 077/103] Pull out --- Message/Http/Header.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Message/Http/Header.php b/Message/Http/Header.php index be5ac458c..ebb6298b1 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -218,6 +218,14 @@ class Header extends HeaderAbstract { return $this->header[strtolower($key)] ?? []; } + + /** + * {@inheritdoc} + */ + public function getReasonPhrase() : string + { + return $this->header->getHeader('Status'); + } /** * Check if header is defined. From 23300796303c6596f7a76eb59080780714a24048 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 12:09:44 +0200 Subject: [PATCH 078/103] Remove language (is part of l11n) --- Message/RequestAbstract.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 73e1594f9..37e396305 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -80,14 +80,6 @@ abstract class RequestAbstract implements MessageInterface */ protected $path = []; - /** - * Language. - * - * @var string - * @since 1.0.0 - */ - protected $language = ''; - /** * Request type. * @@ -153,15 +145,6 @@ abstract class RequestAbstract implements MessageInterface $this->uri = $uri; } - /** - * Get request language. - * - * @return string - * - * @since 1.0.0 - */ - abstract public function getLanguage() : string; - /** * Get request hash. * From fc8ed2166dd3874f0bbfd459125ee9dc8e4c73b6 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 12:58:35 +0200 Subject: [PATCH 079/103] Remove path, it is part of the uri --- Message/Http/Request.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Message/Http/Request.php b/Message/Http/Request.php index f6541ade9..ff3d1817b 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -102,7 +102,6 @@ class Request extends RequestAbstract public function setUri(UriInterface $uri) /* : void */ { $this->uri = $uri; - $this->path = explode('/', $this->uri->getPath()); $this->data += $uri->getQueryArray(); } @@ -126,7 +125,6 @@ class Request extends RequestAbstract } $this->data = array_change_key_case($this->data, CASE_LOWER); - $this->path = explode('/', $this->uri->getPath()); $this->setupUriBuilder(); } From 0339d8ad444b16cbfb547b3feefa2bd368e5ba56 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 12:59:12 +0200 Subject: [PATCH 080/103] Remove path, it is part of the uri --- Message/RequestAbstract.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 37e396305..8c2edfff5 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -72,14 +72,6 @@ abstract class RequestAbstract implements MessageInterface */ protected $data = []; - /** - * Request data. - * - * @var array - * @since 1.0.0 - */ - protected $path = []; - /** * Request type. * @@ -208,18 +200,6 @@ abstract class RequestAbstract implements MessageInterface $this->method = $method; } - /** - * {@inheritdoc} - */ - public function getPath($key = null) /* : ?string */ - { - if ($key === null) { - return $this->path; - } - - return $this->path[$key] ?? null; - } - /** * {@inheritdoc} */ From 6a4024d24ec2403d34e77fa0223d8a51235a5819 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 13:18:52 +0200 Subject: [PATCH 081/103] fixes #103 --- DataStorage/Session/HttpSession.php | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/DataStorage/Session/HttpSession.php b/DataStorage/Session/HttpSession.php index c31e478f3..c822f093a 100644 --- a/DataStorage/Session/HttpSession.php +++ b/DataStorage/Session/HttpSession.php @@ -54,18 +54,27 @@ class HttpSession implements SessionInterface * @since 1.0.0 */ private $sid = null; + + /** + * Inactivity Interval. + * + * @var int + * @since 1.0.0 + */ + private $inactivityInterval = 0; /** * Constructor. * * @param int $liftetime Session life time * @param string|int|bool $sid Session id + * @param int $inactivityInterval Interval for session activity * * @throws LockException Throws this exception if the session is alrady locked for further interaction. * * @since 1.0.0 */ - public function __construct(int $liftetime = 3600, $sid = false) + public function __construct(int $liftetime = 3600, $sid = false, int $inactivityInterval = 0) { if (self::$isLocked) { throw new LockException('HttpSession'); @@ -74,13 +83,21 @@ class HttpSession implements SessionInterface if (!is_bool($sid)) { session_id($sid); } + + $this->inactivityInterval = $inactivityInterval; session_set_cookie_params($liftetime, '/', '', false, true); session_start(); + + if($this->inactivityInterval > 0 && ($this->inactivityInterval + ($_SESSION['lastActivity'] ?? 0) < time())) { + $this->destroy(); + } + $this->sessionData = $_SESSION; $_SESSION = null; - + $this->sessionData['lastActivity'] = time(); $this->sid = session_id(); + $this->setCsrfProtection(); } @@ -185,6 +202,12 @@ class HttpSession implements SessionInterface { $this->sid = $sid; } + + private function destroy() /* : void */ + { + session_destroy(); + session_start(); + } /** * Destruct session. From 820f079ca40aaf9ed748cede3555d954ced2c29f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 13:20:10 +0200 Subject: [PATCH 082/103] Update HttpSession.php --- DataStorage/Session/HttpSession.php | 1 + 1 file changed, 1 insertion(+) diff --git a/DataStorage/Session/HttpSession.php b/DataStorage/Session/HttpSession.php index c822f093a..05a33847c 100644 --- a/DataStorage/Session/HttpSession.php +++ b/DataStorage/Session/HttpSession.php @@ -206,6 +206,7 @@ class HttpSession implements SessionInterface private function destroy() /* : void */ { session_destroy(); + $this->sessionData = []; session_start(); } From 4fed8e5a4668eb41a665275a1f03dc8275af99bf Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 15:30:57 +0200 Subject: [PATCH 083/103] Bugfix if object already exists --- DataStorage/Database/DataMapperAbstract.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index d117baba4..15eff51a9 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -1498,6 +1498,8 @@ class DataMapperAbstract implements DataMapperInterface foreach ($primaryKey as $key => $value) { if(self::isInitialized(static::class, $value)) { + $obj[$value] = self::getInitialized(static::class, $value); + continue; } @@ -1911,6 +1913,21 @@ class DataMapperAbstract implements DataMapperInterface { return isset(self::$initObjects[$mapper]) && isset(self::$initObjects[$mapper][$id]); } + + /** + * Get initialized object + * + * @param string $mapper Mapper name + * @param mixed $id Object id + * + * @return object + * + * @since 1.0.0 + */ + private static function getInitialized($mapper, $id) + { + return self::$initObjects[$mapper][$id]; + } /** * Define the highest mapper of this request From 03d1073f2c95dda0659c15c4288dd7b2a9952f3b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 15:37:44 +0200 Subject: [PATCH 084/103] Prepare for array getRaw() --- DataStorage/Database/DataMapperAbstract.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index 15eff51a9..56f3e5902 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -1708,7 +1708,12 @@ class DataMapperAbstract implements DataMapperInterface public static function getRaw($primaryKey) : array { $query = self::getQuery(); - $query->where(static::$table . '.' . static::$primaryField, '=', $primaryKey); + + if(is_array($primaryKey)) { + $query->where(static::$table . '.' . static::$primaryField, 'in', $primaryKey); + } else { + $query->where(static::$table . '.' . static::$primaryField, '=', $primaryKey); + } $sth = self::$db->con->prepare($query->toSql()); $sth->execute(); From 5f5d5aab51a4b055ea7c3afcd7cd6e54e0343d25 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 15:42:25 +0200 Subject: [PATCH 085/103] Remove connector, is in connection --- .../Database/Connector/MysqlConnector.php | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 DataStorage/Database/Connector/MysqlConnector.php diff --git a/DataStorage/Database/Connector/MysqlConnector.php b/DataStorage/Database/Connector/MysqlConnector.php deleted file mode 100644 index 808dac6ed..000000000 --- a/DataStorage/Database/Connector/MysqlConnector.php +++ /dev/null @@ -1,21 +0,0 @@ - Date: Tue, 5 Sep 2017 15:42:33 +0200 Subject: [PATCH 086/103] Remove connector, is in connection --- .../Database/Connector/PostgresConnector.php | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 DataStorage/Database/Connector/PostgresConnector.php diff --git a/DataStorage/Database/Connector/PostgresConnector.php b/DataStorage/Database/Connector/PostgresConnector.php deleted file mode 100644 index aa39a6c7e..000000000 --- a/DataStorage/Database/Connector/PostgresConnector.php +++ /dev/null @@ -1,21 +0,0 @@ - Date: Tue, 5 Sep 2017 15:42:37 +0200 Subject: [PATCH 087/103] Remove connector, is in connection --- .../Database/Connector/SQLiteConnector.php | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 DataStorage/Database/Connector/SQLiteConnector.php diff --git a/DataStorage/Database/Connector/SQLiteConnector.php b/DataStorage/Database/Connector/SQLiteConnector.php deleted file mode 100644 index 27cf53e9c..000000000 --- a/DataStorage/Database/Connector/SQLiteConnector.php +++ /dev/null @@ -1,21 +0,0 @@ - Date: Tue, 5 Sep 2017 15:42:42 +0200 Subject: [PATCH 088/103] Remove connector, is in connection --- .../Database/Connector/SqlServerConnector.php | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 DataStorage/Database/Connector/SqlServerConnector.php diff --git a/DataStorage/Database/Connector/SqlServerConnector.php b/DataStorage/Database/Connector/SqlServerConnector.php deleted file mode 100644 index 75a6f1e6b..000000000 --- a/DataStorage/Database/Connector/SqlServerConnector.php +++ /dev/null @@ -1,21 +0,0 @@ - Date: Tue, 5 Sep 2017 18:47:01 +0200 Subject: [PATCH 089/103] Bug fix changes --- DataStorage/Database/DataMapperAbstract.php | 24 +-------- Message/HeaderAbstract.php | 56 ++++++++++++++++++--- Message/Http/Header.php | 3 +- Message/Http/Request.php | 6 ++- Uri/Http.php | 14 +++++- Views/View.php | 2 +- 6 files changed, 69 insertions(+), 36 deletions(-) diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index 56f3e5902..d117baba4 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -1498,8 +1498,6 @@ class DataMapperAbstract implements DataMapperInterface foreach ($primaryKey as $key => $value) { if(self::isInitialized(static::class, $value)) { - $obj[$value] = self::getInitialized(static::class, $value); - continue; } @@ -1708,12 +1706,7 @@ class DataMapperAbstract implements DataMapperInterface public static function getRaw($primaryKey) : array { $query = self::getQuery(); - - if(is_array($primaryKey)) { - $query->where(static::$table . '.' . static::$primaryField, 'in', $primaryKey); - } else { - $query->where(static::$table . '.' . static::$primaryField, '=', $primaryKey); - } + $query->where(static::$table . '.' . static::$primaryField, '=', $primaryKey); $sth = self::$db->con->prepare($query->toSql()); $sth->execute(); @@ -1918,21 +1911,6 @@ class DataMapperAbstract implements DataMapperInterface { return isset(self::$initObjects[$mapper]) && isset(self::$initObjects[$mapper][$id]); } - - /** - * Get initialized object - * - * @param string $mapper Mapper name - * @param mixed $id Object id - * - * @return object - * - * @since 1.0.0 - */ - private static function getInitialized($mapper, $id) - { - return self::$initObjects[$mapper][$id]; - } /** * Define the highest mapper of this request diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index fb3e4a4e1..0fd00cc2b 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -15,6 +15,8 @@ declare(strict_types=1); namespace phpOMS\Message; +use phpOMS\Localization\Localization; + /** * Response class. * @@ -57,9 +59,23 @@ abstract class HeaderAbstract * @since 1.0.0 */ protected $status = 0; + + /** + * Constructor. + * + * @since 1.0.0 + */ + public function __construct() + { + $this->l11n = new Localization(); + } /** - * {@inheritdoc} + * Get Localization + * + * @return Localization + * + * @since 1.0.0 */ public function getL11n() : Localization { @@ -67,7 +83,13 @@ abstract class HeaderAbstract } /** - * {@inheritdoc} + * Set localization + * + * @param int $localization Localization + * + * @return void + * + * @since 1.0.0 */ public function setL11n(Localization $l11n) /* : void */ { @@ -75,7 +97,11 @@ abstract class HeaderAbstract } /** - * {@inheritdoc} + * Get account id + * + * @return int + * + * @since 1.0.0 */ public function getAccount() : int { @@ -83,7 +109,13 @@ abstract class HeaderAbstract } /** - * {@inheritdoc} + * Set account id + * + * @param int $account Account id + * + * @return void + * + * @since 1.0.0 */ public function setAccount(int $account) /* : void */ { @@ -92,8 +124,13 @@ abstract class HeaderAbstract /** - * {@inheritdoc} - * todo: shouldn't this only be available in the header?! + * Set status code + * + * @param int $status Status code + * + * @return void + * + * @since 1.0.0 */ public function setStatusCode(int $status) /* : void */ { @@ -102,8 +139,11 @@ abstract class HeaderAbstract } /** - * {@inheritdoc} - * todo: shouldn't this only be available in the header?! + * Get status code + * + * @return int + * + * @since 1.0.0 */ public function getStatusCode() : int { diff --git a/Message/Http/Header.php b/Message/Http/Header.php index ebb6298b1..0a8e341b0 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -46,6 +46,7 @@ class Header extends HeaderAbstract public function __construct() { $this->set('Content-Type', 'text/html; charset=utf-8'); + parent::__construct(); } /** @@ -123,7 +124,7 @@ class Header extends HeaderAbstract * * @since 1.0.0 */ - public static function getStatusCode() : int + public function getStatusCode() : int { if($this->status === 0) { $this->status = \http_response_code(); diff --git a/Message/Http/Request.php b/Message/Http/Request.php index ff3d1817b..6f29e33c4 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -236,10 +236,12 @@ class Request extends RequestAbstract public function createRequestHashs(int $start = 0) /* : void */ { $this->hash = []; - foreach ($this->path as $key => $path) { + $pathArray = $this->uri->getPathElements(); + + foreach ($pathArray as $key => $path) { $paths = []; for ($i = $start; $i < $key + 1; $i++) { - $paths[] = $this->path[$i]; + $paths[] = $pathArray[$i]; } $this->hash[] = sha1(implode('', $paths)); diff --git a/Uri/Http.php b/Uri/Http.php index 406924df5..b05155738 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -257,6 +257,13 @@ class Http implements UriInterface return $this->path; } + /** + * Get path offset. + * + * @return int + * + * @since 1.0.0 + */ public function getPathOffset() : int { return substr_count($this->rootPath, '/') - 1; @@ -274,11 +281,16 @@ class Http implements UriInterface /** * {@inheritdoc} */ - public function getPathElement(int $pos) : string + public function getPathElement(int $pos = null) : string { return explode('/', $this->path)[$pos]; } + public function getPathElements() : array + { + return explode('/', $this->path); + } + /** * {@inheritdoc} */ diff --git a/Views/View.php b/Views/View.php index 8d124a8c5..678ce9b3e 100644 --- a/Views/View.php +++ b/Views/View.php @@ -87,7 +87,7 @@ class View extends ViewAbstract $this->app = $app; $this->request = $request; $this->response = $response; - $this->l11n = $response->getL11n(); + $this->l11n = $response->getHeader()->getL11n(); } /** From a7ed339bfbd17b1c7ac7f30cc0316b6b030b0ee1 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 Sep 2017 10:37:08 +0200 Subject: [PATCH 090/103] Throw exception for invalid storage --- System/File/Storage.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/System/File/Storage.php b/System/File/Storage.php index 9ad46868a..8309de2f1 100644 --- a/System/File/Storage.php +++ b/System/File/Storage.php @@ -71,9 +71,14 @@ final class Storage $stg = $env; $env = ucfirst(strtolower($env)); $env = __NAMESPACE__ . '\\' . $env . '\\' . $env . 'Storage'; - $env = $env::getInstance(); - self::$registered[$stg] = $env; + try { + $env = $env::getInstance(); + + self::$registered[$stg] = $env; + } catch(\Exception $e) { + throw new \Exception(); + } } return $env; From 312273584b1903ff913a97ac5f080c0d9ab83780 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 Sep 2017 10:41:21 +0200 Subject: [PATCH 091/103] Catch error --- System/File/Storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/File/Storage.php b/System/File/Storage.php index 8309de2f1..6807dbd39 100644 --- a/System/File/Storage.php +++ b/System/File/Storage.php @@ -76,7 +76,7 @@ final class Storage $env = $env::getInstance(); self::$registered[$stg] = $env; - } catch(\Exception $e) { + } catch(\Throwable $e) { throw new \Exception(); } } From ddd0cea898c034147a25a43d9a40a066e40f9d8b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 Sep 2017 10:46:26 +0200 Subject: [PATCH 092/103] Fix iso date of week --- Stdlib/Base/SmartDateTime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stdlib/Base/SmartDateTime.php b/Stdlib/Base/SmartDateTime.php index 44abdbe8c..d11778478 100644 --- a/Stdlib/Base/SmartDateTime.php +++ b/Stdlib/Base/SmartDateTime.php @@ -239,7 +239,7 @@ class SmartDateTime extends \DateTime $w = $w + date("z", mktime(0, 0, 0, $m, $d, $y)) + 1; $w = ($w - 1) % 7 + 1; - return $w === 7 ? 0 : $w + 1; + return $w === 7 ? 0 : $w; } /** From 34021f1cd5462eefb72e333ca4502aefdfa7b57b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 Sep 2017 14:54:13 +0200 Subject: [PATCH 093/103] Improved recursion fix --- Views/ViewAbstract.php | 34 ++++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index e96f95de7..ce758048b 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -237,22 +237,28 @@ abstract class ViewAbstract implements \Serializable */ public function render(...$data) { - $path = __DIR__ . '/../..' . $this->template . '.tpl.php'; + $ob = ''; - if (!file_exists($path)) { - throw new PathException($path); + try { + $path = __DIR__ . '/../..' . $this->template . '.tpl.php'; + + if (!file_exists($path)) { + throw new PathException($path); + } + + ob_start(); + /** @noinspection PhpIncludeInspection */ + $data = include $path; + $ob = ob_get_clean(); + + if (is_array($data)) { + return $data; + } + } catch(\Throwable $e) { + $ob = ''; + } finally { + return $ob; } - - ob_start(); - /** @noinspection PhpIncludeInspection */ - $tpl = include $path; - $ob = ob_get_clean(); - - if (is_array($tpl)) { - return $tpl; - } - - return $ob; } /** From 68328c8b5cc482846323fac1184cd76bf0181b96 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 Sep 2017 15:06:11 +0200 Subject: [PATCH 094/103] Fix invalid path exception --- Views/ViewAbstract.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index ce758048b..cf962f605 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -239,13 +239,14 @@ abstract class ViewAbstract implements \Serializable { $ob = ''; - try { + $path = __DIR__ . '/../..' . $this->template . '.tpl.php'; - if (!file_exists($path)) { - throw new PathException($path); - } + if (!file_exists($path)) { + throw new PathException($path); + } + try { ob_start(); /** @noinspection PhpIncludeInspection */ $data = include $path; From b6251f0ef27cc5893da1c4697184e928e61c171c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 Sep 2017 15:14:17 +0200 Subject: [PATCH 095/103] Remove createdAt --- Account/Group.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Account/Group.php b/Account/Group.php index a44f90cb7..7cd93fae0 100644 --- a/Account/Group.php +++ b/Account/Group.php @@ -93,14 +93,6 @@ class Group implements ArrayableInterface, \JsonSerializable */ protected $createdAt = null; - /** - * Created by. - * - * @var int - * @since 1.0.0 - */ - protected $createdBy = 0; - /** * Constructor. * @@ -108,7 +100,6 @@ class Group implements ArrayableInterface, \JsonSerializable */ public function __construct() { - $this->createdAt = new \DateTime('now'); } /** @@ -230,7 +221,6 @@ class Group implements ArrayableInterface, \JsonSerializable 'name' => $this->name, 'description' => $this->description, 'createdBy' => $this->createdBy, - 'createdAt' => $this->createdAt->format('Y-m-d H:i:s'), 'permissions' => $this->permissions, 'members' => $this->members, ]; From 3db30730612a623ff7bfc8b4042308dd82e6eb11 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 Sep 2017 15:17:33 +0200 Subject: [PATCH 096/103] Remove created by --- Account/Group.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Account/Group.php b/Account/Group.php index 7cd93fae0..fde961c6a 100644 --- a/Account/Group.php +++ b/Account/Group.php @@ -85,14 +85,6 @@ class Group implements ArrayableInterface, \JsonSerializable */ protected $permissions = []; - /** - * Created at. - * - * @var \DateTime - * @since 1.0.0 - */ - protected $createdAt = null; - /** * Constructor. * @@ -220,7 +212,6 @@ class Group implements ArrayableInterface, \JsonSerializable 'id' => $this->id, 'name' => $this->name, 'description' => $this->description, - 'createdBy' => $this->createdBy, 'permissions' => $this->permissions, 'members' => $this->members, ]; From 631260428db8a03078c0808644a97b03a572037f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 8 Sep 2017 09:23:57 +0200 Subject: [PATCH 097/103] Remove double column select --- Module/ModuleManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index a7169c947..5fce9799f 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -532,7 +532,7 @@ class ModuleManager if ($this->installed === null) { switch ($this->app->dbPool->get('core')->getType()) { case DatabaseType::MYSQL: - $sth = $this->app->dbPool->get('core')->con->prepare('SELECT `module_id`,`module_theme`,`module_version`,`module_id` FROM `' . $this->app->dbPool->get('core')->prefix . 'module`'); + $sth = $this->app->dbPool->get('core')->con->prepare('SELECT `module_id`,`module_theme`,`module_version` FROM `' . $this->app->dbPool->get('core')->prefix . 'module`'); $sth->execute(); $this->installed = $sth->fetchAll(\PDO::FETCH_GROUP); break; From f2c8abee772fde6012dff0926070d0700c345819 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 8 Sep 2017 17:51:08 +0200 Subject: [PATCH 098/103] Fix pid installation --- Module/InstallerAbstract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module/InstallerAbstract.php b/Module/InstallerAbstract.php index b2a3bb619..05678fc14 100644 --- a/Module/InstallerAbstract.php +++ b/Module/InstallerAbstract.php @@ -69,7 +69,7 @@ class InstallerAbstract $load = $info->getLoad(); foreach ($load as $val) { foreach ($val['pid'] as $pid) { - $sth->bindValue(':pid', $pid, \PDO::PARAM_STR); + $sth->bindValue(':pid', sha1(str_replace('/', '', $pid)), \PDO::PARAM_STR); $sth->bindValue(':type', $val['type'], \PDO::PARAM_INT); $sth->bindValue(':from', $val['from'], \PDO::PARAM_STR); $sth->bindValue(':for', $val['for'], \PDO::PARAM_STR); From 0c157cddf67979ffa26861b108ebe7b1cd1ed995 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 8 Sep 2017 19:07:50 +0200 Subject: [PATCH 099/103] fixes #40 --- Validation/Finance/IbanEnum.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Validation/Finance/IbanEnum.php b/Validation/Finance/IbanEnum.php index bd9bf8de6..3d2f2098e 100644 --- a/Validation/Finance/IbanEnum.php +++ b/Validation/Finance/IbanEnum.php @@ -54,7 +54,7 @@ class IbanEnum extends Enum /* public */ const C_GR = 'GRkk bbbs sssc cccc cccc cccc ccc'; /* public */ const C_GL = 'GLkk bbbb cccc cccc cc'; /* public */ const C_GT = 'GTkk bbbb mmtt cccc cccc cccc cccc'; - /* public */ const C_HU = 'HUkk bbbs sssk cccc cccc cccc cccx'; + /* public */ const C_HU = 'HUkk bbbs sssx cccc cccc cccc cccx'; /* public */ const C_IS = 'ISkk bbbb sscc cccc iiii iiii ii'; /* public */ const C_IE = 'IEkk aaaa bbbb bbcc cccc cc'; /* public */ const C_IL = 'ILkk bbbn nncc cccc cccc ccc'; From c2e5dd81052f7da0bdf86a03d6890b3852750f77 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 8 Sep 2017 19:30:56 +0200 Subject: [PATCH 100/103] fixes #35 --- Config/SettingsAbstract.php | 5 +++- .../Database/DatabaseExceptionFactory.php | 25 ++++++++++++++++--- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/Config/SettingsAbstract.php b/Config/SettingsAbstract.php index 39ca54f50..9b6a597de 100644 --- a/Config/SettingsAbstract.php +++ b/Config/SettingsAbstract.php @@ -113,7 +113,10 @@ abstract class SettingsAbstract implements OptionsInterface return $options; } catch (\PDOException $e) { // todo does it mean that the recognition isn't here but at the place where the new happens? - throw DatabaseExceptionFactory::create($e); + $exception = DatabaseExceptionFactory::createException($e); + $message = DatabaseExceptionFactory::createExceptionMessage($e); + + throw new $exception($message); } } diff --git a/DataStorage/Database/DatabaseExceptionFactory.php b/DataStorage/Database/DatabaseExceptionFactory.php index a4df4cec1..3348b22c6 100644 --- a/DataStorage/Database/DatabaseExceptionFactory.php +++ b/DataStorage/Database/DatabaseExceptionFactory.php @@ -37,7 +37,7 @@ class DatabaseExceptionFactory * * @since 1.0.0 */ - public static function create(\PDOException $e) : \PDOException + public static function createException(\PDOException $e) : \PDOException { switch ($e->getCode()) { case '42S02': @@ -47,6 +47,25 @@ class DatabaseExceptionFactory } } + /** + * Constructor. + * + * @param \PDOException $e Exception + * + * @return \PDOException + * + * @since 1.0.0 + */ + public static function createExceptionMessage(\PDOException $e) : \PDOException + { + switch ($e->getCode()) { + case '42S02': + return self::createTableViewExceptionMessage($e); + default: + return $e; + } + } + /** * Create table exception. * @@ -56,8 +75,8 @@ class DatabaseExceptionFactory * * @since 1.0.0 */ - private static function createTableViewException(\PDOException $e) : \PDOException + private static function createTableViewException(\PDOException $e) : string { - return new TableException(TableException::findTable($e->getMessage())); + return TableException::findTable($e->getMessage()); } } From ad3f91bf24967d51ab6d65a33dadb9d1bdb961c8 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 8 Sep 2017 19:34:33 +0200 Subject: [PATCH 101/103] fix return types --- .../Database/DatabaseExceptionFactory.php | 32 +++++-------------- 1 file changed, 8 insertions(+), 24 deletions(-) diff --git a/DataStorage/Database/DatabaseExceptionFactory.php b/DataStorage/Database/DatabaseExceptionFactory.php index 3348b22c6..7a88508d4 100644 --- a/DataStorage/Database/DatabaseExceptionFactory.php +++ b/DataStorage/Database/DatabaseExceptionFactory.php @@ -15,8 +15,6 @@ declare(strict_types=1); namespace phpOMS\DataStorage\Database; -use phpOMS\DataStorage\Database\Schema\Exception\TableException; - /** * Database exception factory. * @@ -33,17 +31,17 @@ class DatabaseExceptionFactory * * @param \PDOException $e Exception * - * @return \PDOException + * @return string * * @since 1.0.0 */ - public static function createException(\PDOException $e) : \PDOException + public static function createException(\PDOException $e) : string { switch ($e->getCode()) { case '42S02': - return self::createTableViewException($e); + return '\phpOMS\DataStorage\Database\Schema\Exception\TableException'; default: - return $e; + return '\PDOException'; } } @@ -52,31 +50,17 @@ class DatabaseExceptionFactory * * @param \PDOException $e Exception * - * @return \PDOException + * @return string * * @since 1.0.0 */ - public static function createExceptionMessage(\PDOException $e) : \PDOException + public static function createExceptionMessage(\PDOException $e) : string { switch ($e->getCode()) { case '42S02': - return self::createTableViewExceptionMessage($e); + return TableException::findTable($e->getMessage()); default: - return $e; + return $e->getMessage(); } } - - /** - * Create table exception. - * - * @param \PDOException $e Exception - * - * @return \PDOException - * - * @since 1.0.0 - */ - private static function createTableViewException(\PDOException $e) : string - { - return TableException::findTable($e->getMessage()); - } } From b93f249aa8ba62e3b104b547a725594bf3db3d18 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 8 Sep 2017 19:36:31 +0200 Subject: [PATCH 102/103] remove todo --- Config/SettingsAbstract.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Config/SettingsAbstract.php b/Config/SettingsAbstract.php index 9b6a597de..aa65eb9ca 100644 --- a/Config/SettingsAbstract.php +++ b/Config/SettingsAbstract.php @@ -112,7 +112,6 @@ abstract class SettingsAbstract implements OptionsInterface return $options; } catch (\PDOException $e) { - // todo does it mean that the recognition isn't here but at the place where the new happens? $exception = DatabaseExceptionFactory::createException($e); $message = DatabaseExceptionFactory::createExceptionMessage($e); From 02bf21400faaa14c3a250aa00f630b32a623139f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 8 Sep 2017 20:13:09 +0200 Subject: [PATCH 103/103] fixes #30 --- Math/{ => Geometry}/Shape/D2/Circle.php | 2 +- Math/{ => Geometry}/Shape/D2/D2ShapeInterface.php | 4 ++-- Math/{ => Geometry}/Shape/D2/Ellipse.php | 2 +- Math/{ => Geometry}/Shape/D2/Polygon.php | 2 +- Math/{ => Geometry}/Shape/D2/Quadrilateral.php | 2 +- Math/{ => Geometry}/Shape/D2/Rectangle.php | 2 +- Math/{ => Geometry}/Shape/D2/Trapezoid.php | 2 +- Math/{ => Geometry}/Shape/D2/Triangle.php | 2 +- Math/{ => Geometry}/Shape/D3/Cone.php | 2 +- Math/{ => Geometry}/Shape/D3/Cuboid.php | 2 +- Math/{ => Geometry}/Shape/D3/Cylinder.php | 2 +- Math/{ => Geometry}/Shape/D3/D3ShapeInterface.php | 4 ++-- Math/{ => Geometry}/Shape/D3/Prism.php | 2 +- Math/{ => Geometry}/Shape/D3/RectangularPyramid.php | 2 +- Math/{ => Geometry}/Shape/D3/Sphere.php | 4 ++-- Math/{ => Geometry}/Shape/D3/Tetrahedron.php | 2 +- Math/{ => Geometry}/Shape/ShapeInterface.php | 2 +- Math/Optimization/TSP/City.php | 2 +- 18 files changed, 21 insertions(+), 21 deletions(-) rename Math/{ => Geometry}/Shape/D2/Circle.php (97%) rename Math/{ => Geometry}/Shape/D2/D2ShapeInterface.php (84%) rename Math/{ => Geometry}/Shape/D2/Ellipse.php (97%) rename Math/{ => Geometry}/Shape/D2/Polygon.php (99%) rename Math/{ => Geometry}/Shape/D2/Quadrilateral.php (87%) rename Math/{ => Geometry}/Shape/D2/Rectangle.php (96%) rename Math/{ => Geometry}/Shape/D2/Trapezoid.php (98%) rename Math/{ => Geometry}/Shape/D2/Triangle.php (97%) rename Math/{ => Geometry}/Shape/D3/Cone.php (97%) rename Math/{ => Geometry}/Shape/D3/Cuboid.php (96%) rename Math/{ => Geometry}/Shape/D3/Cylinder.php (97%) rename Math/{ => Geometry}/Shape/D3/D3ShapeInterface.php (84%) rename Math/{ => Geometry}/Shape/D3/Prism.php (87%) rename Math/{ => Geometry}/Shape/D3/RectangularPyramid.php (97%) rename Math/{ => Geometry}/Shape/D3/Sphere.php (98%) rename Math/{ => Geometry}/Shape/D3/Tetrahedron.php (96%) rename Math/{ => Geometry}/Shape/ShapeInterface.php (92%) diff --git a/Math/Shape/D2/Circle.php b/Math/Geometry/Shape/D2/Circle.php similarity index 97% rename from Math/Shape/D2/Circle.php rename to Math/Geometry/Shape/D2/Circle.php index 9e70ceb41..996785427 100644 --- a/Math/Shape/D2/Circle.php +++ b/Math/Geometry/Shape/D2/Circle.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D2; +namespace phpOMS\Math\Geometry\Shape\D2; /** * Circle shape. diff --git a/Math/Shape/D2/D2ShapeInterface.php b/Math/Geometry/Shape/D2/D2ShapeInterface.php similarity index 84% rename from Math/Shape/D2/D2ShapeInterface.php rename to Math/Geometry/Shape/D2/D2ShapeInterface.php index c1c432d34..47be0c709 100644 --- a/Math/Shape/D2/D2ShapeInterface.php +++ b/Math/Geometry/Shape/D2/D2ShapeInterface.php @@ -13,9 +13,9 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D2; +namespace phpOMS\Math\Geometry\Shape\D2; -use phpOMS\Math\Shape\ShapeInterface; +use phpOMS\Math\Geometry\Shape\ShapeInterface; /** * Shape interface. diff --git a/Math/Shape/D2/Ellipse.php b/Math/Geometry/Shape/D2/Ellipse.php similarity index 97% rename from Math/Shape/D2/Ellipse.php rename to Math/Geometry/Shape/D2/Ellipse.php index 574e630c7..289f1c297 100644 --- a/Math/Shape/D2/Ellipse.php +++ b/Math/Geometry/Shape/D2/Ellipse.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D2; +namespace phpOMS\Math\Geometry\Shape\D2; /** * Ellipse shape. diff --git a/Math/Shape/D2/Polygon.php b/Math/Geometry/Shape/D2/Polygon.php similarity index 99% rename from Math/Shape/D2/Polygon.php rename to Math/Geometry/Shape/D2/Polygon.php index 92c844ea0..a003b6341 100644 --- a/Math/Shape/D2/Polygon.php +++ b/Math/Geometry/Shape/D2/Polygon.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D2; +namespace phpOMS\Math\Geometry\Shape\D2; /** * Polygon class. diff --git a/Math/Shape/D2/Quadrilateral.php b/Math/Geometry/Shape/D2/Quadrilateral.php similarity index 87% rename from Math/Shape/D2/Quadrilateral.php rename to Math/Geometry/Shape/D2/Quadrilateral.php index 9227af40a..a2eb21912 100644 --- a/Math/Shape/D2/Quadrilateral.php +++ b/Math/Geometry/Shape/D2/Quadrilateral.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Shape\D2; + namespace phpOMS\Math\Geometry\Shape\D2; class Quadrilateral implements D2ShapeInterface { diff --git a/Math/Shape/D2/Rectangle.php b/Math/Geometry/Shape/D2/Rectangle.php similarity index 96% rename from Math/Shape/D2/Rectangle.php rename to Math/Geometry/Shape/D2/Rectangle.php index ea1034bbe..05d43d330 100644 --- a/Math/Shape/D2/Rectangle.php +++ b/Math/Geometry/Shape/D2/Rectangle.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D2; +namespace phpOMS\Math\Geometry\Shape\D2; /** * Rectangle shape. diff --git a/Math/Shape/D2/Trapezoid.php b/Math/Geometry/Shape/D2/Trapezoid.php similarity index 98% rename from Math/Shape/D2/Trapezoid.php rename to Math/Geometry/Shape/D2/Trapezoid.php index 720af871f..a0943ea2b 100644 --- a/Math/Shape/D2/Trapezoid.php +++ b/Math/Geometry/Shape/D2/Trapezoid.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D2; +namespace phpOMS\Math\Geometry\Shape\D2; /** * Trapezoid shape. diff --git a/Math/Shape/D2/Triangle.php b/Math/Geometry/Shape/D2/Triangle.php similarity index 97% rename from Math/Shape/D2/Triangle.php rename to Math/Geometry/Shape/D2/Triangle.php index 6fd63b202..4493d196b 100644 --- a/Math/Shape/D2/Triangle.php +++ b/Math/Geometry/Shape/D2/Triangle.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D2; +namespace phpOMS\Math\Geometry\Shape\D2; /** * Triangle shape. diff --git a/Math/Shape/D3/Cone.php b/Math/Geometry/Shape/D3/Cone.php similarity index 97% rename from Math/Shape/D3/Cone.php rename to Math/Geometry/Shape/D3/Cone.php index c2993b0a8..2dc80e45e 100644 --- a/Math/Shape/D3/Cone.php +++ b/Math/Geometry/Shape/D3/Cone.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D3; +namespace phpOMS\Math\Geometry\Shape\D3; /** * Cone shape. diff --git a/Math/Shape/D3/Cuboid.php b/Math/Geometry/Shape/D3/Cuboid.php similarity index 96% rename from Math/Shape/D3/Cuboid.php rename to Math/Geometry/Shape/D3/Cuboid.php index 1e8f1dd0a..35ce4f6ae 100644 --- a/Math/Shape/D3/Cuboid.php +++ b/Math/Geometry/Shape/D3/Cuboid.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D3; +namespace phpOMS\Math\Geometry\Shape\D3; /** * Cuboid shape. diff --git a/Math/Shape/D3/Cylinder.php b/Math/Geometry/Shape/D3/Cylinder.php similarity index 97% rename from Math/Shape/D3/Cylinder.php rename to Math/Geometry/Shape/D3/Cylinder.php index 5bed17dc2..2062250e0 100644 --- a/Math/Shape/D3/Cylinder.php +++ b/Math/Geometry/Shape/D3/Cylinder.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D3; +namespace phpOMS\Math\Geometry\Shape\D3; /** * Cylinder shape. diff --git a/Math/Shape/D3/D3ShapeInterface.php b/Math/Geometry/Shape/D3/D3ShapeInterface.php similarity index 84% rename from Math/Shape/D3/D3ShapeInterface.php rename to Math/Geometry/Shape/D3/D3ShapeInterface.php index 9c51a7330..af28edc99 100644 --- a/Math/Shape/D3/D3ShapeInterface.php +++ b/Math/Geometry/Shape/D3/D3ShapeInterface.php @@ -13,9 +13,9 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D3; +namespace phpOMS\Math\Geometry\Shape\D3; -use phpOMS\Math\Shape\ShapeInterface; +use phpOMS\Math\Geometry\Shape\ShapeInterface; /** * Shape interface. diff --git a/Math/Shape/D3/Prism.php b/Math/Geometry/Shape/D3/Prism.php similarity index 87% rename from Math/Shape/D3/Prism.php rename to Math/Geometry/Shape/D3/Prism.php index b94ae9452..f6ba669a5 100644 --- a/Math/Shape/D3/Prism.php +++ b/Math/Geometry/Shape/D3/Prism.php @@ -12,7 +12,7 @@ * @link http://orange-management.com */ declare(strict_types=1); - namespace phpOMS\Math\Shape\D3; + namespace phpOMS\Math\Geometry\Shape\D3; class Prism implements D3ShapeInterface { diff --git a/Math/Shape/D3/RectangularPyramid.php b/Math/Geometry/Shape/D3/RectangularPyramid.php similarity index 97% rename from Math/Shape/D3/RectangularPyramid.php rename to Math/Geometry/Shape/D3/RectangularPyramid.php index 9e20950dd..2c437a905 100644 --- a/Math/Shape/D3/RectangularPyramid.php +++ b/Math/Geometry/Shape/D3/RectangularPyramid.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D3; +namespace phpOMS\Math\Geometry\Shape\D3; /** * Rectangular pyramid shape. diff --git a/Math/Shape/D3/Sphere.php b/Math/Geometry/Shape/D3/Sphere.php similarity index 98% rename from Math/Shape/D3/Sphere.php rename to Math/Geometry/Shape/D3/Sphere.php index 41fbc8763..334e872b6 100644 --- a/Math/Shape/D3/Sphere.php +++ b/Math/Geometry/Shape/D3/Sphere.php @@ -13,13 +13,13 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D3; +namespace phpOMS\Math\Geometry\Shape\D3; /** * Sphere shape. * * @category Framework - * @package phpOMS\Math\Shape + * @package phpOMS\Math\Geometry\Shape * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 diff --git a/Math/Shape/D3/Tetrahedron.php b/Math/Geometry/Shape/D3/Tetrahedron.php similarity index 96% rename from Math/Shape/D3/Tetrahedron.php rename to Math/Geometry/Shape/D3/Tetrahedron.php index 58066b9c5..e50351841 100644 --- a/Math/Shape/D3/Tetrahedron.php +++ b/Math/Geometry/Shape/D3/Tetrahedron.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape\D3; +namespace phpOMS\Math\Geometry\Shape\D3; /** * Tetraedron shape. diff --git a/Math/Shape/ShapeInterface.php b/Math/Geometry/Shape/ShapeInterface.php similarity index 92% rename from Math/Shape/ShapeInterface.php rename to Math/Geometry/Shape/ShapeInterface.php index 4b4e5743d..8e336e504 100644 --- a/Math/Shape/ShapeInterface.php +++ b/Math/Geometry/Shape/ShapeInterface.php @@ -13,7 +13,7 @@ */ declare(strict_types=1); -namespace phpOMS\Math\Shape; +namespace phpOMS\Math\Geometry\Shape; /** * Shape interface. diff --git a/Math/Optimization/TSP/City.php b/Math/Optimization/TSP/City.php index b0e9be4da..d2e45f0f7 100644 --- a/Math/Optimization/TSP/City.php +++ b/Math/Optimization/TSP/City.php @@ -15,7 +15,7 @@ declare(strict_types=1); namespace phpOMS\Math\Optimization\TSP; -use phpOMS\Math\Shape\D3\Sphere; +use phpOMS\Math\Geometry\Shape\D3\Sphere; /** * City class.