diff --git a/Account/Account.php b/Account/Account.php index 8af202b39..7950ecfa8 100644 --- a/Account/Account.php +++ b/Account/Account.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn @@ -39,7 +39,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var int * @since 1.0.0 */ - protected $id = 0; + protected int $id = 0; /** * Names. @@ -47,7 +47,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var string * @since 1.0.0 */ - protected $name1 = ''; + protected string $name1 = ''; /** * Names. @@ -55,7 +55,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var string * @since 1.0.0 */ - protected $name2 = ''; + protected string $name2 = ''; /** * Names. @@ -63,7 +63,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var string * @since 1.0.0 */ - protected $name3 = ''; + protected string $name3 = ''; /** * Email. @@ -71,7 +71,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var string * @since 1.0.0 */ - protected $email = ''; + protected string $email = ''; /** * Ip. @@ -81,7 +81,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var string * @since 1.0.0 */ - protected $origin = ''; + protected string $origin = ''; /** * Login. @@ -89,7 +89,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var null|string * @since 1.0.0 */ - protected $login = null; + protected ?string $login = null; /** * Last activity. @@ -97,7 +97,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var \DateTime * @since 1.0.0 */ - protected $lastActive = null; + protected ?\DateTime $lastActive = null; /** * Last activity. @@ -105,7 +105,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var \DateTime * @since 1.0.0 */ - protected $createdAt = null; + protected ?\DateTime $createdAt = null; /** * Groups. @@ -113,7 +113,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var int[] * @since 1.0.0 */ - protected $groups = []; + protected array $groups = []; /** * Password. @@ -121,7 +121,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var string * @since 1.0.0 */ - protected $password = ''; + protected string $password = ''; /** * Account type. @@ -129,7 +129,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var int * @since 1.0.0 */ - protected $type = AccountType::USER; + protected int $type = AccountType::USER; /** * Account status. @@ -137,7 +137,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var int * @since 1.0.0 */ - protected $status = AccountStatus::INACTIVE; + protected int $status = AccountStatus::INACTIVE; /** * Localization. @@ -145,7 +145,7 @@ class Account implements ArrayableInterface, \JsonSerializable * @var Localization * @since 1.0.0 */ - protected $l11n = null; + protected ?Localization $l11n = null; use PermissionHandlingTrait; diff --git a/Account/AccountManager.php b/Account/AccountManager.php index 25ad73856..c743978f9 100644 --- a/Account/AccountManager.php +++ b/Account/AccountManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn @@ -36,15 +36,15 @@ final class AccountManager implements \Countable * @var Account[] * @since 1.0.0 */ - private $accounts = []; + private array $accounts = []; /** * Session. * - * @var SessionInterface + * @var null|SessionInterface * @since 1.0.0 */ - private $session = null; + private ?SessionInterface $session = null; /** * Constructor. diff --git a/Account/AccountStatus.php b/Account/AccountStatus.php index 99d1bbaea..1403649a4 100644 --- a/Account/AccountStatus.php +++ b/Account/AccountStatus.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn diff --git a/Account/AccountType.php b/Account/AccountType.php index ed277c765..3cf33746f 100644 --- a/Account/AccountType.php +++ b/Account/AccountType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn diff --git a/Account/Group.php b/Account/Group.php index 3fe97c31e..15f2b3458 100644 --- a/Account/Group.php +++ b/Account/Group.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn @@ -34,7 +34,7 @@ class Group implements ArrayableInterface, \JsonSerializable * @var int * @since 1.0.0 */ - protected $id = 0; + protected int $id = 0; /** * Group name. @@ -42,7 +42,7 @@ class Group implements ArrayableInterface, \JsonSerializable * @var string * @since 1.0.0 */ - protected $name = ''; + protected string $name = ''; /** * Group name. @@ -50,7 +50,7 @@ class Group implements ArrayableInterface, \JsonSerializable * @var string * @since 1.0.0 */ - protected $description = ''; + protected string $description = ''; /** * Group members. @@ -58,7 +58,7 @@ class Group implements ArrayableInterface, \JsonSerializable * @var array * @since 1.0.0 */ - protected $members = []; + protected array $members = []; /** * Parents. @@ -66,7 +66,7 @@ class Group implements ArrayableInterface, \JsonSerializable * @var int[] * @since 1.0.0 */ - protected $parents = []; + protected array $parents = []; /** * Group status. @@ -74,7 +74,7 @@ class Group implements ArrayableInterface, \JsonSerializable * @var int * @since 1.0.0 */ - protected $status = GroupStatus::INACTIVE; + protected int $status = GroupStatus::INACTIVE; use PermissionHandlingTrait; diff --git a/Account/GroupStatus.php b/Account/GroupStatus.php index 3726aed3f..37d7b200c 100644 --- a/Account/GroupStatus.php +++ b/Account/GroupStatus.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn diff --git a/Account/NullAccount.php b/Account/NullAccount.php index 1109e0284..5a7f7ee5b 100644 --- a/Account/NullAccount.php +++ b/Account/NullAccount.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn diff --git a/Account/PermissionAbstract.php b/Account/PermissionAbstract.php index 2794f5bd2..d56ef19c1 100644 --- a/Account/PermissionAbstract.php +++ b/Account/PermissionAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn @@ -33,7 +33,7 @@ class PermissionAbstract implements \JsonSerializable * @var int * @since 1.0.0 */ - protected $id = 0; + protected int $id = 0; /** * Unit id. @@ -41,7 +41,7 @@ class PermissionAbstract implements \JsonSerializable * @var null|int * @since 1.0.0 */ - protected $unit = null; + protected ?int $unit = null; /** * App name. @@ -49,7 +49,7 @@ class PermissionAbstract implements \JsonSerializable * @var null|string * @since 1.0.0 */ - protected $app = null; + protected ?string $app = null; /** * Module id. @@ -57,7 +57,7 @@ class PermissionAbstract implements \JsonSerializable * @var null|string * @since 1.0.0 */ - protected $module = null; + protected ?string $module = null; /** * Providing module id. @@ -65,7 +65,7 @@ class PermissionAbstract implements \JsonSerializable * @var int * @since 1.0.0 */ - protected $from = 0; + protected int $from = 0; /** * Type. @@ -73,7 +73,7 @@ class PermissionAbstract implements \JsonSerializable * @var null|int * @since 1.0.0 */ - protected $type = null; + protected ?int $type = null; /** * Element id. @@ -81,7 +81,7 @@ class PermissionAbstract implements \JsonSerializable * @var null|int * @since 1.0.0 */ - protected $element = null; + protected ?int $element = null; /** * Component id. @@ -89,7 +89,7 @@ class PermissionAbstract implements \JsonSerializable * @var null|int * @since 1.0.0 */ - protected $component = null; + protected ?int $component = null; /** * Permission. @@ -97,8 +97,21 @@ class PermissionAbstract implements \JsonSerializable * @var int * @since 1.0.0 */ - protected $permission = PermissionType::NONE; + protected int $permission = PermissionType::NONE; + /** + * Constructor. + * + * @param null|int $unit Unit Unit to check (null if all are acceptable) + * @param null|string $app App App to check (null if all are acceptable) + * @param null|string $module Module Module to check (null if all are acceptable) + * @param null|int $type Type (e.g. customer) (null if all are acceptable) + * @param null|int $element (e.g. customer id) (null if all are acceptable) + * @param null|int $component (e.g. address) (null if all are acceptable) + * @param int $permission Permission to check + * + * @since 1.0.0 + */ public function __construct( int $unit = null, string $app = null, diff --git a/Account/PermissionHandlingTrait.php b/Account/PermissionHandlingTrait.php index 0a3956743..2485e6554 100644 --- a/Account/PermissionHandlingTrait.php +++ b/Account/PermissionHandlingTrait.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn @@ -30,7 +30,7 @@ trait PermissionHandlingTrait * @var PermissionAbstract[] * @since 1.0.0 */ - protected $permissions = []; + protected array $permissions = []; /** * Set permissions. diff --git a/Account/PermissionOwner.php b/Account/PermissionOwner.php index 8f441758b..977762643 100644 --- a/Account/PermissionOwner.php +++ b/Account/PermissionOwner.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn diff --git a/Account/PermissionType.php b/Account/PermissionType.php index a3521f68f..0b19a4a1f 100644 --- a/Account/PermissionType.php +++ b/Account/PermissionType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Account * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/BeadSort.php b/Algorithm/Sort/BeadSort.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Algorithm/Sort/BubbleSort.php b/Algorithm/Sort/BubbleSort.php index 3d4a74138..82f599bb4 100644 --- a/Algorithm/Sort/BubbleSort.php +++ b/Algorithm/Sort/BubbleSort.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/CocktailShakerSort.php b/Algorithm/Sort/CocktailShakerSort.php index a9bc43a84..cfc679692 100644 --- a/Algorithm/Sort/CocktailShakerSort.php +++ b/Algorithm/Sort/CocktailShakerSort.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/CombSort.php b/Algorithm/Sort/CombSort.php index a48ecd8f3..d4bd3df6d 100644 --- a/Algorithm/Sort/CombSort.php +++ b/Algorithm/Sort/CombSort.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/GnomeSort.php b/Algorithm/Sort/GnomeSort.php index ff99b086f..89cb4d7ce 100644 --- a/Algorithm/Sort/GnomeSort.php +++ b/Algorithm/Sort/GnomeSort.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/OddEvenSort.php b/Algorithm/Sort/OddEvenSort.php index 05089e6ee..076ac36df 100644 --- a/Algorithm/Sort/OddEvenSort.php +++ b/Algorithm/Sort/OddEvenSort.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/QuickSort.php b/Algorithm/Sort/QuickSort.php index cf392bbee..0b3444db3 100644 --- a/Algorithm/Sort/QuickSort.php +++ b/Algorithm/Sort/QuickSort.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/SelectionSort.php b/Algorithm/Sort/SelectionSort.php index 43ba1abc5..f3851dd25 100644 --- a/Algorithm/Sort/SelectionSort.php +++ b/Algorithm/Sort/SelectionSort.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/SortInterface.php b/Algorithm/Sort/SortInterface.php index ff05092f4..44ef1ae1a 100644 --- a/Algorithm/Sort/SortInterface.php +++ b/Algorithm/Sort/SortInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/SortOrder.php b/Algorithm/Sort/SortOrder.php index 0aa69191b..93a6013da 100644 --- a/Algorithm/Sort/SortOrder.php +++ b/Algorithm/Sort/SortOrder.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort * @copyright Dennis Eichhorn diff --git a/Algorithm/Sort/SortableInterface.php b/Algorithm/Sort/SortableInterface.php index 5f44e5e64..71ab63491 100644 --- a/Algorithm/Sort/SortableInterface.php +++ b/Algorithm/Sort/SortableInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Algorithm\Sort; * @copyright Dennis Eichhorn diff --git a/ApplicationAbstract.php b/ApplicationAbstract.php index c289e83ef..d8e67c80a 100644 --- a/ApplicationAbstract.php +++ b/ApplicationAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS * @copyright Dennis Eichhorn diff --git a/Asset/AssetManager.php b/Asset/AssetManager.php index 39eced6ea..4511fc2a2 100644 --- a/Asset/AssetManager.php +++ b/Asset/AssetManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Asset * @copyright Dennis Eichhorn diff --git a/Asset/AssetType.php b/Asset/AssetType.php index 52b8cb35d..103304077 100644 --- a/Asset/AssetType.php +++ b/Asset/AssetType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Asset * @copyright Dennis Eichhorn diff --git a/Auth/Auth.php b/Auth/Auth.php index 2decacf48..09fa01b3e 100644 --- a/Auth/Auth.php +++ b/Auth/Auth.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Auth * @copyright Dennis Eichhorn diff --git a/Auth/LoginReturnType.php b/Auth/LoginReturnType.php index 79130ff1e..8c6664e90 100644 --- a/Auth/LoginReturnType.php +++ b/Auth/LoginReturnType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Auth * @copyright Dennis Eichhorn diff --git a/AutoloadException.php b/AutoloadException.php index 52d6fd53e..e0b11c9c8 100644 --- a/AutoloadException.php +++ b/AutoloadException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS * @copyright Dennis Eichhorn diff --git a/Autoloader.php b/Autoloader.php index a740d33f2..510bbe779 100644 --- a/Autoloader.php +++ b/Autoloader.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS * @copyright Dennis Eichhorn diff --git a/Business/Finance/Depreciation.php b/Business/Finance/Depreciation.php index 124722178..67091078b 100644 --- a/Business/Finance/Depreciation.php +++ b/Business/Finance/Depreciation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Finance * @copyright Dennis Eichhorn diff --git a/Business/Finance/FinanceFormulas.php b/Business/Finance/FinanceFormulas.php index ab610dd88..08be5050c 100644 --- a/Business/Finance/FinanceFormulas.php +++ b/Business/Finance/FinanceFormulas.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Finance * @copyright Dennis Eichhorn diff --git a/Business/Finance/Loan.php b/Business/Finance/Loan.php index f404f8823..d4a955c60 100644 --- a/Business/Finance/Loan.php +++ b/Business/Finance/Loan.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Finance * @copyright Dennis Eichhorn diff --git a/Business/Finance/Lorenzkurve.php b/Business/Finance/Lorenzkurve.php index 066d0d892..9826bd69a 100644 --- a/Business/Finance/Lorenzkurve.php +++ b/Business/Finance/Lorenzkurve.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Finance * @copyright Dennis Eichhorn diff --git a/Business/Finance/StockBonds.php b/Business/Finance/StockBonds.php index 0518aa2f3..3d0cfe5da 100644 --- a/Business/Finance/StockBonds.php +++ b/Business/Finance/StockBonds.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Finance * @copyright Dennis Eichhorn diff --git a/Business/Marketing/Metrics.php b/Business/Marketing/Metrics.php index 23793c1a8..bd1e6ded9 100644 --- a/Business/Marketing/Metrics.php +++ b/Business/Marketing/Metrics.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Marketing * @copyright Dennis Eichhorn diff --git a/Business/Marketing/NetPromoterScore.php b/Business/Marketing/NetPromoterScore.php index da54b968d..615e29466 100644 --- a/Business/Marketing/NetPromoterScore.php +++ b/Business/Marketing/NetPromoterScore.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Marketing * @copyright Dennis Eichhorn diff --git a/Business/Programming/Metrics.php b/Business/Programming/Metrics.php index 65744ee3d..5896b601d 100644 --- a/Business/Programming/Metrics.php +++ b/Business/Programming/Metrics.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Programming * @copyright Dennis Eichhorn diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php index 00d202a35..f60e62d20 100644 --- a/Business/Sales/MarketShareEstimation.php +++ b/Business/Sales/MarketShareEstimation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Business\Sales * @copyright Dennis Eichhorn diff --git a/Config/OptionsInterface.php b/Config/OptionsInterface.php index 391ab8e75..8bb44af45 100644 --- a/Config/OptionsInterface.php +++ b/Config/OptionsInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Config * @copyright Dennis Eichhorn diff --git a/Config/OptionsTrait.php b/Config/OptionsTrait.php index 68c8f5c1b..a5c5ddfc5 100644 --- a/Config/OptionsTrait.php +++ b/Config/OptionsTrait.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Config * @copyright Dennis Eichhorn diff --git a/Config/SettingsAbstract.php b/Config/SettingsAbstract.php index 0cf03f8f8..8ecfd90d2 100644 --- a/Config/SettingsAbstract.php +++ b/Config/SettingsAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Config * @copyright Dennis Eichhorn diff --git a/Contract/ArrayableInterface.php b/Contract/ArrayableInterface.php index 8aa1fbbd6..2ab553746 100644 --- a/Contract/ArrayableInterface.php +++ b/Contract/ArrayableInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Contract * @copyright Dennis Eichhorn diff --git a/Contract/RenderableInterface.php b/Contract/RenderableInterface.php index 8cad5130a..357bdac1d 100644 --- a/Contract/RenderableInterface.php +++ b/Contract/RenderableInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Contract * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/CachePool.php b/DataStorage/Cache/CachePool.php index e13eca2cf..98a1f89c1 100644 --- a/DataStorage/Cache/CachePool.php +++ b/DataStorage/Cache/CachePool.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/CacheStatus.php b/DataStorage/Cache/CacheStatus.php index c6f3eeec0..82267e6ab 100644 --- a/DataStorage/Cache/CacheStatus.php +++ b/DataStorage/Cache/CacheStatus.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/CacheType.php b/DataStorage/Cache/CacheType.php index 884fa4d2d..6c406fb94 100644 --- a/DataStorage/Cache/CacheType.php +++ b/DataStorage/Cache/CacheType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Connection/CacheValueType.php b/DataStorage/Cache/Connection/CacheValueType.php index b5e5ebfc8..b199ad458 100644 --- a/DataStorage/Cache/Connection/CacheValueType.php +++ b/DataStorage/Cache/Connection/CacheValueType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Connection/ConnectionAbstract.php b/DataStorage/Cache/Connection/ConnectionAbstract.php index 772881cb2..49819ddeb 100644 --- a/DataStorage/Cache/Connection/ConnectionAbstract.php +++ b/DataStorage/Cache/Connection/ConnectionAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Connection/ConnectionFactory.php b/DataStorage/Cache/Connection/ConnectionFactory.php index 3f98c3017..72b40053e 100644 --- a/DataStorage/Cache/Connection/ConnectionFactory.php +++ b/DataStorage/Cache/Connection/ConnectionFactory.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Connection/ConnectionInterface.php b/DataStorage/Cache/Connection/ConnectionInterface.php index 30876333b..32e020506 100644 --- a/DataStorage/Cache/Connection/ConnectionInterface.php +++ b/DataStorage/Cache/Connection/ConnectionInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Connection/FileCache.php b/DataStorage/Cache/Connection/FileCache.php index ee1a81f8b..1c29b11e0 100644 --- a/DataStorage/Cache/Connection/FileCache.php +++ b/DataStorage/Cache/Connection/FileCache.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Connection/MemCached.php b/DataStorage/Cache/Connection/MemCached.php index 2ffa99759..a0d06074c 100644 --- a/DataStorage/Cache/Connection/MemCached.php +++ b/DataStorage/Cache/Connection/MemCached.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Connection/NullCache.php b/DataStorage/Cache/Connection/NullCache.php index ef538e919..55c0550f6 100644 --- a/DataStorage/Cache/Connection/NullCache.php +++ b/DataStorage/Cache/Connection/NullCache.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Connection/RedisCache.php b/DataStorage/Cache/Connection/RedisCache.php index 882f351a8..eb77e2e17 100644 --- a/DataStorage/Cache/Connection/RedisCache.php +++ b/DataStorage/Cache/Connection/RedisCache.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Cache/Exception/InvalidConnectionConfigException.php b/DataStorage/Cache/Exception/InvalidConnectionConfigException.php index c4e591356..dfc743264 100644 --- a/DataStorage/Cache/Exception/InvalidConnectionConfigException.php +++ b/DataStorage/Cache/Exception/InvalidConnectionConfigException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cache\Exception * @copyright Dennis Eichhorn diff --git a/DataStorage/Cookie/CookieJar.php b/DataStorage/Cookie/CookieJar.php index 47753a006..295810015 100644 --- a/DataStorage/Cookie/CookieJar.php +++ b/DataStorage/Cookie/CookieJar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Cookie * @copyright Dennis Eichhorn diff --git a/DataStorage/DataMapperInterface.php b/DataStorage/DataMapperInterface.php index 372fceeef..f423003d3 100644 --- a/DataStorage/DataMapperInterface.php +++ b/DataStorage/DataMapperInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage * @copyright Dennis Eichhorn diff --git a/DataStorage/DataStorageConnectionInterface.php b/DataStorage/DataStorageConnectionInterface.php index d20d74304..96197978c 100644 --- a/DataStorage/DataStorageConnectionInterface.php +++ b/DataStorage/DataStorageConnectionInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage * @copyright Dennis Eichhorn diff --git a/DataStorage/DataStoragePoolInterface.php b/DataStorage/DataStoragePoolInterface.php index 110b40caf..21395323b 100644 --- a/DataStorage/DataStoragePoolInterface.php +++ b/DataStorage/DataStoragePoolInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/BuilderAbstract.php b/DataStorage/Database/BuilderAbstract.php index b0ea40d08..c8ffe405e 100644 --- a/DataStorage/Database/BuilderAbstract.php +++ b/DataStorage/Database/BuilderAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Connection/ConnectionAbstract.php b/DataStorage/Database/Connection/ConnectionAbstract.php index 7a5972d94..982fd3cbb 100644 --- a/DataStorage/Database/Connection/ConnectionAbstract.php +++ b/DataStorage/Database/Connection/ConnectionAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Connection/ConnectionFactory.php b/DataStorage/Database/Connection/ConnectionFactory.php index bf289793a..15a4c922e 100644 --- a/DataStorage/Database/Connection/ConnectionFactory.php +++ b/DataStorage/Database/Connection/ConnectionFactory.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Connection/ConnectionInterface.php b/DataStorage/Database/Connection/ConnectionInterface.php index 1df086024..1417ac507 100644 --- a/DataStorage/Database/Connection/ConnectionInterface.php +++ b/DataStorage/Database/Connection/ConnectionInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Connection/MysqlConnection.php b/DataStorage/Database/Connection/MysqlConnection.php index 1563ca059..9a85c36e3 100644 --- a/DataStorage/Database/Connection/MysqlConnection.php +++ b/DataStorage/Database/Connection/MysqlConnection.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Connection/NullConnection.php b/DataStorage/Database/Connection/NullConnection.php index 647b63bdc..fba8f9ec2 100644 --- a/DataStorage/Database/Connection/NullConnection.php +++ b/DataStorage/Database/Connection/NullConnection.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Connection/PostgresConnection.php b/DataStorage/Database/Connection/PostgresConnection.php index 4fd56f161..339cee6b3 100644 --- a/DataStorage/Database/Connection/PostgresConnection.php +++ b/DataStorage/Database/Connection/PostgresConnection.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Connection/SQLiteConnection.php b/DataStorage/Database/Connection/SQLiteConnection.php index baf5c41be..58a6e4847 100644 --- a/DataStorage/Database/Connection/SQLiteConnection.php +++ b/DataStorage/Database/Connection/SQLiteConnection.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Connection/SqlServerConnection.php b/DataStorage/Database/Connection/SqlServerConnection.php index 854841ceb..9991d35ae 100644 --- a/DataStorage/Database/Connection/SqlServerConnection.php +++ b/DataStorage/Database/Connection/SqlServerConnection.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Connection * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index e99639d09..f602b3a40 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/DatabaseExceptionFactory.php b/DataStorage/Database/DatabaseExceptionFactory.php index c0e00ad8b..323d2520a 100644 --- a/DataStorage/Database/DatabaseExceptionFactory.php +++ b/DataStorage/Database/DatabaseExceptionFactory.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/DatabasePool.php b/DataStorage/Database/DatabasePool.php index 3ffecc852..a256cf366 100644 --- a/DataStorage/Database/DatabasePool.php +++ b/DataStorage/Database/DatabasePool.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/DatabaseStatus.php b/DataStorage/Database/DatabaseStatus.php index aebcd91e5..a2d8df546 100644 --- a/DataStorage/Database/DatabaseStatus.php +++ b/DataStorage/Database/DatabaseStatus.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/DatabaseType.php b/DataStorage/Database/DatabaseType.php index 7be9a7443..1fcc7575c 100644 --- a/DataStorage/Database/DatabaseType.php +++ b/DataStorage/Database/DatabaseType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Exception/InvalidConnectionConfigException.php b/DataStorage/Database/Exception/InvalidConnectionConfigException.php index 71a23c95e..e0d68d29e 100644 --- a/DataStorage/Database/Exception/InvalidConnectionConfigException.php +++ b/DataStorage/Database/Exception/InvalidConnectionConfigException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Exception * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Exception/InvalidDatabaseTypeException.php b/DataStorage/Database/Exception/InvalidDatabaseTypeException.php index 282cb53c2..147fb8880 100644 --- a/DataStorage/Database/Exception/InvalidDatabaseTypeException.php +++ b/DataStorage/Database/Exception/InvalidDatabaseTypeException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Exception * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Exception/InvalidMapperException.php b/DataStorage/Database/Exception/InvalidMapperException.php index 210f4fed8..757fa7eb6 100644 --- a/DataStorage/Database/Exception/InvalidMapperException.php +++ b/DataStorage/Database/Exception/InvalidMapperException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Exception * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/GrammarAbstract.php b/DataStorage/Database/GrammarAbstract.php index c7b3bd750..046f8648c 100644 --- a/DataStorage/Database/GrammarAbstract.php +++ b/DataStorage/Database/GrammarAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Builder.php b/DataStorage/Database/Query/Builder.php index 22b51695e..2dd530dfa 100644 --- a/DataStorage/Database/Query/Builder.php +++ b/DataStorage/Database/Query/Builder.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Column.php b/DataStorage/Database/Query/Column.php index 6d349a560..a9d9e77e5 100644 --- a/DataStorage/Database/Query/Column.php +++ b/DataStorage/Database/Query/Column.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Expression.php b/DataStorage/Database/Query/Expression.php index a78bbf7b0..283131d5a 100644 --- a/DataStorage/Database/Query/Expression.php +++ b/DataStorage/Database/Query/Expression.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Grammar/Grammar.php b/DataStorage/Database/Query/Grammar/Grammar.php index c9370e0a6..3dfba111b 100644 --- a/DataStorage/Database/Query/Grammar/Grammar.php +++ b/DataStorage/Database/Query/Grammar/Grammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Grammar/GrammarInterface.php b/DataStorage/Database/Query/Grammar/GrammarInterface.php index 62999d914..f8f60b126 100644 --- a/DataStorage/Database/Query/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Query/Grammar/GrammarInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php index 2fe412112..3c3ebfff2 100644 --- a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php +++ b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Grammar/MysqlGrammar.php b/DataStorage/Database/Query/Grammar/MysqlGrammar.php index 343c4567d..ec542de23 100644 --- a/DataStorage/Database/Query/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Query/Grammar/MysqlGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Grammar/OracleGrammar.php b/DataStorage/Database/Query/Grammar/OracleGrammar.php index 72ea22843..286393209 100644 --- a/DataStorage/Database/Query/Grammar/OracleGrammar.php +++ b/DataStorage/Database/Query/Grammar/OracleGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Grammar/PostgresGrammar.php b/DataStorage/Database/Query/Grammar/PostgresGrammar.php index a2f2e7e40..a6cafd660 100644 --- a/DataStorage/Database/Query/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Query/Grammar/PostgresGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php index aaea8ad4d..4ca6d032e 100644 --- a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/JoinType.php b/DataStorage/Database/Query/JoinType.php index 17f6eb248..24d304afd 100644 --- a/DataStorage/Database/Query/JoinType.php +++ b/DataStorage/Database/Query/JoinType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/QueryType.php b/DataStorage/Database/Query/QueryType.php index feae9cac6..bca89d44f 100644 --- a/DataStorage/Database/Query/QueryType.php +++ b/DataStorage/Database/Query/QueryType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Query/Where.php b/DataStorage/Database/Query/Where.php index cfc2a35cd..3324722f9 100644 --- a/DataStorage/Database/Query/Where.php +++ b/DataStorage/Database/Query/Where.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Query * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/RelationType.php b/DataStorage/Database/RelationType.php index 89c80ede4..e17b55875 100644 --- a/DataStorage/Database/RelationType.php +++ b/DataStorage/Database/RelationType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Builder.php b/DataStorage/Database/Schema/Builder.php index a387e807e..24d426160 100644 --- a/DataStorage/Database/Schema/Builder.php +++ b/DataStorage/Database/Schema/Builder.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Schema * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Exception/TableException.php b/DataStorage/Database/Schema/Exception/TableException.php index 8ba4a758c..5c55a8e2d 100644 --- a/DataStorage/Database/Schema/Exception/TableException.php +++ b/DataStorage/Database/Schema/Exception/TableException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Schema\Exception * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Grammar/Grammar.php b/DataStorage/Database/Schema/Grammar/Grammar.php index bee277683..55871b822 100644 --- a/DataStorage/Database/Schema/Grammar/Grammar.php +++ b/DataStorage/Database/Schema/Grammar/Grammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Schema\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Grammar/GrammarInterface.php b/DataStorage/Database/Schema/Grammar/GrammarInterface.php index 524665f78..25670c8e2 100644 --- a/DataStorage/Database/Schema/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Schema/Grammar/GrammarInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php index 690ac8e61..e216027b4 100644 --- a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Schema\Grammar * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Grammar/OracleGrammar.php b/DataStorage/Database/Schema/Grammar/OracleGrammar.php index d22946ebc..935b98f02 100644 --- a/DataStorage/Database/Schema/Grammar/OracleGrammar.php +++ b/DataStorage/Database/Schema/Grammar/OracleGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php index 47c46fe66..1c44d9fb9 100644 --- a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php index ba2f13df0..7d6952e32 100644 --- a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php index 2bea372a4..efb7aa179 100644 --- a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/Schema/QueryType.php b/DataStorage/Database/Schema/QueryType.php index fb4462aa4..370dc52a2 100644 --- a/DataStorage/Database/Schema/QueryType.php +++ b/DataStorage/Database/Schema/QueryType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database\Schema * @copyright Dennis Eichhorn diff --git a/DataStorage/Database/SchemaMapper.php b/DataStorage/Database/SchemaMapper.php index 067a7a397..309b942f3 100644 --- a/DataStorage/Database/SchemaMapper.php +++ b/DataStorage/Database/SchemaMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Database * @copyright Dennis Eichhorn diff --git a/DataStorage/File/JsonBuilder.php b/DataStorage/File/JsonBuilder.php index 3accde834..92ab76c8f 100644 --- a/DataStorage/File/JsonBuilder.php +++ b/DataStorage/File/JsonBuilder.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\File * @copyright Dennis Eichhorn diff --git a/DataStorage/File/JsonGrammar.php b/DataStorage/File/JsonGrammar.php index 546ac7dde..55bc2e81a 100644 --- a/DataStorage/File/JsonGrammar.php +++ b/DataStorage/File/JsonGrammar.php @@ -7,7 +7,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\File * @copyright Dennis Eichhorn diff --git a/DataStorage/File/QueryType.php b/DataStorage/File/QueryType.php index e57e8e90d..56dee5b18 100644 --- a/DataStorage/File/QueryType.php +++ b/DataStorage/File/QueryType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\File * @copyright Dennis Eichhorn diff --git a/DataStorage/LockException.php b/DataStorage/LockException.php index 3caa6b7de..13099cb88 100644 --- a/DataStorage/LockException.php +++ b/DataStorage/LockException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage * @copyright Dennis Eichhorn diff --git a/DataStorage/Session/HttpSession.php b/DataStorage/Session/HttpSession.php index e11bac7a4..0dda9c0eb 100644 --- a/DataStorage/Session/HttpSession.php +++ b/DataStorage/Session/HttpSession.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Session * @copyright Dennis Eichhorn diff --git a/DataStorage/Session/SessionInterface.php b/DataStorage/Session/SessionInterface.php index b536494cd..848877382 100644 --- a/DataStorage/Session/SessionInterface.php +++ b/DataStorage/Session/SessionInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\DataStorage\Session * @copyright Dennis Eichhorn diff --git a/Dispatcher/Dispatcher.php b/Dispatcher/Dispatcher.php index 0c09ff77b..d6d7ad2ed 100644 --- a/Dispatcher/Dispatcher.php +++ b/Dispatcher/Dispatcher.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Dispatcher * @copyright Dennis Eichhorn diff --git a/Event/EventManager.php b/Event/EventManager.php index b30132bf5..6e69c3744 100644 --- a/Event/EventManager.php +++ b/Event/EventManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Event * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/City.php b/Localization/Defaults/City.php index 468d8b8fd..4d24810e0 100644 --- a/Localization/Defaults/City.php +++ b/Localization/Defaults/City.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/CityMapper.php b/Localization/Defaults/CityMapper.php index 3398ee40c..2ce586fab 100644 --- a/Localization/Defaults/CityMapper.php +++ b/Localization/Defaults/CityMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/Country.php b/Localization/Defaults/Country.php index e61a415a8..568ec11bc 100644 --- a/Localization/Defaults/Country.php +++ b/Localization/Defaults/Country.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/CountryMapper.php b/Localization/Defaults/CountryMapper.php index f4b0e07a0..7ff4007b2 100644 --- a/Localization/Defaults/CountryMapper.php +++ b/Localization/Defaults/CountryMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/Currency.php b/Localization/Defaults/Currency.php index 0cff6ca6c..a0cb7e162 100644 --- a/Localization/Defaults/Currency.php +++ b/Localization/Defaults/Currency.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/CurrencyMapper.php b/Localization/Defaults/CurrencyMapper.php index 736cd84c4..f9aa384a1 100644 --- a/Localization/Defaults/CurrencyMapper.php +++ b/Localization/Defaults/CurrencyMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/Iban.php b/Localization/Defaults/Iban.php index 802792118..d09abab12 100644 --- a/Localization/Defaults/Iban.php +++ b/Localization/Defaults/Iban.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/IbanMapper.php b/Localization/Defaults/IbanMapper.php index 643113060..c3cf02a2b 100644 --- a/Localization/Defaults/IbanMapper.php +++ b/Localization/Defaults/IbanMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/Language.php b/Localization/Defaults/Language.php index f8c69f726..37cd08403 100644 --- a/Localization/Defaults/Language.php +++ b/Localization/Defaults/Language.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/Defaults/LanguageMapper.php b/Localization/Defaults/LanguageMapper.php index c4d06ec26..157cec543 100644 --- a/Localization/Defaults/LanguageMapper.php +++ b/Localization/Defaults/LanguageMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization\Defaults * @copyright Dennis Eichhorn diff --git a/Localization/ISO3166CharEnum.php b/Localization/ISO3166CharEnum.php index 49c5892b3..6b8b0fdb8 100644 --- a/Localization/ISO3166CharEnum.php +++ b/Localization/ISO3166CharEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO3166NameEnum.php b/Localization/ISO3166NameEnum.php index e5ea4711c..3b90c09cc 100644 --- a/Localization/ISO3166NameEnum.php +++ b/Localization/ISO3166NameEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO3166NumEnum.php b/Localization/ISO3166NumEnum.php index 85e6b6b61..41db19837 100644 --- a/Localization/ISO3166NumEnum.php +++ b/Localization/ISO3166NumEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO3166TwoEnum.php b/Localization/ISO3166TwoEnum.php index 9acebb9ed..cf8a8ca7e 100644 --- a/Localization/ISO3166TwoEnum.php +++ b/Localization/ISO3166TwoEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO4217CharEnum.php b/Localization/ISO4217CharEnum.php index 44b6e7ac1..92e41e2b8 100644 --- a/Localization/ISO4217CharEnum.php +++ b/Localization/ISO4217CharEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO4217DecimalEnum.php b/Localization/ISO4217DecimalEnum.php index 31529bf02..ef652026a 100644 --- a/Localization/ISO4217DecimalEnum.php +++ b/Localization/ISO4217DecimalEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO4217Enum.php b/Localization/ISO4217Enum.php index 8730ba570..c353e90a4 100644 --- a/Localization/ISO4217Enum.php +++ b/Localization/ISO4217Enum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO4217NumEnum.php b/Localization/ISO4217NumEnum.php index 7210d5bc6..41019bb96 100644 --- a/Localization/ISO4217NumEnum.php +++ b/Localization/ISO4217NumEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO4217SubUnitEnum.php b/Localization/ISO4217SubUnitEnum.php index 74d78a081..9be42f30e 100644 --- a/Localization/ISO4217SubUnitEnum.php +++ b/Localization/ISO4217SubUnitEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO4217SymbolEnum.php b/Localization/ISO4217SymbolEnum.php index 348f4f484..ca9ddcf79 100644 --- a/Localization/ISO4217SymbolEnum.php +++ b/Localization/ISO4217SymbolEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO639Enum.php b/Localization/ISO639Enum.php index d789e496a..a3fc0cf62 100644 --- a/Localization/ISO639Enum.php +++ b/Localization/ISO639Enum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO639x1Enum.php b/Localization/ISO639x1Enum.php index 85480aa90..1c4e81877 100644 --- a/Localization/ISO639x1Enum.php +++ b/Localization/ISO639x1Enum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO639x2Enum.php b/Localization/ISO639x2Enum.php index a2c5338cd..b3faaf115 100644 --- a/Localization/ISO639x2Enum.php +++ b/Localization/ISO639x2Enum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/ISO8601EnumArray.php b/Localization/ISO8601EnumArray.php index c25169a4c..e8e5bc794 100644 --- a/Localization/ISO8601EnumArray.php +++ b/Localization/ISO8601EnumArray.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/L11nManager.php b/Localization/L11nManager.php index 45f427408..b2b5de9ad 100644 --- a/Localization/L11nManager.php +++ b/Localization/L11nManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/Localization.php b/Localization/Localization.php index 9198bcbae..07d0fd8ef 100644 --- a/Localization/Localization.php +++ b/Localization/Localization.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/Money.php b/Localization/Money.php index 3c22b2ac3..5e0d58cdd 100644 --- a/Localization/Money.php +++ b/Localization/Money.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/NullLocalization.php b/Localization/NullLocalization.php index 9bc97f027..1247acc0a 100644 --- a/Localization/NullLocalization.php +++ b/Localization/NullLocalization.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/PhoneEnum.php b/Localization/PhoneEnum.php index bffbe0185..e47ce01f1 100644 --- a/Localization/PhoneEnum.php +++ b/Localization/PhoneEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Localization/TimeZoneEnumArray.php b/Localization/TimeZoneEnumArray.php index 32076fd82..59d34685b 100644 --- a/Localization/TimeZoneEnumArray.php +++ b/Localization/TimeZoneEnumArray.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Localization * @copyright Dennis Eichhorn diff --git a/Log/FileLogger.php b/Log/FileLogger.php index f829a3587..65d72bec4 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Log * @copyright Dennis Eichhorn diff --git a/Log/LogLevel.php b/Log/LogLevel.php index f993bbd54..ad4d51a49 100644 --- a/Log/LogLevel.php +++ b/Log/LogLevel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Log * @copyright Dennis Eichhorn diff --git a/Log/LoggerInterface.php b/Log/LoggerInterface.php index ecda7f783..09e4e342f 100644 --- a/Log/LoggerInterface.php +++ b/Log/LoggerInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Log * @copyright Dennis Eichhorn diff --git a/Math/Exception/ZeroDevisionException.php b/Math/Exception/ZeroDevisionException.php index e43f83596..c5888c4fc 100644 --- a/Math/Exception/ZeroDevisionException.php +++ b/Math/Exception/ZeroDevisionException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Exception * @copyright Dennis Eichhorn diff --git a/Math/Functions/Fibunacci.php b/Math/Functions/Fibunacci.php index bd70a4d6e..9310b1c25 100644 --- a/Math/Functions/Fibunacci.php +++ b/Math/Functions/Fibunacci.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Functions * @copyright Dennis Eichhorn diff --git a/Math/Functions/Functions.php b/Math/Functions/Functions.php index 5068be9b2..405df7b76 100644 --- a/Math/Functions/Functions.php +++ b/Math/Functions/Functions.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Functions * @copyright Dennis Eichhorn diff --git a/Math/Functions/Gamma.php b/Math/Functions/Gamma.php index f9b9c4228..8851e047b 100644 --- a/Math/Functions/Gamma.php +++ b/Math/Functions/Gamma.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Functions * @copyright Dennis Eichhorn diff --git a/Math/Geometry/ConvexHull/MonotoneChain.php b/Math/Geometry/ConvexHull/MonotoneChain.php index 46f02ba59..85d00c7a7 100644 --- a/Math/Geometry/ConvexHull/MonotoneChain.php +++ b/Math/Geometry/ConvexHull/MonotoneChain.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\ConvexHull * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D2/Circle.php b/Math/Geometry/Shape/D2/Circle.php index 87826dc08..5c77ec5ae 100644 --- a/Math/Geometry/Shape/D2/Circle.php +++ b/Math/Geometry/Shape/D2/Circle.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D2 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D2/D2ShapeInterface.php b/Math/Geometry/Shape/D2/D2ShapeInterface.php index 967db47b1..7ebf27c23 100644 --- a/Math/Geometry/Shape/D2/D2ShapeInterface.php +++ b/Math/Geometry/Shape/D2/D2ShapeInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D2 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D2/Ellipse.php b/Math/Geometry/Shape/D2/Ellipse.php index ee640b48e..20d6750d9 100644 --- a/Math/Geometry/Shape/D2/Ellipse.php +++ b/Math/Geometry/Shape/D2/Ellipse.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D2 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D2/Polygon.php b/Math/Geometry/Shape/D2/Polygon.php index 7119afa50..c76bf55b1 100644 --- a/Math/Geometry/Shape/D2/Polygon.php +++ b/Math/Geometry/Shape/D2/Polygon.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D2 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D2/Quadrilateral.php b/Math/Geometry/Shape/D2/Quadrilateral.php index 628a41ca4..d3825a558 100644 --- a/Math/Geometry/Shape/D2/Quadrilateral.php +++ b/Math/Geometry/Shape/D2/Quadrilateral.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D2/Rectangle.php b/Math/Geometry/Shape/D2/Rectangle.php index 231e5d4d2..369dca586 100644 --- a/Math/Geometry/Shape/D2/Rectangle.php +++ b/Math/Geometry/Shape/D2/Rectangle.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D2 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D2/Trapezoid.php b/Math/Geometry/Shape/D2/Trapezoid.php index cd95c73d8..ce9d4176c 100644 --- a/Math/Geometry/Shape/D2/Trapezoid.php +++ b/Math/Geometry/Shape/D2/Trapezoid.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D2 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D2/Triangle.php b/Math/Geometry/Shape/D2/Triangle.php index 68d0403ec..effde69a6 100644 --- a/Math/Geometry/Shape/D2/Triangle.php +++ b/Math/Geometry/Shape/D2/Triangle.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D2 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D3/Cone.php b/Math/Geometry/Shape/D3/Cone.php index afb2df23f..0a846f55a 100644 --- a/Math/Geometry/Shape/D3/Cone.php +++ b/Math/Geometry/Shape/D3/Cone.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D3 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D3/Cuboid.php b/Math/Geometry/Shape/D3/Cuboid.php index d41fb9fed..2f072f719 100644 --- a/Math/Geometry/Shape/D3/Cuboid.php +++ b/Math/Geometry/Shape/D3/Cuboid.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D3 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D3/Cylinder.php b/Math/Geometry/Shape/D3/Cylinder.php index 182dc2ef7..37871575f 100644 --- a/Math/Geometry/Shape/D3/Cylinder.php +++ b/Math/Geometry/Shape/D3/Cylinder.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D3 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D3/D3ShapeInterface.php b/Math/Geometry/Shape/D3/D3ShapeInterface.php index 9f189f0b3..59766023b 100644 --- a/Math/Geometry/Shape/D3/D3ShapeInterface.php +++ b/Math/Geometry/Shape/D3/D3ShapeInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D3 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D3/Prism.php b/Math/Geometry/Shape/D3/Prism.php index 34012f382..ec82ac330 100644 --- a/Math/Geometry/Shape/D3/Prism.php +++ b/Math/Geometry/Shape/D3/Prism.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D3/RectangularPyramid.php b/Math/Geometry/Shape/D3/RectangularPyramid.php index 613e0d131..6acde9081 100644 --- a/Math/Geometry/Shape/D3/RectangularPyramid.php +++ b/Math/Geometry/Shape/D3/RectangularPyramid.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D3 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D3/Sphere.php b/Math/Geometry/Shape/D3/Sphere.php index 262591197..0666bde72 100644 --- a/Math/Geometry/Shape/D3/Sphere.php +++ b/Math/Geometry/Shape/D3/Sphere.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D3 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/D3/Tetrahedron.php b/Math/Geometry/Shape/D3/Tetrahedron.php index 6e36214c1..91918553d 100644 --- a/Math/Geometry/Shape/D3/Tetrahedron.php +++ b/Math/Geometry/Shape/D3/Tetrahedron.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape\D3 * @copyright Dennis Eichhorn diff --git a/Math/Geometry/Shape/ShapeInterface.php b/Math/Geometry/Shape/ShapeInterface.php index fd0ded2f3..eb40128b3 100644 --- a/Math/Geometry/Shape/ShapeInterface.php +++ b/Math/Geometry/Shape/ShapeInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Geometry\Shape * @copyright Dennis Eichhorn diff --git a/Math/Integral/Gauss.php b/Math/Integral/Gauss.php index cfc5dfd8c..a8d1b770b 100644 --- a/Math/Integral/Gauss.php +++ b/Math/Integral/Gauss.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Math/Matrix/CholeskyDecomposition.php b/Math/Matrix/CholeskyDecomposition.php index 81aaa9b4c..e3a75c4fd 100644 --- a/Math/Matrix/CholeskyDecomposition.php +++ b/Math/Matrix/CholeskyDecomposition.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix * @copyright Dennis Eichhorn diff --git a/Math/Matrix/EigenvalueDecomposition.php b/Math/Matrix/EigenvalueDecomposition.php index 1bcc9a405..a65af294a 100644 --- a/Math/Matrix/EigenvalueDecomposition.php +++ b/Math/Matrix/EigenvalueDecomposition.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix * @copyright Dennis Eichhorn diff --git a/Math/Matrix/Exception/InvalidDimensionException.php b/Math/Matrix/Exception/InvalidDimensionException.php index 447ece23c..5b0b4c325 100644 --- a/Math/Matrix/Exception/InvalidDimensionException.php +++ b/Math/Matrix/Exception/InvalidDimensionException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix\Exception * @copyright Dennis Eichhorn diff --git a/Math/Matrix/IdentityMatrix.php b/Math/Matrix/IdentityMatrix.php index 32ccbd4eb..866fac6ac 100644 --- a/Math/Matrix/IdentityMatrix.php +++ b/Math/Matrix/IdentityMatrix.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix * @copyright Dennis Eichhorn diff --git a/Math/Matrix/LUDecomposition.php b/Math/Matrix/LUDecomposition.php index 55e3423a5..1ed61bcab 100644 --- a/Math/Matrix/LUDecomposition.php +++ b/Math/Matrix/LUDecomposition.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix * @copyright Dennis Eichhorn diff --git a/Math/Matrix/Matrix.php b/Math/Matrix/Matrix.php index 73f076ffb..12b70ce6e 100644 --- a/Math/Matrix/Matrix.php +++ b/Math/Matrix/Matrix.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix * @copyright Dennis Eichhorn diff --git a/Math/Matrix/QRDecomposition.php b/Math/Matrix/QRDecomposition.php index 5442ce9e4..61ce5edf3 100644 --- a/Math/Matrix/QRDecomposition.php +++ b/Math/Matrix/QRDecomposition.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix * @copyright Dennis Eichhorn diff --git a/Math/Matrix/SingularValueDecomposition.php b/Math/Matrix/SingularValueDecomposition.php index 80f8d08ce..86a35800c 100644 --- a/Math/Matrix/SingularValueDecomposition.php +++ b/Math/Matrix/SingularValueDecomposition.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix * @copyright Dennis Eichhorn diff --git a/Math/Matrix/Vector.php b/Math/Matrix/Vector.php index 39bafeccf..caea38b60 100644 --- a/Math/Matrix/Vector.php +++ b/Math/Matrix/Vector.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Matrix * @copyright Dennis Eichhorn diff --git a/Math/Number/Complex.php b/Math/Number/Complex.php index fe3c0ed21..a53affc9d 100644 --- a/Math/Number/Complex.php +++ b/Math/Number/Complex.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Number * @copyright Dennis Eichhorn diff --git a/Math/Number/Integer.php b/Math/Number/Integer.php index abaa0523f..f126f9ef5 100644 --- a/Math/Number/Integer.php +++ b/Math/Number/Integer.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Number * @copyright Dennis Eichhorn diff --git a/Math/Number/Natural.php b/Math/Number/Natural.php index 685eab1bd..024a3dbb9 100644 --- a/Math/Number/Natural.php +++ b/Math/Number/Natural.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Number * @copyright Dennis Eichhorn diff --git a/Math/Number/NumberType.php b/Math/Number/NumberType.php index 0a432d4fa..d5e1c91dd 100644 --- a/Math/Number/NumberType.php +++ b/Math/Number/NumberType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Number * @copyright Dennis Eichhorn diff --git a/Math/Number/Numbers.php b/Math/Number/Numbers.php index 5587b48ad..2a471a83d 100644 --- a/Math/Number/Numbers.php +++ b/Math/Number/Numbers.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Number * @copyright Dennis Eichhorn diff --git a/Math/Number/OperationInterface.php b/Math/Number/OperationInterface.php index 46ab8944f..f3336b4f4 100644 --- a/Math/Number/OperationInterface.php +++ b/Math/Number/OperationInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Number * @copyright Dennis Eichhorn diff --git a/Math/Number/Prime.php b/Math/Number/Prime.php index c7b473266..c761a1022 100644 --- a/Math/Number/Prime.php +++ b/Math/Number/Prime.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Number * @copyright Dennis Eichhorn diff --git a/Math/Numerics/Interpolation/CubicSplineInterpolation.php b/Math/Numerics/Interpolation/CubicSplineInterpolation.php index d66533187..89bbc168a 100644 --- a/Math/Numerics/Interpolation/CubicSplineInterpolation.php +++ b/Math/Numerics/Interpolation/CubicSplineInterpolation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Numerics\Interpolation * @copyright Dennis Eichhorn diff --git a/Math/Numerics/Interpolation/LinearInterpolation.php b/Math/Numerics/Interpolation/LinearInterpolation.php index 3e8e9bf72..749bfc684 100644 --- a/Math/Numerics/Interpolation/LinearInterpolation.php +++ b/Math/Numerics/Interpolation/LinearInterpolation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Numerics\Interpolation * @copyright Dennis Eichhorn diff --git a/Math/Numerics/Interpolation/PolynomialInterpolation.php b/Math/Numerics/Interpolation/PolynomialInterpolation.php index 97596ff75..d014ef4b8 100644 --- a/Math/Numerics/Interpolation/PolynomialInterpolation.php +++ b/Math/Numerics/Interpolation/PolynomialInterpolation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Numerics\Interpolation * @copyright Dennis Eichhorn diff --git a/Math/Parser/Evaluator.php b/Math/Parser/Evaluator.php index 6ab1e7329..de2d23561 100644 --- a/Math/Parser/Evaluator.php +++ b/Math/Parser/Evaluator.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Parser * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Average.php b/Math/Statistic/Average.php index 6c151c7f7..b63f0b6dc 100644 --- a/Math/Statistic/Average.php +++ b/Math/Statistic/Average.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Basic.php b/Math/Statistic/Basic.php index 00c82716f..286bad5ed 100644 --- a/Math/Statistic/Basic.php +++ b/Math/Statistic/Basic.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Correlation.php b/Math/Statistic/Correlation.php index 81789a1b7..ef7f0d20a 100644 --- a/Math/Statistic/Correlation.php +++ b/Math/Statistic/Correlation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/Error.php b/Math/Statistic/Forecast/Error.php index 2bf425690..66b67b732 100644 --- a/Math/Statistic/Forecast/Error.php +++ b/Math/Statistic/Forecast/Error.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic\Forecast * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php index 458020ff5..6b3fcd815 100644 --- a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php +++ b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic\Forecast * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/Forecasts.php b/Math/Statistic/Forecast/Forecasts.php index 55eb67db6..34afad5a3 100644 --- a/Math/Statistic/Forecast/Forecasts.php +++ b/Math/Statistic/Forecast/Forecasts.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic\Forecast * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php index 8cdc9b333..b11ecf221 100644 --- a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic\Forecast\Regression * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/Regression/LevelLogRegression.php b/Math/Statistic/Forecast/Regression/LevelLogRegression.php index 04c166e03..506d28662 100644 --- a/Math/Statistic/Forecast/Regression/LevelLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLogRegression.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic\Forecast\Regression * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/Regression/LogLevelRegression.php b/Math/Statistic/Forecast/Regression/LogLevelRegression.php index 0c1bddc52..0ad2336f4 100644 --- a/Math/Statistic/Forecast/Regression/LogLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLevelRegression.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic\Forecast\Regression * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/Regression/LogLogRegression.php b/Math/Statistic/Forecast/Regression/LogLogRegression.php index 72518a601..ee45b7a36 100644 --- a/Math/Statistic/Forecast/Regression/LogLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLogRegression.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic\Forecast\Regression * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php index c8533afec..ee2e15f5c 100644 --- a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php +++ b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Math/Statistic/Forecast/Regression/RegressionAbstract.php b/Math/Statistic/Forecast/Regression/RegressionAbstract.php index 2029d4284..5c5e312ad 100644 --- a/Math/Statistic/Forecast/Regression/RegressionAbstract.php +++ b/Math/Statistic/Forecast/Regression/RegressionAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic\Forecast\Regression * @copyright Dennis Eichhorn diff --git a/Math/Statistic/MeasureOfDispersion.php b/Math/Statistic/MeasureOfDispersion.php index f741d3682..69e6c96c7 100644 --- a/Math/Statistic/MeasureOfDispersion.php +++ b/Math/Statistic/MeasureOfDispersion.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Statistic * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/BernoulliDistribution.php b/Math/Stochastic/Distribution/BernoulliDistribution.php index 2f01d4da0..f01ce390e 100644 --- a/Math/Stochastic/Distribution/BernoulliDistribution.php +++ b/Math/Stochastic/Distribution/BernoulliDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/BetaDistribution.php b/Math/Stochastic/Distribution/BetaDistribution.php index 068f253c1..7128570db 100644 --- a/Math/Stochastic/Distribution/BetaDistribution.php +++ b/Math/Stochastic/Distribution/BetaDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/BinomialDistribution.php b/Math/Stochastic/Distribution/BinomialDistribution.php index 12fc3e281..e5eeffb16 100644 --- a/Math/Stochastic/Distribution/BinomialDistribution.php +++ b/Math/Stochastic/Distribution/BinomialDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/CauchyDistribution.php b/Math/Stochastic/Distribution/CauchyDistribution.php index c240ab8d1..b94cea79f 100644 --- a/Math/Stochastic/Distribution/CauchyDistribution.php +++ b/Math/Stochastic/Distribution/CauchyDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/ChiSquaredDistribution.php b/Math/Stochastic/Distribution/ChiSquaredDistribution.php index 7656aec65..35e75ed77 100644 --- a/Math/Stochastic/Distribution/ChiSquaredDistribution.php +++ b/Math/Stochastic/Distribution/ChiSquaredDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/ExponentialDistribution.php b/Math/Stochastic/Distribution/ExponentialDistribution.php index 6a6e9b0f4..349ad356f 100644 --- a/Math/Stochastic/Distribution/ExponentialDistribution.php +++ b/Math/Stochastic/Distribution/ExponentialDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/FDistribution.php b/Math/Stochastic/Distribution/FDistribution.php index c3e3ae877..29623465c 100644 --- a/Math/Stochastic/Distribution/FDistribution.php +++ b/Math/Stochastic/Distribution/FDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/GammaDistribution.php b/Math/Stochastic/Distribution/GammaDistribution.php index 957c9d657..f0cb4fa32 100644 --- a/Math/Stochastic/Distribution/GammaDistribution.php +++ b/Math/Stochastic/Distribution/GammaDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/GeometricDistribution.php b/Math/Stochastic/Distribution/GeometricDistribution.php index 8cd53f5c3..846b921a8 100644 --- a/Math/Stochastic/Distribution/GeometricDistribution.php +++ b/Math/Stochastic/Distribution/GeometricDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/HypergeometricDistribution.php b/Math/Stochastic/Distribution/HypergeometricDistribution.php index 0e96afe5b..974005e46 100644 --- a/Math/Stochastic/Distribution/HypergeometricDistribution.php +++ b/Math/Stochastic/Distribution/HypergeometricDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/LaplaceDistribution.php b/Math/Stochastic/Distribution/LaplaceDistribution.php index 6ac1fce84..fd3c2d7af 100644 --- a/Math/Stochastic/Distribution/LaplaceDistribution.php +++ b/Math/Stochastic/Distribution/LaplaceDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/LogDistribution.php b/Math/Stochastic/Distribution/LogDistribution.php index 9abbfd1b4..6196d82b2 100644 --- a/Math/Stochastic/Distribution/LogDistribution.php +++ b/Math/Stochastic/Distribution/LogDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/LogNormalDistribution.php b/Math/Stochastic/Distribution/LogNormalDistribution.php index edcc4ef66..831db5e5e 100644 --- a/Math/Stochastic/Distribution/LogNormalDistribution.php +++ b/Math/Stochastic/Distribution/LogNormalDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/LogisticDistribution.php b/Math/Stochastic/Distribution/LogisticDistribution.php index 1d8a48c41..a34018c34 100644 --- a/Math/Stochastic/Distribution/LogisticDistribution.php +++ b/Math/Stochastic/Distribution/LogisticDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/NormalDistribution.php b/Math/Stochastic/Distribution/NormalDistribution.php index 3f597e118..a206b700d 100644 --- a/Math/Stochastic/Distribution/NormalDistribution.php +++ b/Math/Stochastic/Distribution/NormalDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/ParetoDistribution.php b/Math/Stochastic/Distribution/ParetoDistribution.php index 62888b2ad..a2e3d4fd4 100644 --- a/Math/Stochastic/Distribution/ParetoDistribution.php +++ b/Math/Stochastic/Distribution/ParetoDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/PoissonDistribution.php b/Math/Stochastic/Distribution/PoissonDistribution.php index 4bd45f6f4..71d93a898 100644 --- a/Math/Stochastic/Distribution/PoissonDistribution.php +++ b/Math/Stochastic/Distribution/PoissonDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/TDistribution.php b/Math/Stochastic/Distribution/TDistribution.php index 6a0226f32..ad0aa8517 100644 --- a/Math/Stochastic/Distribution/TDistribution.php +++ b/Math/Stochastic/Distribution/TDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/UniformDistributionContinuous.php b/Math/Stochastic/Distribution/UniformDistributionContinuous.php index aef806572..2c28491ff 100644 --- a/Math/Stochastic/Distribution/UniformDistributionContinuous.php +++ b/Math/Stochastic/Distribution/UniformDistributionContinuous.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php index 79493a6a2..972b21bca 100644 --- a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php +++ b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/WeibullDistribution.php b/Math/Stochastic/Distribution/WeibullDistribution.php index b4595cbad..86e60fbd5 100644 --- a/Math/Stochastic/Distribution/WeibullDistribution.php +++ b/Math/Stochastic/Distribution/WeibullDistribution.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/Distribution/ZTest.php b/Math/Stochastic/Distribution/ZTest.php index 1279719e1..0c354615a 100644 --- a/Math/Stochastic/Distribution/ZTest.php +++ b/Math/Stochastic/Distribution/ZTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic\Distribution * @copyright Dennis Eichhorn diff --git a/Math/Stochastic/NaiveBayesFilter.php b/Math/Stochastic/NaiveBayesFilter.php index 36fcf7fd2..7c771515a 100644 --- a/Math/Stochastic/NaiveBayesFilter.php +++ b/Math/Stochastic/NaiveBayesFilter.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Math\Stochastic * @copyright Dennis Eichhorn diff --git a/Message/Console/Header.php b/Message/Console/Header.php index 9f050ee10..4c11643b0 100644 --- a/Message/Console/Header.php +++ b/Message/Console/Header.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Console/Request.php b/Message/Console/Request.php index d3ae213d9..e4c13c3ef 100644 --- a/Message/Console/Request.php +++ b/Message/Console/Request.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Console * @copyright Dennis Eichhorn diff --git a/Message/Console/Response.php b/Message/Console/Response.php index e76cf9ef0..b5e56786b 100644 --- a/Message/Console/Response.php +++ b/Message/Console/Response.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index 9d38d37ae..130fe8933 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message * @copyright Dennis Eichhorn diff --git a/Message/Http/BrowserType.php b/Message/Http/BrowserType.php index 0c14e30d5..65a3d3341 100644 --- a/Message/Http/BrowserType.php +++ b/Message/Http/BrowserType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Http/Header.php b/Message/Http/Header.php index 24a66d4b5..45d503c6a 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Http/OSType.php b/Message/Http/OSType.php index 63df67664..79e5e6e34 100644 --- a/Message/Http/OSType.php +++ b/Message/Http/OSType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Http/Request.php b/Message/Http/Request.php index ba0e6d47e..4800e409e 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Http/RequestMethod.php b/Message/Http/RequestMethod.php index 74f9657f1..841d21944 100644 --- a/Message/Http/RequestMethod.php +++ b/Message/Http/RequestMethod.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Http/RequestStatus.php b/Message/Http/RequestStatus.php index 50b32f848..0d97053d8 100644 --- a/Message/Http/RequestStatus.php +++ b/Message/Http/RequestStatus.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Http/RequestStatusCode.php b/Message/Http/RequestStatusCode.php index 875cb3ae0..af10a7bef 100644 --- a/Message/Http/RequestStatusCode.php +++ b/Message/Http/RequestStatusCode.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Http/Response.php b/Message/Http/Response.php index 811166928..2338d8031 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Http/Rest.php b/Message/Http/Rest.php index 062027ace..7cddae240 100644 --- a/Message/Http/Rest.php +++ b/Message/Http/Rest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Http * @copyright Dennis Eichhorn diff --git a/Message/Mail/ContentEncoding.php b/Message/Mail/ContentEncoding.php index 17ab578b0..7bdcd3fd9 100644 --- a/Message/Mail/ContentEncoding.php +++ b/Message/Mail/ContentEncoding.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Mail * @copyright Dennis Eichhorn diff --git a/Message/Mail/EmailAbstract.php b/Message/Mail/EmailAbstract.php index 8f6976a24..643efe83e 100644 --- a/Message/Mail/EmailAbstract.php +++ b/Message/Mail/EmailAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Mail * @copyright Dennis Eichhorn diff --git a/Message/Mail/Imap.php b/Message/Mail/Imap.php index 4e2d8332e..c49563978 100644 --- a/Message/Mail/Imap.php +++ b/Message/Mail/Imap.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Mail * @copyright Dennis Eichhorn diff --git a/Message/Mail/Mail.php b/Message/Mail/Mail.php index 16e85cda1..f4c5d6ee4 100644 --- a/Message/Mail/Mail.php +++ b/Message/Mail/Mail.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Mail * @copyright Dennis Eichhorn diff --git a/Message/Mail/Pop3.php b/Message/Mail/Pop3.php index 14146a1b1..4e0649c7c 100644 --- a/Message/Mail/Pop3.php +++ b/Message/Mail/Pop3.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message\Mail * @copyright Dennis Eichhorn diff --git a/Message/MessageInterface.php b/Message/MessageInterface.php index 002fea33d..5876c256a 100644 --- a/Message/MessageInterface.php +++ b/Message/MessageInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message * @copyright Dennis Eichhorn diff --git a/Message/NotificationLevel.php b/Message/NotificationLevel.php index 4cb6b83d6..6ee5035c8 100644 --- a/Message/NotificationLevel.php +++ b/Message/NotificationLevel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message * @copyright Dennis Eichhorn diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 731195152..4be2b5bc5 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message * @copyright Dennis Eichhorn diff --git a/Message/RequestSource.php b/Message/RequestSource.php index 0754e54f7..c43e8c0d4 100644 --- a/Message/RequestSource.php +++ b/Message/RequestSource.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message * @copyright Dennis Eichhorn diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index ffab9b77c..e2b043830 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message * @copyright Dennis Eichhorn diff --git a/Message/ResponseType.php b/Message/ResponseType.php index b16624d33..9b3144cea 100644 --- a/Message/ResponseType.php +++ b/Message/ResponseType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message * @copyright Dennis Eichhorn diff --git a/Message/Socket/Request.php b/Message/Socket/Request.php index 2e908dff9..a55a180eb 100644 --- a/Message/Socket/Request.php +++ b/Message/Socket/Request.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Message/Socket/Response.php b/Message/Socket/Response.php index 6c095b808..58e2faed8 100644 --- a/Message/Socket/Response.php +++ b/Message/Socket/Response.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Message/UploadedFileInterface.php b/Message/UploadedFileInterface.php index 1e4cccd86..827611307 100644 --- a/Message/UploadedFileInterface.php +++ b/Message/UploadedFileInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Message * @copyright Dennis Eichhorn diff --git a/Model/Html/Head.php b/Model/Html/Head.php index e6334bdc9..ec8922098 100644 --- a/Model/Html/Head.php +++ b/Model/Html/Head.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Html * @copyright Dennis Eichhorn diff --git a/Model/Html/Meta.php b/Model/Html/Meta.php index c243dd558..44c95b2d7 100644 --- a/Model/Html/Meta.php +++ b/Model/Html/Meta.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Html * @copyright Dennis Eichhorn diff --git a/Model/Message/Dom.php b/Model/Message/Dom.php index 189d2a3af..91e0dc8d1 100644 --- a/Model/Message/Dom.php +++ b/Model/Message/Dom.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Message * @copyright Dennis Eichhorn diff --git a/Model/Message/DomAction.php b/Model/Message/DomAction.php index 7736f347d..68265f898 100644 --- a/Model/Message/DomAction.php +++ b/Model/Message/DomAction.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Message * @copyright Dennis Eichhorn diff --git a/Model/Message/FormValidation.php b/Model/Message/FormValidation.php index d0ce8f4ce..813f2684e 100644 --- a/Model/Message/FormValidation.php +++ b/Model/Message/FormValidation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Message * @copyright Dennis Eichhorn diff --git a/Model/Message/Notify.php b/Model/Message/Notify.php index 5a7b63b81..c0cac3e89 100644 --- a/Model/Message/Notify.php +++ b/Model/Message/Notify.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Message * @copyright Dennis Eichhorn diff --git a/Model/Message/NotifyType.php b/Model/Message/NotifyType.php index 2b35442d0..c4b652809 100644 --- a/Model/Message/NotifyType.php +++ b/Model/Message/NotifyType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Message * @copyright Dennis Eichhorn diff --git a/Model/Message/Redirect.php b/Model/Message/Redirect.php index 2d1dd9a27..81210db85 100644 --- a/Model/Message/Redirect.php +++ b/Model/Message/Redirect.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Message * @copyright Dennis Eichhorn diff --git a/Model/Message/Reload.php b/Model/Message/Reload.php index f7e23b7ea..a173ede84 100644 --- a/Model/Message/Reload.php +++ b/Model/Message/Reload.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Model\Message * @copyright Dennis Eichhorn diff --git a/Module/ConsoleInterface.php b/Module/ConsoleInterface.php index 902020649..3e8dab6b6 100644 --- a/Module/ConsoleInterface.php +++ b/Module/ConsoleInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/Exception/InvalidModuleException.php b/Module/Exception/InvalidModuleException.php index 350d4d289..0f3d2c909 100644 --- a/Module/Exception/InvalidModuleException.php +++ b/Module/Exception/InvalidModuleException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module\Exception * @copyright Dennis Eichhorn diff --git a/Module/Exception/InvalidThemeException.php b/Module/Exception/InvalidThemeException.php index dec944787..e176ac653 100644 --- a/Module/Exception/InvalidThemeException.php +++ b/Module/Exception/InvalidThemeException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module\Exception * @copyright Dennis Eichhorn diff --git a/Module/InfoManager.php b/Module/InfoManager.php index b51ad83c1..32d255dcc 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/InstallerAbstract.php b/Module/InstallerAbstract.php index b82095f5e..5540373b5 100644 --- a/Module/InstallerAbstract.php +++ b/Module/InstallerAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/ModuleAbstract.php b/Module/ModuleAbstract.php index d624cf29d..b332be024 100644 --- a/Module/ModuleAbstract.php +++ b/Module/ModuleAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index f42723e3e..4768d364f 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/ModuleStatus.php b/Module/ModuleStatus.php index 13390e3da..f7cf6abff 100644 --- a/Module/ModuleStatus.php +++ b/Module/ModuleStatus.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/NullModule.php b/Module/NullModule.php index 0fcc344ce..97abf3195 100644 --- a/Module/NullModule.php +++ b/Module/NullModule.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/PackageManager.php b/Module/PackageManager.php index 109b1c361..6718ca58d 100644 --- a/Module/PackageManager.php +++ b/Module/PackageManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/SocketInterface.php b/Module/SocketInterface.php index d5428a1a4..3ecb491ab 100644 --- a/Module/SocketInterface.php +++ b/Module/SocketInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/StatusAbstract.php b/Module/StatusAbstract.php index 277d67150..456b483f7 100644 --- a/Module/StatusAbstract.php +++ b/Module/StatusAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/UninstallerAbstract.php b/Module/UninstallerAbstract.php index 782c537fa..90e7744c5 100644 --- a/Module/UninstallerAbstract.php +++ b/Module/UninstallerAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/UpdaterAbstract.php b/Module/UpdaterAbstract.php index 657ff900b..0e6a9e8e6 100644 --- a/Module/UpdaterAbstract.php +++ b/Module/UpdaterAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Module/WebInterface.php b/Module/WebInterface.php index ecf763856..d098386bd 100644 --- a/Module/WebInterface.php +++ b/Module/WebInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Module * @copyright Dennis Eichhorn diff --git a/Router/RouteVerb.php b/Router/RouteVerb.php index 4d4a6a06d..4ee5dd491 100644 --- a/Router/RouteVerb.php +++ b/Router/RouteVerb.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Router * @copyright Dennis Eichhorn diff --git a/Router/Router.php b/Router/Router.php index 877621870..e7a386e30 100644 --- a/Router/Router.php +++ b/Router/Router.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Router * @copyright Dennis Eichhorn diff --git a/Security/PhpCode.php b/Security/PhpCode.php index 26d63a2fe..6ce8e1d0e 100644 --- a/Security/PhpCode.php +++ b/Security/PhpCode.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Security * @copyright Dennis Eichhorn diff --git a/Socket/Client/Client.php b/Socket/Client/Client.php index 8d005308a..84cb67dcb 100644 --- a/Socket/Client/Client.php +++ b/Socket/Client/Client.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket\Client * @copyright Dennis Eichhorn diff --git a/Socket/Client/ClientConnection.php b/Socket/Client/ClientConnection.php index 45206f4fb..72c92bebf 100644 --- a/Socket/Client/ClientConnection.php +++ b/Socket/Client/ClientConnection.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket\Client * @copyright Dennis Eichhorn diff --git a/Socket/Client/NullClientConnection.php b/Socket/Client/NullClientConnection.php index 76c18a1e4..42d3732fd 100644 --- a/Socket/Client/NullClientConnection.php +++ b/Socket/Client/NullClientConnection.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket\Client * @copyright Dennis Eichhorn diff --git a/Socket/CommandManager.php b/Socket/CommandManager.php index 26932c8da..5a75fa4d0 100644 --- a/Socket/CommandManager.php +++ b/Socket/CommandManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket * @copyright Dennis Eichhorn diff --git a/Socket/Packets/Header.php b/Socket/Packets/Header.php index 7a6827347..40e31ee9e 100644 --- a/Socket/Packets/Header.php +++ b/Socket/Packets/Header.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket\Packets * @copyright Dennis Eichhorn diff --git a/Socket/Packets/PacketAbstract.php b/Socket/Packets/PacketAbstract.php index 78c461184..c3383f5aa 100644 --- a/Socket/Packets/PacketAbstract.php +++ b/Socket/Packets/PacketAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket\Packets * @copyright Dennis Eichhorn diff --git a/Socket/Packets/PacketManager.php b/Socket/Packets/PacketManager.php index bf598d51d..07dc3de37 100644 --- a/Socket/Packets/PacketManager.php +++ b/Socket/Packets/PacketManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket\Packets * @copyright Dennis Eichhorn diff --git a/Socket/Packets/PacketType.php b/Socket/Packets/PacketType.php index aa194b323..2b692d136 100644 --- a/Socket/Packets/PacketType.php +++ b/Socket/Packets/PacketType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket\Packets * @copyright Dennis Eichhorn diff --git a/Socket/Server/ClientManager.php b/Socket/Server/ClientManager.php index 0fd438c72..f3bb6f92d 100644 --- a/Socket/Server/ClientManager.php +++ b/Socket/Server/ClientManager.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Socket/Server/Server.php b/Socket/Server/Server.php index 9c6a48a37..2b842ba62 100644 --- a/Socket/Server/Server.php +++ b/Socket/Server/Server.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket\Server * @copyright Dennis Eichhorn diff --git a/Socket/SocketAbstract.php b/Socket/SocketAbstract.php index 72d332dd9..24a93de11 100644 --- a/Socket/SocketAbstract.php +++ b/Socket/SocketAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket * @copyright Dennis Eichhorn diff --git a/Socket/SocketInterface.php b/Socket/SocketInterface.php index 66e41cebc..b9d80c306 100644 --- a/Socket/SocketInterface.php +++ b/Socket/SocketInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket * @copyright Dennis Eichhorn diff --git a/Socket/SocketType.php b/Socket/SocketType.php index a8e07b015..403b2643a 100644 --- a/Socket/SocketType.php +++ b/Socket/SocketType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Socket * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/Address.php b/Stdlib/Base/Address.php index 99d1cdbf6..110716bcc 100644 --- a/Stdlib/Base/Address.php +++ b/Stdlib/Base/Address.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/AddressType.php b/Stdlib/Base/AddressType.php index bdb788cb0..7036e23fa 100644 --- a/Stdlib/Base/AddressType.php +++ b/Stdlib/Base/AddressType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/Enum.php b/Stdlib/Base/Enum.php index 7636f9eee..6dd7bd4ea 100644 --- a/Stdlib/Base/Enum.php +++ b/Stdlib/Base/Enum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/EnumArray.php b/Stdlib/Base/EnumArray.php index d519401a5..0ff3af511 100644 --- a/Stdlib/Base/EnumArray.php +++ b/Stdlib/Base/EnumArray.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/Exception/InvalidEnumName.php b/Stdlib/Base/Exception/InvalidEnumName.php index 76e7c2c86..d480a4384 100644 --- a/Stdlib/Base/Exception/InvalidEnumName.php +++ b/Stdlib/Base/Exception/InvalidEnumName.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base\Exception * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/Exception/InvalidEnumValue.php b/Stdlib/Base/Exception/InvalidEnumValue.php index abd35fdd3..a0fd5d965 100644 --- a/Stdlib/Base/Exception/InvalidEnumValue.php +++ b/Stdlib/Base/Exception/InvalidEnumValue.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base\Exception * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/Iban.php b/Stdlib/Base/Iban.php index 2e3a6c61e..0452ec8a4 100644 --- a/Stdlib/Base/Iban.php +++ b/Stdlib/Base/Iban.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/Location.php b/Stdlib/Base/Location.php index 9467f9cc0..52073dd13 100644 --- a/Stdlib/Base/Location.php +++ b/Stdlib/Base/Location.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/NullLocation.php b/Stdlib/Base/NullLocation.php index 83d8b6023..df13616b9 100644 --- a/Stdlib/Base/NullLocation.php +++ b/Stdlib/Base/NullLocation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/PhoneType.php b/Stdlib/Base/PhoneType.php index 8009b8fd6..a5e7a90b2 100644 --- a/Stdlib/Base/PhoneType.php +++ b/Stdlib/Base/PhoneType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Base/SmartDateTime.php b/Stdlib/Base/SmartDateTime.php index a6df118ad..3d4da58c4 100644 --- a/Stdlib/Base/SmartDateTime.php +++ b/Stdlib/Base/SmartDateTime.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Base * @copyright Dennis Eichhorn diff --git a/Stdlib/Graph/BinaryTree.php b/Stdlib/Graph/BinaryTree.php index 537e8a841..f5f2b387d 100644 --- a/Stdlib/Graph/BinaryTree.php +++ b/Stdlib/Graph/BinaryTree.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Graph * @copyright Dennis Eichhorn diff --git a/Stdlib/Graph/Edge.php b/Stdlib/Graph/Edge.php index b8142754d..7a29f0800 100644 --- a/Stdlib/Graph/Edge.php +++ b/Stdlib/Graph/Edge.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Graph * @copyright Dennis Eichhorn diff --git a/Stdlib/Graph/Graph.php b/Stdlib/Graph/Graph.php index 5bb84df03..e148438c1 100644 --- a/Stdlib/Graph/Graph.php +++ b/Stdlib/Graph/Graph.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Graph * @copyright Dennis Eichhorn diff --git a/Stdlib/Graph/Node.php b/Stdlib/Graph/Node.php index 8afac6f17..c2b1c3c15 100644 --- a/Stdlib/Graph/Node.php +++ b/Stdlib/Graph/Node.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Graph * @copyright Dennis Eichhorn diff --git a/Stdlib/Graph/Tree.php b/Stdlib/Graph/Tree.php index f7420530e..d06b62acd 100644 --- a/Stdlib/Graph/Tree.php +++ b/Stdlib/Graph/Tree.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Graph * @copyright Dennis Eichhorn diff --git a/Stdlib/Map/KeyType.php b/Stdlib/Map/KeyType.php index 09bcc9c87..5b5b22a93 100644 --- a/Stdlib/Map/KeyType.php +++ b/Stdlib/Map/KeyType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Map * @copyright Dennis Eichhorn diff --git a/Stdlib/Map/MultiMap.php b/Stdlib/Map/MultiMap.php index a2ed859da..4be540193 100644 --- a/Stdlib/Map/MultiMap.php +++ b/Stdlib/Map/MultiMap.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Map * @copyright Dennis Eichhorn diff --git a/Stdlib/Map/OrderType.php b/Stdlib/Map/OrderType.php index 39238d35e..76f77ac0f 100644 --- a/Stdlib/Map/OrderType.php +++ b/Stdlib/Map/OrderType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Map * @copyright Dennis Eichhorn diff --git a/Stdlib/Queue/PriorityMode.php b/Stdlib/Queue/PriorityMode.php index 041ca2a34..016fa2427 100644 --- a/Stdlib/Queue/PriorityMode.php +++ b/Stdlib/Queue/PriorityMode.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Queue * @copyright Dennis Eichhorn diff --git a/Stdlib/Queue/PriorityQueue.php b/Stdlib/Queue/PriorityQueue.php index e62fa961f..7f7fa09bc 100644 --- a/Stdlib/Queue/PriorityQueue.php +++ b/Stdlib/Queue/PriorityQueue.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Stdlib\Queue * @copyright Dennis Eichhorn diff --git a/System/File/ContainerInterface.php b/System/File/ContainerInterface.php index 22f935496..656f2056d 100644 --- a/System/File/ContainerInterface.php +++ b/System/File/ContainerInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/ContentPutMode.php b/System/File/ContentPutMode.php index 8efdd4284..6e3a9ee7e 100644 --- a/System/File/ContentPutMode.php +++ b/System/File/ContentPutMode.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/DirectoryInterface.php b/System/File/DirectoryInterface.php index a25480ce2..92df47b1e 100644 --- a/System/File/DirectoryInterface.php +++ b/System/File/DirectoryInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/ExtensionType.php b/System/File/ExtensionType.php index 74213e718..cb7dce5e4 100644 --- a/System/File/ExtensionType.php +++ b/System/File/ExtensionType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/FileInterface.php b/System/File/FileInterface.php index 1518a6662..dafe319d4 100644 --- a/System/File/FileInterface.php +++ b/System/File/FileInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/FileUtils.php b/System/File/FileUtils.php index f1c6d579a..d07d39591 100644 --- a/System/File/FileUtils.php +++ b/System/File/FileUtils.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/Ftp/Directory.php b/System/File/Ftp/Directory.php index a47711767..dcdbc81f2 100644 --- a/System/File/Ftp/Directory.php +++ b/System/File/Ftp/Directory.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File\Ftp * @copyright Dennis Eichhorn diff --git a/System/File/Ftp/File.php b/System/File/Ftp/File.php index 5a934785a..b4e58904d 100644 --- a/System/File/Ftp/File.php +++ b/System/File/Ftp/File.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File\Ftp * @copyright Dennis Eichhorn diff --git a/System/File/Ftp/FileAbstract.php b/System/File/Ftp/FileAbstract.php index 52c428e34..d74ba2f28 100644 --- a/System/File/Ftp/FileAbstract.php +++ b/System/File/Ftp/FileAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File\Ftp * @copyright Dennis Eichhorn diff --git a/System/File/Ftp/FtpContainerInterface.php b/System/File/Ftp/FtpContainerInterface.php index 00951e8d2..651871af9 100644 --- a/System/File/Ftp/FtpContainerInterface.php +++ b/System/File/Ftp/FtpContainerInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/Ftp/FtpStorage.php b/System/File/Ftp/FtpStorage.php index f999cf50d..328cdd469 100644 --- a/System/File/Ftp/FtpStorage.php +++ b/System/File/Ftp/FtpStorage.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File\Ftp * @copyright Dennis Eichhorn diff --git a/System/File/Local/Directory.php b/System/File/Local/Directory.php index 60fcada2b..a75fa919b 100644 --- a/System/File/Local/Directory.php +++ b/System/File/Local/Directory.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File\Local * @copyright Dennis Eichhorn diff --git a/System/File/Local/File.php b/System/File/Local/File.php index 9304ee0c0..d571044b3 100644 --- a/System/File/Local/File.php +++ b/System/File/Local/File.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File\Local * @copyright Dennis Eichhorn diff --git a/System/File/Local/FileAbstract.php b/System/File/Local/FileAbstract.php index 6381707e6..8449bfcd1 100644 --- a/System/File/Local/FileAbstract.php +++ b/System/File/Local/FileAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File\Local * @copyright Dennis Eichhorn diff --git a/System/File/Local/LocalContainerInterface.php b/System/File/Local/LocalContainerInterface.php index 1b08d05e5..f8f353393 100644 --- a/System/File/Local/LocalContainerInterface.php +++ b/System/File/Local/LocalContainerInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/Local/LocalStorage.php b/System/File/Local/LocalStorage.php index 290b7ce65..cda290b7b 100644 --- a/System/File/Local/LocalStorage.php +++ b/System/File/Local/LocalStorage.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File\Local * @copyright Dennis Eichhorn diff --git a/System/File/PathException.php b/System/File/PathException.php index becf696df..1d1873299 100644 --- a/System/File/PathException.php +++ b/System/File/PathException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/PermissionException.php b/System/File/PermissionException.php index 757f4afbf..07e124414 100644 --- a/System/File/PermissionException.php +++ b/System/File/PermissionException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/Storage.php b/System/File/Storage.php index 82dfd6a10..00d6bdc21 100644 --- a/System/File/Storage.php +++ b/System/File/Storage.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/File/StorageAbstract.php b/System/File/StorageAbstract.php index de7fe114d..a66843f6d 100644 --- a/System/File/StorageAbstract.php +++ b/System/File/StorageAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System\File * @copyright Dennis Eichhorn diff --git a/System/MimeType.php b/System/MimeType.php index cd444c53b..831c1761c 100644 --- a/System/MimeType.php +++ b/System/MimeType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System * @copyright Dennis Eichhorn diff --git a/System/OperatingSystem.php b/System/OperatingSystem.php index ad25c3049..a049f94e7 100644 --- a/System/OperatingSystem.php +++ b/System/OperatingSystem.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System * @copyright Dennis Eichhorn diff --git a/System/SystemType.php b/System/SystemType.php index 2cfe9b87e..ae619ddbc 100644 --- a/System/SystemType.php +++ b/System/SystemType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System * @copyright Dennis Eichhorn diff --git a/System/SystemUtils.php b/System/SystemUtils.php index 4d919c59c..1fa817778 100644 --- a/System/SystemUtils.php +++ b/System/SystemUtils.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\System * @copyright Dennis Eichhorn diff --git a/UnhandledHandler.php b/UnhandledHandler.php index 0de569c13..594ab94e7 100644 --- a/UnhandledHandler.php +++ b/UnhandledHandler.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS * @copyright Dennis Eichhorn diff --git a/Uri/Argument.php b/Uri/Argument.php index a9bc24d3a..df08efcd4 100644 --- a/Uri/Argument.php +++ b/Uri/Argument.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Uri * @copyright Dennis Eichhorn diff --git a/Uri/Http.php b/Uri/Http.php index 3f5e3095b..e8532afcb 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Uri * @copyright Dennis Eichhorn diff --git a/Uri/InvalidUriException.php b/Uri/InvalidUriException.php index 24cf63000..dc0dfd933 100644 --- a/Uri/InvalidUriException.php +++ b/Uri/InvalidUriException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Uri * @copyright Dennis Eichhorn diff --git a/Uri/UriFactory.php b/Uri/UriFactory.php index aadb59cfb..9a1d652d3 100644 --- a/Uri/UriFactory.php +++ b/Uri/UriFactory.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Uri * @copyright Dennis Eichhorn diff --git a/Uri/UriInterface.php b/Uri/UriInterface.php index 55cd06492..2b1a7e855 100644 --- a/Uri/UriInterface.php +++ b/Uri/UriInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Uri * @copyright Dennis Eichhorn diff --git a/Uri/UriScheme.php b/Uri/UriScheme.php index 29c16c491..95bfce6d9 100644 --- a/Uri/UriScheme.php +++ b/Uri/UriScheme.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Uri * @copyright Dennis Eichhorn diff --git a/Utils/ArrayUtils.php b/Utils/ArrayUtils.php index 49ca7d0d5..559ca6dd4 100644 --- a/Utils/ArrayUtils.php +++ b/Utils/ArrayUtils.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/Aztec.php b/Utils/Barcode/Aztec.php index 7a86642ad..69d4d28e9 100644 --- a/Utils/Barcode/Aztec.php +++ b/Utils/Barcode/Aztec.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/C128Abstract.php b/Utils/Barcode/C128Abstract.php index b299a34e9..54edf33ad 100644 --- a/Utils/Barcode/C128Abstract.php +++ b/Utils/Barcode/C128Abstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/C128a.php b/Utils/Barcode/C128a.php index 276db4c09..a8dfdd037 100644 --- a/Utils/Barcode/C128a.php +++ b/Utils/Barcode/C128a.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/C128b.php b/Utils/Barcode/C128b.php index 20aeb585b..098e95b39 100644 --- a/Utils/Barcode/C128b.php +++ b/Utils/Barcode/C128b.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/C128c.php b/Utils/Barcode/C128c.php index 0ae54cf35..5dc92d113 100644 --- a/Utils/Barcode/C128c.php +++ b/Utils/Barcode/C128c.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/C25.php b/Utils/Barcode/C25.php index fb177b412..7140f9767 100644 --- a/Utils/Barcode/C25.php +++ b/Utils/Barcode/C25.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/C39.php b/Utils/Barcode/C39.php index 350788efb..1856442f2 100644 --- a/Utils/Barcode/C39.php +++ b/Utils/Barcode/C39.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/Codebar.php b/Utils/Barcode/Codebar.php index b319e000c..e379079e1 100644 --- a/Utils/Barcode/Codebar.php +++ b/Utils/Barcode/Codebar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/Datamatrix.php b/Utils/Barcode/Datamatrix.php index 6bd6a3a92..f51ef8434 100644 --- a/Utils/Barcode/Datamatrix.php +++ b/Utils/Barcode/Datamatrix.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/HIBCC.php b/Utils/Barcode/HIBCC.php index cacf3921b..b7dad6f83 100644 --- a/Utils/Barcode/HIBCC.php +++ b/Utils/Barcode/HIBCC.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/OrientationType.php b/Utils/Barcode/OrientationType.php index d9832f6d7..36c1d0393 100644 --- a/Utils/Barcode/OrientationType.php +++ b/Utils/Barcode/OrientationType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/Barcode/QR.php b/Utils/Barcode/QR.php index 4279584d0..58933df8c 100644 --- a/Utils/Barcode/QR.php +++ b/Utils/Barcode/QR.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Barcode * @copyright Dennis Eichhorn diff --git a/Utils/ColorUtils.php b/Utils/ColorUtils.php index c622986b6..e72fb4e44 100644 --- a/Utils/ColorUtils.php +++ b/Utils/ColorUtils.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils * @copyright Dennis Eichhorn diff --git a/Utils/Compression/CompressionInterface.php b/Utils/Compression/CompressionInterface.php index 7c535d430..24d94680c 100644 --- a/Utils/Compression/CompressionInterface.php +++ b/Utils/Compression/CompressionInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Compression * @copyright Dennis Eichhorn diff --git a/Utils/Compression/LZW.php b/Utils/Compression/LZW.php index 9510b2ab7..e57d69432 100644 --- a/Utils/Compression/LZW.php +++ b/Utils/Compression/LZW.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Compression * @copyright Dennis Eichhorn diff --git a/Utils/Converter/AngleType.php b/Utils/Converter/AngleType.php index 9b783e012..3c5c51f74 100644 --- a/Utils/Converter/AngleType.php +++ b/Utils/Converter/AngleType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/AreaType.php b/Utils/Converter/AreaType.php index cd6136a43..50203d665 100644 --- a/Utils/Converter/AreaType.php +++ b/Utils/Converter/AreaType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/Currency.php b/Utils/Converter/Currency.php index d25bf78ed..f35fb3492 100644 --- a/Utils/Converter/Currency.php +++ b/Utils/Converter/Currency.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/EnergyPowerType.php b/Utils/Converter/EnergyPowerType.php index bd2a8a9c0..38489f169 100644 --- a/Utils/Converter/EnergyPowerType.php +++ b/Utils/Converter/EnergyPowerType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/File.php b/Utils/Converter/File.php index 8cd5fc3ba..4f6bc5dc6 100644 --- a/Utils/Converter/File.php +++ b/Utils/Converter/File.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/FileSizeType.php b/Utils/Converter/FileSizeType.php index 7549b3497..b60ddd5f5 100644 --- a/Utils/Converter/FileSizeType.php +++ b/Utils/Converter/FileSizeType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/Ip.php b/Utils/Converter/Ip.php index 06689d51c..de32941f7 100644 --- a/Utils/Converter/Ip.php +++ b/Utils/Converter/Ip.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/LengthType.php b/Utils/Converter/LengthType.php index 5d00fb827..84d782257 100644 --- a/Utils/Converter/LengthType.php +++ b/Utils/Converter/LengthType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/Measurement.php b/Utils/Converter/Measurement.php index ea791a027..d71cb93c7 100644 --- a/Utils/Converter/Measurement.php +++ b/Utils/Converter/Measurement.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/Numeric.php b/Utils/Converter/Numeric.php index e90b9324b..9676846d2 100644 --- a/Utils/Converter/Numeric.php +++ b/Utils/Converter/Numeric.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/PressureType.php b/Utils/Converter/PressureType.php index 22e6f3c37..39f759897 100644 --- a/Utils/Converter/PressureType.php +++ b/Utils/Converter/PressureType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/SpeedType.php b/Utils/Converter/SpeedType.php index 5238e486a..dfba81c55 100644 --- a/Utils/Converter/SpeedType.php +++ b/Utils/Converter/SpeedType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/TemperatureType.php b/Utils/Converter/TemperatureType.php index 298c5637e..d383ebc0e 100644 --- a/Utils/Converter/TemperatureType.php +++ b/Utils/Converter/TemperatureType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/TimeType.php b/Utils/Converter/TimeType.php index 1c40ab0bd..fba2f9274 100644 --- a/Utils/Converter/TimeType.php +++ b/Utils/Converter/TimeType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/VolumeType.php b/Utils/Converter/VolumeType.php index b1165c126..ab7085bb8 100644 --- a/Utils/Converter/VolumeType.php +++ b/Utils/Converter/VolumeType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Converter/WeightType.php b/Utils/Converter/WeightType.php index 15274edfd..747f1778a 100644 --- a/Utils/Converter/WeightType.php +++ b/Utils/Converter/WeightType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Converter * @copyright Dennis Eichhorn diff --git a/Utils/Encoding/Caesar.php b/Utils/Encoding/Caesar.php index 0b8591747..2f73bf2eb 100644 --- a/Utils/Encoding/Caesar.php +++ b/Utils/Encoding/Caesar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Encoding * @copyright Dennis Eichhorn diff --git a/Utils/Encoding/EncodingInterface.php b/Utils/Encoding/EncodingInterface.php index d96c2d228..cd9a887f8 100644 --- a/Utils/Encoding/EncodingInterface.php +++ b/Utils/Encoding/EncodingInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Encoding * @copyright Dennis Eichhorn diff --git a/Utils/Encoding/Gray.php b/Utils/Encoding/Gray.php index da6b262c1..f6975f23a 100644 --- a/Utils/Encoding/Gray.php +++ b/Utils/Encoding/Gray.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Encoding * @copyright Dennis Eichhorn diff --git a/Utils/Encoding/Huffman/Dictionary.php b/Utils/Encoding/Huffman/Dictionary.php index 1de580ead..acaef6c7f 100644 --- a/Utils/Encoding/Huffman/Dictionary.php +++ b/Utils/Encoding/Huffman/Dictionary.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Encoding\Huffman * @copyright Dennis Eichhorn diff --git a/Utils/Encoding/Huffman/Huffman.php b/Utils/Encoding/Huffman/Huffman.php index 489c3e257..85260a615 100644 --- a/Utils/Encoding/Huffman/Huffman.php +++ b/Utils/Encoding/Huffman/Huffman.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Encoding\Huffman * @copyright Dennis Eichhorn diff --git a/Utils/Encoding/XorEncoding.php b/Utils/Encoding/XorEncoding.php index abe1ee0c2..0ad7447b7 100644 --- a/Utils/Encoding/XorEncoding.php +++ b/Utils/Encoding/XorEncoding.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Encoding * @copyright Dennis Eichhorn diff --git a/Utils/Excel/Excel.php b/Utils/Excel/Excel.php index 12c0ca1ea..2776ea8b7 100644 --- a/Utils/Excel/Excel.php +++ b/Utils/Excel/Excel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Excel * @copyright Dennis Eichhorn diff --git a/Utils/Git/Author.php b/Utils/Git/Author.php index e22b1148f..ffe58cd8a 100644 --- a/Utils/Git/Author.php +++ b/Utils/Git/Author.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Git * @copyright Dennis Eichhorn diff --git a/Utils/Git/Branch.php b/Utils/Git/Branch.php index 67a7f6d68..53060b23a 100644 --- a/Utils/Git/Branch.php +++ b/Utils/Git/Branch.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Git * @copyright Dennis Eichhorn diff --git a/Utils/Git/Commit.php b/Utils/Git/Commit.php index 1758d2655..c7923ee30 100644 --- a/Utils/Git/Commit.php +++ b/Utils/Git/Commit.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Git * @copyright Dennis Eichhorn diff --git a/Utils/Git/Git.php b/Utils/Git/Git.php index 13f761635..c1251cc4d 100644 --- a/Utils/Git/Git.php +++ b/Utils/Git/Git.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Git * @copyright Dennis Eichhorn diff --git a/Utils/Git/NullCommit.php b/Utils/Git/NullCommit.php index 0737e8cbd..eb93f3534 100644 --- a/Utils/Git/NullCommit.php +++ b/Utils/Git/NullCommit.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Git * @copyright Dennis Eichhorn diff --git a/Utils/Git/Repository.php b/Utils/Git/Repository.php index 800862628..4db71218b 100644 --- a/Utils/Git/Repository.php +++ b/Utils/Git/Repository.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Git * @copyright Dennis Eichhorn diff --git a/Utils/Git/Tag.php b/Utils/Git/Tag.php index 529ab85c7..817e54f4d 100644 --- a/Utils/Git/Tag.php +++ b/Utils/Git/Tag.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Git * @copyright Dennis Eichhorn diff --git a/Utils/IO/Csv/CsvInterface.php b/Utils/IO/Csv/CsvInterface.php index 586adec2d..4b85f95b2 100644 --- a/Utils/IO/Csv/CsvInterface.php +++ b/Utils/IO/Csv/CsvInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn @@ -17,7 +17,7 @@ namespace phpOMS\Utils\IO\Csv { /** * Cvs interface. * - * PHP Version 7.2 + * PHP Version 7.4 * * @package Framework * @copyright Dennis Eichhorn diff --git a/Utils/IO/Csv/CsvSettings.php b/Utils/IO/Csv/CsvSettings.php index 46be6b470..7106d65ac 100644 --- a/Utils/IO/Csv/CsvSettings.php +++ b/Utils/IO/Csv/CsvSettings.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Csv * @copyright Dennis Eichhorn diff --git a/Utils/IO/Excel/ExcelDatabaseMapper.php b/Utils/IO/Excel/ExcelDatabaseMapper.php index 2fa12b58d..f33b5de66 100644 --- a/Utils/IO/Excel/ExcelDatabaseMapper.php +++ b/Utils/IO/Excel/ExcelDatabaseMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Utils/IO/Excel/ExcelInterface.php b/Utils/IO/Excel/ExcelInterface.php index 2c924cdaa..629f39d5b 100644 --- a/Utils/IO/Excel/ExcelInterface.php +++ b/Utils/IO/Excel/ExcelInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Excel * @copyright Dennis Eichhorn diff --git a/Utils/IO/ExchangeInterface.php b/Utils/IO/ExchangeInterface.php index eaba132b9..5b1a92a0a 100644 --- a/Utils/IO/ExchangeInterface.php +++ b/Utils/IO/ExchangeInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO * @copyright Dennis Eichhorn diff --git a/Utils/IO/IODatabaseMapper.php b/Utils/IO/IODatabaseMapper.php index 74b362d0d..112e94455 100644 --- a/Utils/IO/IODatabaseMapper.php +++ b/Utils/IO/IODatabaseMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Utils/IO/Json/InvalidJsonException.php b/Utils/IO/Json/InvalidJsonException.php index b047742d2..f69dc56e1 100644 --- a/Utils/IO/Json/InvalidJsonException.php +++ b/Utils/IO/Json/InvalidJsonException.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Json * @copyright Dennis Eichhorn diff --git a/Utils/IO/Json/JsonInterface.php b/Utils/IO/Json/JsonInterface.php index 5f74c9a60..2fc8c8139 100644 --- a/Utils/IO/Json/JsonInterface.php +++ b/Utils/IO/Json/JsonInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Json * @copyright Dennis Eichhorn diff --git a/Utils/IO/Pdf/PdfInterface.php b/Utils/IO/Pdf/PdfInterface.php index 51add291c..c83dd723a 100644 --- a/Utils/IO/Pdf/PdfInterface.php +++ b/Utils/IO/Pdf/PdfInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Pdf * @copyright Dennis Eichhorn diff --git a/Utils/IO/Zip/ArchiveInterface.php b/Utils/IO/Zip/ArchiveInterface.php index 233818a94..c1b769646 100644 --- a/Utils/IO/Zip/ArchiveInterface.php +++ b/Utils/IO/Zip/ArchiveInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Zip * @copyright Dennis Eichhorn diff --git a/Utils/IO/Zip/Gz.php b/Utils/IO/Zip/Gz.php index 3ccb40de5..81aca03c8 100644 --- a/Utils/IO/Zip/Gz.php +++ b/Utils/IO/Zip/Gz.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Zip * @copyright Dennis Eichhorn diff --git a/Utils/IO/Zip/Tar.php b/Utils/IO/Zip/Tar.php index bb7e1dc96..4ba4a45dc 100644 --- a/Utils/IO/Zip/Tar.php +++ b/Utils/IO/Zip/Tar.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Zip * @copyright Dennis Eichhorn diff --git a/Utils/IO/Zip/TarGz.php b/Utils/IO/Zip/TarGz.php index 0de2b4067..e63eb728e 100644 --- a/Utils/IO/Zip/TarGz.php +++ b/Utils/IO/Zip/TarGz.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Zip * @copyright Dennis Eichhorn diff --git a/Utils/IO/Zip/Zip.php b/Utils/IO/Zip/Zip.php index 64bb76aa7..5abd93225 100644 --- a/Utils/IO/Zip/Zip.php +++ b/Utils/IO/Zip/Zip.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\IO\Zip * @copyright Dennis Eichhorn diff --git a/Utils/ImageUtils.php b/Utils/ImageUtils.php index 09beb297a..756692aeb 100644 --- a/Utils/ImageUtils.php +++ b/Utils/ImageUtils.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils * @copyright Dennis Eichhorn diff --git a/Utils/JsonBuilder.php b/Utils/JsonBuilder.php index 793439006..4e94cd830 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils * @copyright Dennis Eichhorn diff --git a/Utils/PDF/Pdf.php b/Utils/PDF/Pdf.php index 5162b6bd7..9cdd84b2a 100644 --- a/Utils/PDF/Pdf.php +++ b/Utils/PDF/Pdf.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\PDF * @copyright Dennis Eichhorn diff --git a/Utils/Parser/Markdown/Markdown.php b/Utils/Parser/Markdown/Markdown.php index ce51fce97..4a3230593 100644 --- a/Utils/Parser/Markdown/Markdown.php +++ b/Utils/Parser/Markdown/Markdown.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Parser\Markdown * @copyright Dennis Eichhorn diff --git a/Utils/Parser/Php/ArrayParser.php b/Utils/Parser/Php/ArrayParser.php index 9603f3183..936353cc1 100644 --- a/Utils/Parser/Php/ArrayParser.php +++ b/Utils/Parser/Php/ArrayParser.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\Parser\Php * @copyright Dennis Eichhorn diff --git a/Utils/Permutation.php b/Utils/Permutation.php index 36118286f..a59e8e99a 100644 --- a/Utils/Permutation.php +++ b/Utils/Permutation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils * @copyright Dennis Eichhorn diff --git a/Utils/RnG/Address.php b/Utils/RnG/Address.php index acdeaefcc..4d35d074f 100644 --- a/Utils/RnG/Address.php +++ b/Utils/RnG/Address.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Utils/RnG/ArrayRandomize.php b/Utils/RnG/ArrayRandomize.php index 0a43f9e2f..59e5b763f 100644 --- a/Utils/RnG/ArrayRandomize.php +++ b/Utils/RnG/ArrayRandomize.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/RnG/City.php b/Utils/RnG/City.php index 7fac4315a..bd10db6c4 100644 --- a/Utils/RnG/City.php +++ b/Utils/RnG/City.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Utils/RnG/DateTime.php b/Utils/RnG/DateTime.php index 8b750ce48..c94243317 100644 --- a/Utils/RnG/DateTime.php +++ b/Utils/RnG/DateTime.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/RnG/DistributionType.php b/Utils/RnG/DistributionType.php index 0ea87ae88..7c73697cf 100644 --- a/Utils/RnG/DistributionType.php +++ b/Utils/RnG/DistributionType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/RnG/Email.php b/Utils/RnG/Email.php index fd2b77c7f..5296525a6 100644 --- a/Utils/RnG/Email.php +++ b/Utils/RnG/Email.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Utils/RnG/File.php b/Utils/RnG/File.php index fc42d5160..42dacb68f 100644 --- a/Utils/RnG/File.php +++ b/Utils/RnG/File.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/RnG/Iban.php b/Utils/RnG/Iban.php index 4ebd80f92..3f8bbc7dd 100644 --- a/Utils/RnG/Iban.php +++ b/Utils/RnG/Iban.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Utils/RnG/LinearCongruentialGenerator.php b/Utils/RnG/LinearCongruentialGenerator.php index db85c4df4..ccb41e314 100644 --- a/Utils/RnG/LinearCongruentialGenerator.php +++ b/Utils/RnG/LinearCongruentialGenerator.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/RnG/Name.php b/Utils/RnG/Name.php index 6cd33a5af..2c3b5676e 100644 --- a/Utils/RnG/Name.php +++ b/Utils/RnG/Name.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/RnG/Numeric.php b/Utils/RnG/Numeric.php index 61b4c58d2..1142f2147 100644 --- a/Utils/RnG/Numeric.php +++ b/Utils/RnG/Numeric.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Utils/RnG/Phone.php b/Utils/RnG/Phone.php index 92cb9194c..359a5a062 100644 --- a/Utils/RnG/Phone.php +++ b/Utils/RnG/Phone.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/RnG/PostalZip.php b/Utils/RnG/PostalZip.php index 7b180c9fc..6d1d92c07 100644 --- a/Utils/RnG/PostalZip.php +++ b/Utils/RnG/PostalZip.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package TBD * @copyright Dennis Eichhorn diff --git a/Utils/RnG/StringUtils.php b/Utils/RnG/StringUtils.php index e0cae51f9..b4c6b975c 100644 --- a/Utils/RnG/StringUtils.php +++ b/Utils/RnG/StringUtils.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/RnG/Text.php b/Utils/RnG/Text.php index 3a6f1b704..b0f644d55 100644 --- a/Utils/RnG/Text.php +++ b/Utils/RnG/Text.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\RnG * @copyright Dennis Eichhorn diff --git a/Utils/StringCompare.php b/Utils/StringCompare.php index 892c4caa2..149041ec1 100644 --- a/Utils/StringCompare.php +++ b/Utils/StringCompare.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils * @copyright Dennis Eichhorn diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php index 45d742295..579e22ad2 100644 --- a/Utils/StringUtils.php +++ b/Utils/StringUtils.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/Cron.php b/Utils/TaskSchedule/Cron.php index 6386524d0..a7fcd3fc1 100644 --- a/Utils/TaskSchedule/Cron.php +++ b/Utils/TaskSchedule/Cron.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/CronJob.php b/Utils/TaskSchedule/CronJob.php index b0e4e5ef8..d06695e74 100644 --- a/Utils/TaskSchedule/CronJob.php +++ b/Utils/TaskSchedule/CronJob.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/Interval.php b/Utils/TaskSchedule/Interval.php index a6e6043ca..37a8d8c59 100644 --- a/Utils/TaskSchedule/Interval.php +++ b/Utils/TaskSchedule/Interval.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/NullCronJob.php b/Utils/TaskSchedule/NullCronJob.php index a287f4977..d1831663a 100644 --- a/Utils/TaskSchedule/NullCronJob.php +++ b/Utils/TaskSchedule/NullCronJob.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/NullSchedule.php b/Utils/TaskSchedule/NullSchedule.php index 6f4658921..4b9256a96 100644 --- a/Utils/TaskSchedule/NullSchedule.php +++ b/Utils/TaskSchedule/NullSchedule.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/Schedule.php b/Utils/TaskSchedule/Schedule.php index b01e598ee..99fea9a08 100644 --- a/Utils/TaskSchedule/Schedule.php +++ b/Utils/TaskSchedule/Schedule.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/SchedulerAbstract.php b/Utils/TaskSchedule/SchedulerAbstract.php index c5ebfc211..36c96da34 100644 --- a/Utils/TaskSchedule/SchedulerAbstract.php +++ b/Utils/TaskSchedule/SchedulerAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/SchedulerFactory.php b/Utils/TaskSchedule/SchedulerFactory.php index 0b4479c01..2c4cf2835 100644 --- a/Utils/TaskSchedule/SchedulerFactory.php +++ b/Utils/TaskSchedule/SchedulerFactory.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/TaskAbstract.php b/Utils/TaskSchedule/TaskAbstract.php index c6655d854..baec3239d 100644 --- a/Utils/TaskSchedule/TaskAbstract.php +++ b/Utils/TaskSchedule/TaskAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/TaskFactory.php b/Utils/TaskSchedule/TaskFactory.php index 8fe853a91..68e1b2be0 100644 --- a/Utils/TaskSchedule/TaskFactory.php +++ b/Utils/TaskSchedule/TaskFactory.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TaskSchedule/TaskScheduler.php b/Utils/TaskSchedule/TaskScheduler.php index 89cdf2d4e..8af94d194 100644 --- a/Utils/TaskSchedule/TaskScheduler.php +++ b/Utils/TaskSchedule/TaskScheduler.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils\TaskSchedule * @copyright Dennis Eichhorn diff --git a/Utils/TestUtils.php b/Utils/TestUtils.php index 364f405d6..220f4ac13 100644 --- a/Utils/TestUtils.php +++ b/Utils/TestUtils.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Utils * @copyright Dennis Eichhorn diff --git a/Validation/Base/DateTime.php b/Validation/Base/DateTime.php index 653454c0a..f277e6b02 100644 --- a/Validation/Base/DateTime.php +++ b/Validation/Base/DateTime.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Base * @copyright Dennis Eichhorn diff --git a/Validation/Base/Json.php b/Validation/Base/Json.php index a31d3e1a0..1317a65c2 100644 --- a/Validation/Base/Json.php +++ b/Validation/Base/Json.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Base * @copyright Dennis Eichhorn diff --git a/Validation/Finance/BIC.php b/Validation/Finance/BIC.php index aacb47f0d..e34f8d648 100644 --- a/Validation/Finance/BIC.php +++ b/Validation/Finance/BIC.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Finance * @copyright Dennis Eichhorn diff --git a/Validation/Finance/CreditCard.php b/Validation/Finance/CreditCard.php index 03f8d2f00..12b0011b5 100644 --- a/Validation/Finance/CreditCard.php +++ b/Validation/Finance/CreditCard.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Finance * @copyright Dennis Eichhorn diff --git a/Validation/Finance/Iban.php b/Validation/Finance/Iban.php index a1c2a002a..a09199d60 100644 --- a/Validation/Finance/Iban.php +++ b/Validation/Finance/Iban.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Finance * @copyright Dennis Eichhorn diff --git a/Validation/Finance/IbanEnum.php b/Validation/Finance/IbanEnum.php index 90619a191..def400a05 100644 --- a/Validation/Finance/IbanEnum.php +++ b/Validation/Finance/IbanEnum.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Finance * @copyright Dennis Eichhorn diff --git a/Validation/Finance/IbanErrorType.php b/Validation/Finance/IbanErrorType.php index 4cf37bc9d..d5788f300 100644 --- a/Validation/Finance/IbanErrorType.php +++ b/Validation/Finance/IbanErrorType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Finance * @copyright Dennis Eichhorn diff --git a/Validation/Network/Email.php b/Validation/Network/Email.php index 148d16dcc..3b2fb5ead 100644 --- a/Validation/Network/Email.php +++ b/Validation/Network/Email.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Network * @copyright Dennis Eichhorn diff --git a/Validation/Network/Hostname.php b/Validation/Network/Hostname.php index 832f26b3d..de29b2268 100644 --- a/Validation/Network/Hostname.php +++ b/Validation/Network/Hostname.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Network * @copyright Dennis Eichhorn diff --git a/Validation/Network/Ip.php b/Validation/Network/Ip.php index 57b1e639e..c8d57599b 100644 --- a/Validation/Network/Ip.php +++ b/Validation/Network/Ip.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation\Network * @copyright Dennis Eichhorn diff --git a/Validation/Validator.php b/Validation/Validator.php index e444fc9db..21ee62c08 100644 --- a/Validation/Validator.php +++ b/Validation/Validator.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation * @copyright Dennis Eichhorn diff --git a/Validation/ValidatorAbstract.php b/Validation/ValidatorAbstract.php index 4a65eb7d9..52feda99f 100644 --- a/Validation/ValidatorAbstract.php +++ b/Validation/ValidatorAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation * @copyright Dennis Eichhorn diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index 05286dfd5..0fd8baf75 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Validation * @copyright Dennis Eichhorn diff --git a/Version/Version.php b/Version/Version.php index 336f33744..dc46792f9 100644 --- a/Version/Version.php +++ b/Version/Version.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Version * @copyright Dennis Eichhorn diff --git a/Views/PaginationView.php b/Views/PaginationView.php index 21e8dd08b..43a8f0fc3 100644 --- a/Views/PaginationView.php +++ b/Views/PaginationView.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Views * @copyright Dennis Eichhorn diff --git a/Views/TableView.php b/Views/TableView.php index b3badba58..ef481eb3e 100644 --- a/Views/TableView.php +++ b/Views/TableView.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Views * @copyright Dennis Eichhorn diff --git a/Views/View.php b/Views/View.php index 5e059c04a..a18eefbe0 100644 --- a/Views/View.php +++ b/Views/View.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Views * @copyright Dennis Eichhorn diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index f1ca12b8f..f800e52e8 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package phpOMS\Views * @copyright Dennis Eichhorn diff --git a/tests/Account/AccountManagerTest.php b/tests/Account/AccountManagerTest.php index 8f448ea5d..049f707a2 100644 --- a/tests/Account/AccountManagerTest.php +++ b/tests/Account/AccountManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Account/AccountStatusTest.php b/tests/Account/AccountStatusTest.php index 9735afe2f..0d36d2693 100644 --- a/tests/Account/AccountStatusTest.php +++ b/tests/Account/AccountStatusTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Account/AccountTest.php b/tests/Account/AccountTest.php index 4045a4a6f..8c584bf73 100644 --- a/tests/Account/AccountTest.php +++ b/tests/Account/AccountTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Account/AccountTypeTest.php b/tests/Account/AccountTypeTest.php index c06706be0..5bb0c9563 100644 --- a/tests/Account/AccountTypeTest.php +++ b/tests/Account/AccountTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Account/GroupStatusTest.php b/tests/Account/GroupStatusTest.php index 3b7a99bf5..1d0f6c99a 100644 --- a/tests/Account/GroupStatusTest.php +++ b/tests/Account/GroupStatusTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Account/GroupTest.php b/tests/Account/GroupTest.php index ec4d0b51c..e21851613 100644 --- a/tests/Account/GroupTest.php +++ b/tests/Account/GroupTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Account/NullAccountTest.php b/tests/Account/NullAccountTest.php index 10c3555c1..4139f9cb4 100644 --- a/tests/Account/NullAccountTest.php +++ b/tests/Account/NullAccountTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Account/PermissionAbstractTest.php b/tests/Account/PermissionAbstractTest.php index a157e4e39..7c316b449 100644 --- a/tests/Account/PermissionAbstractTest.php +++ b/tests/Account/PermissionAbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Account/PermissionTypeTest.php b/tests/Account/PermissionTypeTest.php index 1cb810146..3938b0641 100644 --- a/tests/Account/PermissionTypeTest.php +++ b/tests/Account/PermissionTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Algorithm/Sort/BubbleSortTest.php b/tests/Algorithm/Sort/BubbleSortTest.php index 81cc429a2..0e53dd12b 100644 --- a/tests/Algorithm/Sort/BubbleSortTest.php +++ b/tests/Algorithm/Sort/BubbleSortTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Algorithm/Sort/CocktailShakerSortTest.php b/tests/Algorithm/Sort/CocktailShakerSortTest.php index 5c11f0c78..5e44980ca 100644 --- a/tests/Algorithm/Sort/CocktailShakerSortTest.php +++ b/tests/Algorithm/Sort/CocktailShakerSortTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Algorithm/Sort/CombSortTest.php b/tests/Algorithm/Sort/CombSortTest.php index b351ab1e3..eaeea32eb 100644 --- a/tests/Algorithm/Sort/CombSortTest.php +++ b/tests/Algorithm/Sort/CombSortTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Algorithm/Sort/GnomeSortTest.php b/tests/Algorithm/Sort/GnomeSortTest.php index 34469169a..ff7537f0e 100644 --- a/tests/Algorithm/Sort/GnomeSortTest.php +++ b/tests/Algorithm/Sort/GnomeSortTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Algorithm/Sort/NumericElement.php b/tests/Algorithm/Sort/NumericElement.php index a01edcd79..299a26283 100644 --- a/tests/Algorithm/Sort/NumericElement.php +++ b/tests/Algorithm/Sort/NumericElement.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Algorithm/Sort/OddEvenSortTest.php b/tests/Algorithm/Sort/OddEvenSortTest.php index f6cf7856d..b3fd3d48e 100644 --- a/tests/Algorithm/Sort/OddEvenSortTest.php +++ b/tests/Algorithm/Sort/OddEvenSortTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Algorithm/Sort/QuickSortTest.php b/tests/Algorithm/Sort/QuickSortTest.php index d1aaa12c7..cf7c6274a 100644 --- a/tests/Algorithm/Sort/QuickSortTest.php +++ b/tests/Algorithm/Sort/QuickSortTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Algorithm/Sort/SelectionSortTest.php b/tests/Algorithm/Sort/SelectionSortTest.php index 84e328449..5c2f983c8 100644 --- a/tests/Algorithm/Sort/SelectionSortTest.php +++ b/tests/Algorithm/Sort/SelectionSortTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/ApplicationAbstractTest.php b/tests/ApplicationAbstractTest.php index 7abf94fde..0c1a86489 100644 --- a/tests/ApplicationAbstractTest.php +++ b/tests/ApplicationAbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Asset/AssetManagerTest.php b/tests/Asset/AssetManagerTest.php index d5b543e2a..4907cd1a9 100644 --- a/tests/Asset/AssetManagerTest.php +++ b/tests/Asset/AssetManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Asset/AssetTypeTest.php b/tests/Asset/AssetTypeTest.php index 4bcd8e64f..f61d5ca9f 100644 --- a/tests/Asset/AssetTypeTest.php +++ b/tests/Asset/AssetTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Auth/AuthTest.php b/tests/Auth/AuthTest.php index 2b1b92c4d..a532185ed 100644 --- a/tests/Auth/AuthTest.php +++ b/tests/Auth/AuthTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Auth/LoginReturnTypeTest.php b/tests/Auth/LoginReturnTypeTest.php index 04a1a5dce..2ac6428e7 100644 --- a/tests/Auth/LoginReturnTypeTest.php +++ b/tests/Auth/LoginReturnTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/AutoloadExceptionTest.php b/tests/AutoloadExceptionTest.php index 25603cf35..2a65c6b80 100644 --- a/tests/AutoloadExceptionTest.php +++ b/tests/AutoloadExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Autoloader.php b/tests/Autoloader.php index d3039e955..cb7afe8e0 100644 --- a/tests/Autoloader.php +++ b/tests/Autoloader.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package Tests\PHPUnit * @copyright Dennis Eichhorn diff --git a/tests/AutoloaderTest.php b/tests/AutoloaderTest.php index 064212ad0..1c0f7610e 100644 --- a/tests/AutoloaderTest.php +++ b/tests/AutoloaderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Finance/DepreciationTest.php b/tests/Business/Finance/DepreciationTest.php index b0ac2e810..85f082895 100644 --- a/tests/Business/Finance/DepreciationTest.php +++ b/tests/Business/Finance/DepreciationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Finance/FinanceFormulasTest.php b/tests/Business/Finance/FinanceFormulasTest.php index 7194c98a4..a503d8b81 100644 --- a/tests/Business/Finance/FinanceFormulasTest.php +++ b/tests/Business/Finance/FinanceFormulasTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Finance/LoanTest.php b/tests/Business/Finance/LoanTest.php index 9519ac45d..a17f76e5d 100644 --- a/tests/Business/Finance/LoanTest.php +++ b/tests/Business/Finance/LoanTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Finance/LorenzkurveTest.php b/tests/Business/Finance/LorenzkurveTest.php index 222ba8696..96f802f1b 100644 --- a/tests/Business/Finance/LorenzkurveTest.php +++ b/tests/Business/Finance/LorenzkurveTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Finance/StockBondsTest.php b/tests/Business/Finance/StockBondsTest.php index 0ab19cbb5..7987566c4 100644 --- a/tests/Business/Finance/StockBondsTest.php +++ b/tests/Business/Finance/StockBondsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Marketing/MetricsTest.php b/tests/Business/Marketing/MetricsTest.php index 8c955371d..0cca4be74 100644 --- a/tests/Business/Marketing/MetricsTest.php +++ b/tests/Business/Marketing/MetricsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Marketing/NetPromoterScoreTest.php b/tests/Business/Marketing/NetPromoterScoreTest.php index 784bf50a7..924b4bbd1 100644 --- a/tests/Business/Marketing/NetPromoterScoreTest.php +++ b/tests/Business/Marketing/NetPromoterScoreTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Programming/MetricsTest.php b/tests/Business/Programming/MetricsTest.php index 612e95302..e5f770262 100644 --- a/tests/Business/Programming/MetricsTest.php +++ b/tests/Business/Programming/MetricsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Business/Sales/MarketShareEstimationTest.php b/tests/Business/Sales/MarketShareEstimationTest.php index 25f13ec2f..2beba7aff 100644 --- a/tests/Business/Sales/MarketShareEstimationTest.php +++ b/tests/Business/Sales/MarketShareEstimationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Config/OptionsTraitTest.php b/tests/Config/OptionsTraitTest.php index bf7410fcd..34b4cadb8 100644 --- a/tests/Config/OptionsTraitTest.php +++ b/tests/Config/OptionsTraitTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/CachePoolTest.php b/tests/DataStorage/Cache/CachePoolTest.php index ae03375a9..e91c196b4 100644 --- a/tests/DataStorage/Cache/CachePoolTest.php +++ b/tests/DataStorage/Cache/CachePoolTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/CacheStatusTest.php b/tests/DataStorage/Cache/CacheStatusTest.php index b4c8da0dc..5701a58a2 100644 --- a/tests/DataStorage/Cache/CacheStatusTest.php +++ b/tests/DataStorage/Cache/CacheStatusTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/CacheTypeTest.php b/tests/DataStorage/Cache/CacheTypeTest.php index f1435cf38..0623c9bf0 100644 --- a/tests/DataStorage/Cache/CacheTypeTest.php +++ b/tests/DataStorage/Cache/CacheTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Connection/CacheValueTypeTest.php b/tests/DataStorage/Cache/Connection/CacheValueTypeTest.php index 5548727c8..c157865fe 100644 --- a/tests/DataStorage/Cache/Connection/CacheValueTypeTest.php +++ b/tests/DataStorage/Cache/Connection/CacheValueTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Connection/ConnectionFactoryTest.php b/tests/DataStorage/Cache/Connection/ConnectionFactoryTest.php index 86fbc8962..de5ed526d 100644 --- a/tests/DataStorage/Cache/Connection/ConnectionFactoryTest.php +++ b/tests/DataStorage/Cache/Connection/ConnectionFactoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Connection/FileCacheJsonSerializable.php b/tests/DataStorage/Cache/Connection/FileCacheJsonSerializable.php index d7baedec8..6fb184e33 100644 --- a/tests/DataStorage/Cache/Connection/FileCacheJsonSerializable.php +++ b/tests/DataStorage/Cache/Connection/FileCacheJsonSerializable.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Connection/FileCacheSerializable.php b/tests/DataStorage/Cache/Connection/FileCacheSerializable.php index 5843d4083..4218d2a77 100644 --- a/tests/DataStorage/Cache/Connection/FileCacheSerializable.php +++ b/tests/DataStorage/Cache/Connection/FileCacheSerializable.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Connection/FileCacheTest.php b/tests/DataStorage/Cache/Connection/FileCacheTest.php index e629c0b35..c3e275c18 100644 --- a/tests/DataStorage/Cache/Connection/FileCacheTest.php +++ b/tests/DataStorage/Cache/Connection/FileCacheTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Connection/MemCachedTest.php b/tests/DataStorage/Cache/Connection/MemCachedTest.php index 4f1bef38c..dfdce31e6 100644 --- a/tests/DataStorage/Cache/Connection/MemCachedTest.php +++ b/tests/DataStorage/Cache/Connection/MemCachedTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Connection/NullCacheTest.php b/tests/DataStorage/Cache/Connection/NullCacheTest.php index ff2f37a71..7056666ad 100644 --- a/tests/DataStorage/Cache/Connection/NullCacheTest.php +++ b/tests/DataStorage/Cache/Connection/NullCacheTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Connection/RedisCacheTest.php b/tests/DataStorage/Cache/Connection/RedisCacheTest.php index 4e524357c..6d620fab4 100644 --- a/tests/DataStorage/Cache/Connection/RedisCacheTest.php +++ b/tests/DataStorage/Cache/Connection/RedisCacheTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php b/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php index b35c63717..0b856c6ce 100644 --- a/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php +++ b/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Cookie/CookieJarTest.php b/tests/DataStorage/Cookie/CookieJarTest.php index 0a200180f..43b523b89 100644 --- a/tests/DataStorage/Cookie/CookieJarTest.php +++ b/tests/DataStorage/Cookie/CookieJarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php b/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php index dd7059713..e2308e2ab 100644 --- a/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php +++ b/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Connection/MysqlConnectionTest.php b/tests/DataStorage/Database/Connection/MysqlConnectionTest.php index 99c12dc37..30e833073 100644 --- a/tests/DataStorage/Database/Connection/MysqlConnectionTest.php +++ b/tests/DataStorage/Database/Connection/MysqlConnectionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Connection/NullConnectionTest.php b/tests/DataStorage/Database/Connection/NullConnectionTest.php index 830c266d8..13d8cdc7e 100644 --- a/tests/DataStorage/Database/Connection/NullConnectionTest.php +++ b/tests/DataStorage/Database/Connection/NullConnectionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Connection/PostgresConnectionTest.php b/tests/DataStorage/Database/Connection/PostgresConnectionTest.php index 46e37d55e..ab71a73f8 100644 --- a/tests/DataStorage/Database/Connection/PostgresConnectionTest.php +++ b/tests/DataStorage/Database/Connection/PostgresConnectionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php b/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php index d988a3cf2..b081e1481 100644 --- a/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php +++ b/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php b/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php index d0e3f4831..e0584d850 100644 --- a/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php +++ b/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/DataMapperAbstractTest.php b/tests/DataStorage/Database/DataMapperAbstractTest.php index 86ebafebe..5b6d259e1 100644 --- a/tests/DataStorage/Database/DataMapperAbstractTest.php +++ b/tests/DataStorage/Database/DataMapperAbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php b/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php index 5d5e46d08..42f97244a 100644 --- a/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php +++ b/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/DatabasePoolTest.php b/tests/DataStorage/Database/DatabasePoolTest.php index 96ab691dd..bff458fca 100644 --- a/tests/DataStorage/Database/DatabasePoolTest.php +++ b/tests/DataStorage/Database/DatabasePoolTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/DatabaseStatusTest.php b/tests/DataStorage/Database/DatabaseStatusTest.php index 9305cbf8b..eaeac4685 100644 --- a/tests/DataStorage/Database/DatabaseStatusTest.php +++ b/tests/DataStorage/Database/DatabaseStatusTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/DatabaseTypeTest.php b/tests/DataStorage/Database/DatabaseTypeTest.php index 8f1c44ed6..fdbd77ddd 100644 --- a/tests/DataStorage/Database/DatabaseTypeTest.php +++ b/tests/DataStorage/Database/DatabaseTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php index 8283b53ae..ac5975667 100644 --- a/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php index 6cf037b2d..faddfec38 100644 --- a/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php index 79c1d1530..8cae3949b 100644 --- a/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/BuilderTest.php b/tests/DataStorage/Database/Query/BuilderTest.php index 656ca5314..1b2fbca28 100644 --- a/tests/DataStorage/Database/Query/BuilderTest.php +++ b/tests/DataStorage/Database/Query/BuilderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/ColumnTest.php b/tests/DataStorage/Database/Query/ColumnTest.php index 613ad8ad8..af5afe697 100644 --- a/tests/DataStorage/Database/Query/ColumnTest.php +++ b/tests/DataStorage/Database/Query/ColumnTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/CountTest.php b/tests/DataStorage/Database/Query/CountTest.php index 1cdc83be5..b703d40e0 100644 --- a/tests/DataStorage/Database/Query/CountTest.php +++ b/tests/DataStorage/Database/Query/CountTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/ExpressionTest.php b/tests/DataStorage/Database/Query/ExpressionTest.php index 761a95273..e97e48ad0 100644 --- a/tests/DataStorage/Database/Query/ExpressionTest.php +++ b/tests/DataStorage/Database/Query/ExpressionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/FromTest.php b/tests/DataStorage/Database/Query/FromTest.php index a7d827e9d..dc73fc72c 100644 --- a/tests/DataStorage/Database/Query/FromTest.php +++ b/tests/DataStorage/Database/Query/FromTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/Grammar/GrammarTest.php b/tests/DataStorage/Database/Query/Grammar/GrammarTest.php index 071124757..98c4d0e2a 100644 --- a/tests/DataStorage/Database/Query/Grammar/GrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/GrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php index 1273e6498..28d317a33 100644 --- a/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php index 9813b2c07..d3dacd1c9 100644 --- a/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php index bf482ebc5..b58461d21 100644 --- a/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php index 1e44dbe27..47ccc9a8e 100644 --- a/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php index a0e363728..ede78bdd7 100644 --- a/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/IntoTest.php b/tests/DataStorage/Database/Query/IntoTest.php index 1417697a3..b88098eeb 100644 --- a/tests/DataStorage/Database/Query/IntoTest.php +++ b/tests/DataStorage/Database/Query/IntoTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/JoinTypeTest.php b/tests/DataStorage/Database/Query/JoinTypeTest.php index 57d1326e6..fd99e635a 100644 --- a/tests/DataStorage/Database/Query/JoinTypeTest.php +++ b/tests/DataStorage/Database/Query/JoinTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/QueryTypeTest.php b/tests/DataStorage/Database/Query/QueryTypeTest.php index 7fdc8290b..fe10ac07a 100644 --- a/tests/DataStorage/Database/Query/QueryTypeTest.php +++ b/tests/DataStorage/Database/Query/QueryTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/SelectTest.php b/tests/DataStorage/Database/Query/SelectTest.php index edfe13932..81f5df30b 100644 --- a/tests/DataStorage/Database/Query/SelectTest.php +++ b/tests/DataStorage/Database/Query/SelectTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Query/WhereTest.php b/tests/DataStorage/Database/Query/WhereTest.php index 9b900586b..e1c29e75d 100644 --- a/tests/DataStorage/Database/Query/WhereTest.php +++ b/tests/DataStorage/Database/Query/WhereTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/RelationTypeTest.php b/tests/DataStorage/Database/RelationTypeTest.php index 49fa324b0..fbc5a8ba5 100644 --- a/tests/DataStorage/Database/RelationTypeTest.php +++ b/tests/DataStorage/Database/RelationTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/BuilderTest.php b/tests/DataStorage/Database/Schema/BuilderTest.php index 05bf10cfd..e0ab23aa4 100644 --- a/tests/DataStorage/Database/Schema/BuilderTest.php +++ b/tests/DataStorage/Database/Schema/BuilderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php b/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php index 940711ed6..e3339ed89 100644 --- a/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php +++ b/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php index 0569d57f4..79c15734c 100644 --- a/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php index 6c162110a..c6742d08a 100644 --- a/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php index 7c3d65113..35d2b207c 100644 --- a/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php index 9b789b70b..fc63fe546 100644 --- a/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php index b0fb27f02..e7ac2ade3 100644 --- a/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php index 323315803..7c9ee075f 100644 --- a/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/Schema/QueryTypeTest.php b/tests/DataStorage/Database/Schema/QueryTypeTest.php index cea4c7e54..a3293d895 100644 --- a/tests/DataStorage/Database/Schema/QueryTypeTest.php +++ b/tests/DataStorage/Database/Schema/QueryTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/BaseModel.php b/tests/DataStorage/Database/TestModel/BaseModel.php index f4e1fdc56..9602ff405 100644 --- a/tests/DataStorage/Database/TestModel/BaseModel.php +++ b/tests/DataStorage/Database/TestModel/BaseModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/BaseModelMapper.php b/tests/DataStorage/Database/TestModel/BaseModelMapper.php index 304353994..0cc1a2a15 100644 --- a/tests/DataStorage/Database/TestModel/BaseModelMapper.php +++ b/tests/DataStorage/Database/TestModel/BaseModelMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/BelongsToModel.php b/tests/DataStorage/Database/TestModel/BelongsToModel.php index 5299b1c1e..6fb3247e1 100644 --- a/tests/DataStorage/Database/TestModel/BelongsToModel.php +++ b/tests/DataStorage/Database/TestModel/BelongsToModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/BelongsToModelMapper.php b/tests/DataStorage/Database/TestModel/BelongsToModelMapper.php index 42a8c3518..0312d5f6a 100644 --- a/tests/DataStorage/Database/TestModel/BelongsToModelMapper.php +++ b/tests/DataStorage/Database/TestModel/BelongsToModelMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php b/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php index 6958cdf73..207dc28bf 100644 --- a/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php +++ b/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/ManyToManyDirectModelMapper.php b/tests/DataStorage/Database/TestModel/ManyToManyDirectModelMapper.php index 22553cb2d..282cc558d 100644 --- a/tests/DataStorage/Database/TestModel/ManyToManyDirectModelMapper.php +++ b/tests/DataStorage/Database/TestModel/ManyToManyDirectModelMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php b/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php index 6503e5b31..e1e8b751f 100644 --- a/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php +++ b/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/ManyToManyRelModelMapper.php b/tests/DataStorage/Database/TestModel/ManyToManyRelModelMapper.php index 6cbca50c5..2bf8d83d0 100644 --- a/tests/DataStorage/Database/TestModel/ManyToManyRelModelMapper.php +++ b/tests/DataStorage/Database/TestModel/ManyToManyRelModelMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/NullBaseModel.php b/tests/DataStorage/Database/TestModel/NullBaseModel.php index 78754679a..40203d499 100644 --- a/tests/DataStorage/Database/TestModel/NullBaseModel.php +++ b/tests/DataStorage/Database/TestModel/NullBaseModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/NullBelongsToModel.php b/tests/DataStorage/Database/TestModel/NullBelongsToModel.php index b1e0667a6..a154d7246 100644 --- a/tests/DataStorage/Database/TestModel/NullBelongsToModel.php +++ b/tests/DataStorage/Database/TestModel/NullBelongsToModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php b/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php index 5783f7daa..f1a50dcbc 100644 --- a/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php +++ b/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php b/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php index 212d81a96..45c34eaca 100644 --- a/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php +++ b/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php b/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php index c7469edbb..1490caf96 100644 --- a/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php +++ b/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/OwnsOneModel.php b/tests/DataStorage/Database/TestModel/OwnsOneModel.php index 832d5eb4d..9511f4c26 100644 --- a/tests/DataStorage/Database/TestModel/OwnsOneModel.php +++ b/tests/DataStorage/Database/TestModel/OwnsOneModel.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Database/TestModel/OwnsOneModelMapper.php b/tests/DataStorage/Database/TestModel/OwnsOneModelMapper.php index c67f9b590..0034524a3 100644 --- a/tests/DataStorage/Database/TestModel/OwnsOneModelMapper.php +++ b/tests/DataStorage/Database/TestModel/OwnsOneModelMapper.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/File/JsonBuilderTest.php b/tests/DataStorage/File/JsonBuilderTest.php index acf5da580..52c7e05e6 100644 --- a/tests/DataStorage/File/JsonBuilderTest.php +++ b/tests/DataStorage/File/JsonBuilderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/LockExceptionTest.php b/tests/DataStorage/LockExceptionTest.php index 3fa4981e2..f7fbf0686 100644 --- a/tests/DataStorage/LockExceptionTest.php +++ b/tests/DataStorage/LockExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/DataStorage/Session/HttpSessionTest.php b/tests/DataStorage/Session/HttpSessionTest.php index 4f4135d86..863ece69b 100644 --- a/tests/DataStorage/Session/HttpSessionTest.php +++ b/tests/DataStorage/Session/HttpSessionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Dispatcher/DispatcherTest.php b/tests/Dispatcher/DispatcherTest.php index d99c500ca..cf569ccfe 100644 --- a/tests/Dispatcher/DispatcherTest.php +++ b/tests/Dispatcher/DispatcherTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Dispatcher/TestController.php b/tests/Dispatcher/TestController.php index f0d78754d..0a04e4c06 100644 --- a/tests/Dispatcher/TestController.php +++ b/tests/Dispatcher/TestController.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Event/EventManagerTest.php b/tests/Event/EventManagerTest.php index f0d76897f..d423b63fb 100644 --- a/tests/Event/EventManagerTest.php +++ b/tests/Event/EventManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/ExtensionTest.php b/tests/ExtensionTest.php index 4af20afad..80132f257 100644 --- a/tests/ExtensionTest.php +++ b/tests/ExtensionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/CityMapperTest.php b/tests/Localization/Defaults/CityMapperTest.php index e2f321f65..d5fb02268 100644 --- a/tests/Localization/Defaults/CityMapperTest.php +++ b/tests/Localization/Defaults/CityMapperTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/CityTest.php b/tests/Localization/Defaults/CityTest.php index cb1829073..04d882077 100644 --- a/tests/Localization/Defaults/CityTest.php +++ b/tests/Localization/Defaults/CityTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/CountryMapperTest.php b/tests/Localization/Defaults/CountryMapperTest.php index 35bf78f01..82e8fc909 100644 --- a/tests/Localization/Defaults/CountryMapperTest.php +++ b/tests/Localization/Defaults/CountryMapperTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/CountryTest.php b/tests/Localization/Defaults/CountryTest.php index 3b1742196..c3fdb15d0 100644 --- a/tests/Localization/Defaults/CountryTest.php +++ b/tests/Localization/Defaults/CountryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/CurrencyMapperTest.php b/tests/Localization/Defaults/CurrencyMapperTest.php index 7267d4610..07b03f50e 100644 --- a/tests/Localization/Defaults/CurrencyMapperTest.php +++ b/tests/Localization/Defaults/CurrencyMapperTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/CurrencyTest.php b/tests/Localization/Defaults/CurrencyTest.php index 25d6147c3..787bf1abf 100644 --- a/tests/Localization/Defaults/CurrencyTest.php +++ b/tests/Localization/Defaults/CurrencyTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/IbanMapperTest.php b/tests/Localization/Defaults/IbanMapperTest.php index c889284f0..82b1148f1 100644 --- a/tests/Localization/Defaults/IbanMapperTest.php +++ b/tests/Localization/Defaults/IbanMapperTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/IbanTest.php b/tests/Localization/Defaults/IbanTest.php index 3c56bf652..824c6ecd3 100644 --- a/tests/Localization/Defaults/IbanTest.php +++ b/tests/Localization/Defaults/IbanTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/LanguageMapperTest.php b/tests/Localization/Defaults/LanguageMapperTest.php index 0ecd7e860..9c44c73ac 100644 --- a/tests/Localization/Defaults/LanguageMapperTest.php +++ b/tests/Localization/Defaults/LanguageMapperTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/Defaults/LanguageTest.php b/tests/Localization/Defaults/LanguageTest.php index 4a7b1c04c..093fdad26 100644 --- a/tests/Localization/Defaults/LanguageTest.php +++ b/tests/Localization/Defaults/LanguageTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO3166CharEnumTest.php b/tests/Localization/ISO3166CharEnumTest.php index e78f02db9..bdf13010d 100644 --- a/tests/Localization/ISO3166CharEnumTest.php +++ b/tests/Localization/ISO3166CharEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO3166NameEnumTest.php b/tests/Localization/ISO3166NameEnumTest.php index 77726d8fa..0b55e7581 100644 --- a/tests/Localization/ISO3166NameEnumTest.php +++ b/tests/Localization/ISO3166NameEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO3166NumEnumTest.php b/tests/Localization/ISO3166NumEnumTest.php index e4faec439..9ba5eca9a 100644 --- a/tests/Localization/ISO3166NumEnumTest.php +++ b/tests/Localization/ISO3166NumEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO3166TwoEnumTest.php b/tests/Localization/ISO3166TwoEnumTest.php index 73cb433b6..7abc9b148 100644 --- a/tests/Localization/ISO3166TwoEnumTest.php +++ b/tests/Localization/ISO3166TwoEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO4217CharEnumTest.php b/tests/Localization/ISO4217CharEnumTest.php index bf8bf2dbd..c59a727a2 100644 --- a/tests/Localization/ISO4217CharEnumTest.php +++ b/tests/Localization/ISO4217CharEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO4217DecimalEnumTest.php b/tests/Localization/ISO4217DecimalEnumTest.php index 3a0461432..2ebd6d481 100644 --- a/tests/Localization/ISO4217DecimalEnumTest.php +++ b/tests/Localization/ISO4217DecimalEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO4217EnumTest.php b/tests/Localization/ISO4217EnumTest.php index b0bbb8729..855bdc89e 100644 --- a/tests/Localization/ISO4217EnumTest.php +++ b/tests/Localization/ISO4217EnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO4217NumEnumTest.php b/tests/Localization/ISO4217NumEnumTest.php index 6992351e1..9d26a059e 100644 --- a/tests/Localization/ISO4217NumEnumTest.php +++ b/tests/Localization/ISO4217NumEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO4217SubUnitEnumTest.php b/tests/Localization/ISO4217SubUnitEnumTest.php index b1c7993a3..c254bb304 100644 --- a/tests/Localization/ISO4217SubUnitEnumTest.php +++ b/tests/Localization/ISO4217SubUnitEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO4217SymbolEnumTest.php b/tests/Localization/ISO4217SymbolEnumTest.php index da66b630c..4f254e403 100644 --- a/tests/Localization/ISO4217SymbolEnumTest.php +++ b/tests/Localization/ISO4217SymbolEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO639EnumTest.php b/tests/Localization/ISO639EnumTest.php index c49fc5eae..babf8ebea 100644 --- a/tests/Localization/ISO639EnumTest.php +++ b/tests/Localization/ISO639EnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO639x1EnumTest.php b/tests/Localization/ISO639x1EnumTest.php index 24a8fee87..ccc0ea278 100644 --- a/tests/Localization/ISO639x1EnumTest.php +++ b/tests/Localization/ISO639x1EnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO639x2EnumTest.php b/tests/Localization/ISO639x2EnumTest.php index 651c43453..1f7277deb 100644 --- a/tests/Localization/ISO639x2EnumTest.php +++ b/tests/Localization/ISO639x2EnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/ISO8601EnumArrayTest.php b/tests/Localization/ISO8601EnumArrayTest.php index abcc1ba62..334fc2494 100644 --- a/tests/Localization/ISO8601EnumArrayTest.php +++ b/tests/Localization/ISO8601EnumArrayTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/L11nManagerTest.php b/tests/Localization/L11nManagerTest.php index b44e0c63c..28520e336 100644 --- a/tests/Localization/L11nManagerTest.php +++ b/tests/Localization/L11nManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/LocalizationTest.php b/tests/Localization/LocalizationTest.php index 3e3b1af7e..46c2d1d86 100644 --- a/tests/Localization/LocalizationTest.php +++ b/tests/Localization/LocalizationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/MoneyTest.php b/tests/Localization/MoneyTest.php index ecd368e20..278c2f4fb 100644 --- a/tests/Localization/MoneyTest.php +++ b/tests/Localization/MoneyTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/PhoneEnumTest.php b/tests/Localization/PhoneEnumTest.php index 99bfa5f76..4438059f7 100644 --- a/tests/Localization/PhoneEnumTest.php +++ b/tests/Localization/PhoneEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Localization/TimeZoneEnumArrayTest.php b/tests/Localization/TimeZoneEnumArrayTest.php index ff3b26266..3f8db88a4 100644 --- a/tests/Localization/TimeZoneEnumArrayTest.php +++ b/tests/Localization/TimeZoneEnumArrayTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Log/FileLoggerTest.php b/tests/Log/FileLoggerTest.php index 4420e26f9..3b0c79193 100644 --- a/tests/Log/FileLoggerTest.php +++ b/tests/Log/FileLoggerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Log/LogLevelTest.php b/tests/Log/LogLevelTest.php index aa086026c..8edcd85ab 100644 --- a/tests/Log/LogLevelTest.php +++ b/tests/Log/LogLevelTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Exception/ZeroDevisionExceptionTest.php b/tests/Math/Exception/ZeroDevisionExceptionTest.php index d1f76b8dc..7821e9385 100644 --- a/tests/Math/Exception/ZeroDevisionExceptionTest.php +++ b/tests/Math/Exception/ZeroDevisionExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Functions/FibunacciTest.php b/tests/Math/Functions/FibunacciTest.php index ca1cdbe84..1f8aff390 100644 --- a/tests/Math/Functions/FibunacciTest.php +++ b/tests/Math/Functions/FibunacciTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Functions/FunctionsTest.php b/tests/Math/Functions/FunctionsTest.php index bceb1d55b..c21520123 100644 --- a/tests/Math/Functions/FunctionsTest.php +++ b/tests/Math/Functions/FunctionsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Functions/GammaTest.php b/tests/Math/Functions/GammaTest.php index f51b858a3..8da35c953 100644 --- a/tests/Math/Functions/GammaTest.php +++ b/tests/Math/Functions/GammaTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php b/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php index 45c872d1b..cefeeeb70 100644 --- a/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php +++ b/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D2/CircleTest.php b/tests/Math/Geometry/Shape/D2/CircleTest.php index 1ad8d4363..8f3cc4ff8 100644 --- a/tests/Math/Geometry/Shape/D2/CircleTest.php +++ b/tests/Math/Geometry/Shape/D2/CircleTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D2/EllipseTest.php b/tests/Math/Geometry/Shape/D2/EllipseTest.php index d9b1944d5..7823cd602 100644 --- a/tests/Math/Geometry/Shape/D2/EllipseTest.php +++ b/tests/Math/Geometry/Shape/D2/EllipseTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D2/PolygonTest.php b/tests/Math/Geometry/Shape/D2/PolygonTest.php index 2a2103dd8..770512dd5 100644 --- a/tests/Math/Geometry/Shape/D2/PolygonTest.php +++ b/tests/Math/Geometry/Shape/D2/PolygonTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php b/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php index 991fd7d18..4fc4e255f 100644 --- a/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php +++ b/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D2/RectangleTest.php b/tests/Math/Geometry/Shape/D2/RectangleTest.php index 674c80b74..b65b2dca2 100644 --- a/tests/Math/Geometry/Shape/D2/RectangleTest.php +++ b/tests/Math/Geometry/Shape/D2/RectangleTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D2/TrapezoidTest.php b/tests/Math/Geometry/Shape/D2/TrapezoidTest.php index 7865ac996..275703c1c 100644 --- a/tests/Math/Geometry/Shape/D2/TrapezoidTest.php +++ b/tests/Math/Geometry/Shape/D2/TrapezoidTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D2/TriangleTest.php b/tests/Math/Geometry/Shape/D2/TriangleTest.php index a0e245b80..cf3c24b85 100644 --- a/tests/Math/Geometry/Shape/D2/TriangleTest.php +++ b/tests/Math/Geometry/Shape/D2/TriangleTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D3/ConeTest.php b/tests/Math/Geometry/Shape/D3/ConeTest.php index 25c316f3c..a50385f7d 100644 --- a/tests/Math/Geometry/Shape/D3/ConeTest.php +++ b/tests/Math/Geometry/Shape/D3/ConeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D3/CuboidTest.php b/tests/Math/Geometry/Shape/D3/CuboidTest.php index 32621b37a..3a8b75f0e 100644 --- a/tests/Math/Geometry/Shape/D3/CuboidTest.php +++ b/tests/Math/Geometry/Shape/D3/CuboidTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D3/CylinderTest.php b/tests/Math/Geometry/Shape/D3/CylinderTest.php index d3f2d9bb0..cbf8936b9 100644 --- a/tests/Math/Geometry/Shape/D3/CylinderTest.php +++ b/tests/Math/Geometry/Shape/D3/CylinderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D3/PrismTest.php b/tests/Math/Geometry/Shape/D3/PrismTest.php index fc2332f3a..45269d571 100644 --- a/tests/Math/Geometry/Shape/D3/PrismTest.php +++ b/tests/Math/Geometry/Shape/D3/PrismTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php b/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php index 71334de1d..9fbad67de 100644 --- a/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php +++ b/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D3/SphereTest.php b/tests/Math/Geometry/Shape/D3/SphereTest.php index 05838cab4..06a8c849f 100644 --- a/tests/Math/Geometry/Shape/D3/SphereTest.php +++ b/tests/Math/Geometry/Shape/D3/SphereTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Geometry/Shape/D3/TetrahedronTest.php b/tests/Math/Geometry/Shape/D3/TetrahedronTest.php index 7c1e132b6..c9ea097c0 100644 --- a/tests/Math/Geometry/Shape/D3/TetrahedronTest.php +++ b/tests/Math/Geometry/Shape/D3/TetrahedronTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Integral/GaussTest.php b/tests/Math/Integral/GaussTest.php index 802c4e8cc..d56f206be 100644 --- a/tests/Math/Integral/GaussTest.php +++ b/tests/Math/Integral/GaussTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/CholeskyDecompositionTest.php b/tests/Math/Matrix/CholeskyDecompositionTest.php index 66c1386cf..9468d2e7f 100644 --- a/tests/Math/Matrix/CholeskyDecompositionTest.php +++ b/tests/Math/Matrix/CholeskyDecompositionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/EigenvalueDecompositionTest.php b/tests/Math/Matrix/EigenvalueDecompositionTest.php index 557fabbd5..06eea0f83 100644 --- a/tests/Math/Matrix/EigenvalueDecompositionTest.php +++ b/tests/Math/Matrix/EigenvalueDecompositionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php b/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php index c960de1cc..147d658fb 100644 --- a/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php +++ b/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/IdentityMatrixTest.php b/tests/Math/Matrix/IdentityMatrixTest.php index a45bddb35..e38d05276 100644 --- a/tests/Math/Matrix/IdentityMatrixTest.php +++ b/tests/Math/Matrix/IdentityMatrixTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/LUDecompositionTest.php b/tests/Math/Matrix/LUDecompositionTest.php index f8fa50b17..d77e1c60a 100644 --- a/tests/Math/Matrix/LUDecompositionTest.php +++ b/tests/Math/Matrix/LUDecompositionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/MatrixTest.php b/tests/Math/Matrix/MatrixTest.php index f7f636357..b98c148ea 100644 --- a/tests/Math/Matrix/MatrixTest.php +++ b/tests/Math/Matrix/MatrixTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/QRDecompositionTest.php b/tests/Math/Matrix/QRDecompositionTest.php index 81b78eecc..b96f72eec 100644 --- a/tests/Math/Matrix/QRDecompositionTest.php +++ b/tests/Math/Matrix/QRDecompositionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/SingularValueDecompositionTest.php b/tests/Math/Matrix/SingularValueDecompositionTest.php index 19642a603..0a6747581 100644 --- a/tests/Math/Matrix/SingularValueDecompositionTest.php +++ b/tests/Math/Matrix/SingularValueDecompositionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Matrix/VectorTest.php b/tests/Math/Matrix/VectorTest.php index 3b9a03c22..ceacaff5a 100644 --- a/tests/Math/Matrix/VectorTest.php +++ b/tests/Math/Matrix/VectorTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Number/ComplexTest.php b/tests/Math/Number/ComplexTest.php index 7b75c6b7a..2140abe6e 100644 --- a/tests/Math/Number/ComplexTest.php +++ b/tests/Math/Number/ComplexTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Number/IntegerTest.php b/tests/Math/Number/IntegerTest.php index 3e52dcdae..9982af2fc 100644 --- a/tests/Math/Number/IntegerTest.php +++ b/tests/Math/Number/IntegerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Number/NaturalTest.php b/tests/Math/Number/NaturalTest.php index 86ac61196..dc542b1b3 100644 --- a/tests/Math/Number/NaturalTest.php +++ b/tests/Math/Number/NaturalTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Number/NumberTypeTest.php b/tests/Math/Number/NumberTypeTest.php index d6084ecfb..08e6ae70e 100644 --- a/tests/Math/Number/NumberTypeTest.php +++ b/tests/Math/Number/NumberTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Number/NumbersTest.php b/tests/Math/Number/NumbersTest.php index 98f1891b8..83156ae68 100644 --- a/tests/Math/Number/NumbersTest.php +++ b/tests/Math/Number/NumbersTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Number/PrimeTest.php b/tests/Math/Number/PrimeTest.php index 75d5595e8..145853231 100644 --- a/tests/Math/Number/PrimeTest.php +++ b/tests/Math/Number/PrimeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php b/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php index 891e12f16..bb6fdb3f7 100644 --- a/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php b/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php index ef3c0dcfa..42799c472 100644 --- a/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php b/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php index 9b1f92d27..550f80be6 100644 --- a/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Parser/EvaluatorTest.php b/tests/Math/Parser/EvaluatorTest.php index 3b1f93800..315751773 100644 --- a/tests/Math/Parser/EvaluatorTest.php +++ b/tests/Math/Parser/EvaluatorTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/AverageTest.php b/tests/Math/Statistic/AverageTest.php index 079a60fb7..55fcf599c 100644 --- a/tests/Math/Statistic/AverageTest.php +++ b/tests/Math/Statistic/AverageTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/BasicTest.php b/tests/Math/Statistic/BasicTest.php index 09aebe66f..cd49c3cd2 100644 --- a/tests/Math/Statistic/BasicTest.php +++ b/tests/Math/Statistic/BasicTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/CorrelationTest.php b/tests/Math/Statistic/CorrelationTest.php index 54b100544..19936deb2 100644 --- a/tests/Math/Statistic/CorrelationTest.php +++ b/tests/Math/Statistic/CorrelationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/Forecast/ErrorTest.php b/tests/Math/Statistic/Forecast/ErrorTest.php index fd5741b9c..0493c6335 100644 --- a/tests/Math/Statistic/Forecast/ErrorTest.php +++ b/tests/Math/Statistic/Forecast/ErrorTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php index 5956323ca..c46937952 100644 --- a/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php +++ b/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php index 398492cdc..689a3a9a6 100644 --- a/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php +++ b/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php index c8f1c9075..a851df04a 100644 --- a/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php +++ b/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php index db36f2a48..5b94e1177 100644 --- a/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php +++ b/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Statistic/MeasureOfDispersionTest.php b/tests/Math/Statistic/MeasureOfDispersionTest.php index 5022e8a64..a5a5abb39 100644 --- a/tests/Math/Statistic/MeasureOfDispersionTest.php +++ b/tests/Math/Statistic/MeasureOfDispersionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php b/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php index 8f97c26c3..d8d8f4e0b 100644 --- a/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/BetaDistributionTest.php b/tests/Math/Stochastic/Distribution/BetaDistributionTest.php index c6ec41429..d6d231d2d 100644 --- a/tests/Math/Stochastic/Distribution/BetaDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BetaDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php b/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php index 07a5abea7..19cb36ce1 100644 --- a/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php b/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php index ca98f539b..b5e49a469 100644 --- a/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php b/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php index 130929cc2..7503abe43 100644 --- a/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php b/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php index 048b3adff..af8cb27cd 100644 --- a/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/FDistributionTest.php b/tests/Math/Stochastic/Distribution/FDistributionTest.php index 776388f5a..75b5b2386 100644 --- a/tests/Math/Stochastic/Distribution/FDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/FDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/GammaDistributionTest.php b/tests/Math/Stochastic/Distribution/GammaDistributionTest.php index a676ef1de..73e568fcf 100644 --- a/tests/Math/Stochastic/Distribution/GammaDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/GammaDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php b/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php index 97b909446..c9a5a7b68 100644 --- a/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php b/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php index b9bf0e342..41fda1825 100644 --- a/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php b/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php index 1a2247f57..1da1de674 100644 --- a/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/LogDistributionTest.php b/tests/Math/Stochastic/Distribution/LogDistributionTest.php index c044f67dd..2849346b7 100644 --- a/tests/Math/Stochastic/Distribution/LogDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php b/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php index 14f5b95dd..fc534764c 100644 --- a/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php b/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php index 9cb5defcc..8d62d57bb 100644 --- a/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/NormalDistributionTest.php b/tests/Math/Stochastic/Distribution/NormalDistributionTest.php index 48116b47c..d86fc1163 100644 --- a/tests/Math/Stochastic/Distribution/NormalDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/NormalDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php b/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php index ef1739951..01304ff92 100644 --- a/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php b/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php index 048da2fa8..4539938cb 100644 --- a/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/TDistributionTest.php b/tests/Math/Stochastic/Distribution/TDistributionTest.php index f03ea0dde..74bb29ad7 100644 --- a/tests/Math/Stochastic/Distribution/TDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/TDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php b/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php index 7e0fbe60d..f7cbd9fcd 100644 --- a/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php +++ b/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php b/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php index 9ff8bb49c..a541ba4d6 100644 --- a/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php +++ b/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php b/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php index 44241ff77..bae002636 100644 --- a/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/Distribution/ZTestTest.php b/tests/Math/Stochastic/Distribution/ZTestTest.php index c47e1d308..d7508cd91 100644 --- a/tests/Math/Stochastic/Distribution/ZTestTest.php +++ b/tests/Math/Stochastic/Distribution/ZTestTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Math/Stochastic/NaiveBayesFilterTest.php b/tests/Math/Stochastic/NaiveBayesFilterTest.php index c0370df53..d847fc6af 100644 --- a/tests/Math/Stochastic/NaiveBayesFilterTest.php +++ b/tests/Math/Stochastic/NaiveBayesFilterTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Console/HeaderTest.php b/tests/Message/Console/HeaderTest.php index 1c89f1d7d..bcfbd5af7 100644 --- a/tests/Message/Console/HeaderTest.php +++ b/tests/Message/Console/HeaderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Console/RequestTest.php b/tests/Message/Console/RequestTest.php index a1d59312f..b531eb3f3 100644 --- a/tests/Message/Console/RequestTest.php +++ b/tests/Message/Console/RequestTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Console/ResponseTest.php b/tests/Message/Console/ResponseTest.php index 620817b3e..efd43de57 100644 --- a/tests/Message/Console/ResponseTest.php +++ b/tests/Message/Console/ResponseTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/HeaderAbstractTest.php b/tests/Message/HeaderAbstractTest.php index 012bf324f..448368915 100644 --- a/tests/Message/HeaderAbstractTest.php +++ b/tests/Message/HeaderAbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/BrowserTypeTest.php b/tests/Message/Http/BrowserTypeTest.php index f3899dff8..e75c07096 100644 --- a/tests/Message/Http/BrowserTypeTest.php +++ b/tests/Message/Http/BrowserTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/HeaderTest.php b/tests/Message/Http/HeaderTest.php index cce7333f9..961204324 100644 --- a/tests/Message/Http/HeaderTest.php +++ b/tests/Message/Http/HeaderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/OSTypeTest.php b/tests/Message/Http/OSTypeTest.php index f074763f0..7f39c6f53 100644 --- a/tests/Message/Http/OSTypeTest.php +++ b/tests/Message/Http/OSTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/RequestMethodTest.php b/tests/Message/Http/RequestMethodTest.php index 8e4bd5a70..2a5cf449c 100644 --- a/tests/Message/Http/RequestMethodTest.php +++ b/tests/Message/Http/RequestMethodTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/RequestStatusCodeTest.php b/tests/Message/Http/RequestStatusCodeTest.php index 10d8d048f..4548c0964 100644 --- a/tests/Message/Http/RequestStatusCodeTest.php +++ b/tests/Message/Http/RequestStatusCodeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/RequestStatusTest.php b/tests/Message/Http/RequestStatusTest.php index c403225c5..c0681efdb 100644 --- a/tests/Message/Http/RequestStatusTest.php +++ b/tests/Message/Http/RequestStatusTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/RequestTest.php b/tests/Message/Http/RequestTest.php index a6efa44fb..5ceeb8dfc 100644 --- a/tests/Message/Http/RequestTest.php +++ b/tests/Message/Http/RequestTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/ResponseTest.php b/tests/Message/Http/ResponseTest.php index d2c4726f0..b25353893 100644 --- a/tests/Message/Http/ResponseTest.php +++ b/tests/Message/Http/ResponseTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Http/RestTest.php b/tests/Message/Http/RestTest.php index 75b1c76d2..5c20958ea 100644 --- a/tests/Message/Http/RestTest.php +++ b/tests/Message/Http/RestTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Mail/ImapTest.php b/tests/Message/Mail/ImapTest.php index 7d05b30a8..c19c70867 100644 --- a/tests/Message/Mail/ImapTest.php +++ b/tests/Message/Mail/ImapTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Mail/MailTest.php b/tests/Message/Mail/MailTest.php index 20be469ae..699475e4c 100644 --- a/tests/Message/Mail/MailTest.php +++ b/tests/Message/Mail/MailTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Mail/NntpTest.php b/tests/Message/Mail/NntpTest.php index 594be56c0..54a32bdf3 100644 --- a/tests/Message/Mail/NntpTest.php +++ b/tests/Message/Mail/NntpTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Mail/Pop3Test.php b/tests/Message/Mail/Pop3Test.php index 41202a3f9..7303a3d26 100644 --- a/tests/Message/Mail/Pop3Test.php +++ b/tests/Message/Mail/Pop3Test.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/RequestSourceTest.php b/tests/Message/RequestSourceTest.php index a1d3f2f13..304fd8dfb 100644 --- a/tests/Message/RequestSourceTest.php +++ b/tests/Message/RequestSourceTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/ResponseAbstractTest.php b/tests/Message/ResponseAbstractTest.php index 0ee24cd26..e0b1a0d2b 100644 --- a/tests/Message/ResponseAbstractTest.php +++ b/tests/Message/ResponseAbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/ResponseTypeTest.php b/tests/Message/ResponseTypeTest.php index 8c0351248..31377ed32 100644 --- a/tests/Message/ResponseTypeTest.php +++ b/tests/Message/ResponseTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Socket/RequestTest.php b/tests/Message/Socket/RequestTest.php index c295f95a9..5b88b5d27 100644 --- a/tests/Message/Socket/RequestTest.php +++ b/tests/Message/Socket/RequestTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Message/Socket/ResponseTest.php b/tests/Message/Socket/ResponseTest.php index 8995496d4..9f3a58c05 100644 --- a/tests/Message/Socket/ResponseTest.php +++ b/tests/Message/Socket/ResponseTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Model/Html/HeadTest.php b/tests/Model/Html/HeadTest.php index a78a6c1ff..03429ab11 100644 --- a/tests/Model/Html/HeadTest.php +++ b/tests/Model/Html/HeadTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Model/Html/MetaTest.php b/tests/Model/Html/MetaTest.php index 841344917..fc21c37f2 100644 --- a/tests/Model/Html/MetaTest.php +++ b/tests/Model/Html/MetaTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Model/Message/DomActionTest.php b/tests/Model/Message/DomActionTest.php index 50807a59f..383690238 100644 --- a/tests/Model/Message/DomActionTest.php +++ b/tests/Model/Message/DomActionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Model/Message/DomTest.php b/tests/Model/Message/DomTest.php index 9c5da3589..0b1417d34 100644 --- a/tests/Model/Message/DomTest.php +++ b/tests/Model/Message/DomTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright 2013 Dennis Eichhorn diff --git a/tests/Model/Message/FormValidationTest.php b/tests/Model/Message/FormValidationTest.php index bcc00ff86..e267b1490 100644 --- a/tests/Model/Message/FormValidationTest.php +++ b/tests/Model/Message/FormValidationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright 2013 Dennis Eichhorn diff --git a/tests/Model/Message/NotifyTest.php b/tests/Model/Message/NotifyTest.php index cb844345b..95d9321a8 100644 --- a/tests/Model/Message/NotifyTest.php +++ b/tests/Model/Message/NotifyTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright 2013 Dennis Eichhorn diff --git a/tests/Model/Message/NotifyTypeTest.php b/tests/Model/Message/NotifyTypeTest.php index 0be3ddb42..67c244814 100644 --- a/tests/Model/Message/NotifyTypeTest.php +++ b/tests/Model/Message/NotifyTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Model/Message/RedirectTest.php b/tests/Model/Message/RedirectTest.php index 4db043a0d..e94b053d3 100644 --- a/tests/Model/Message/RedirectTest.php +++ b/tests/Model/Message/RedirectTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright 2013 Dennis Eichhorn diff --git a/tests/Model/Message/ReloadTest.php b/tests/Model/Message/ReloadTest.php index cd41657f4..a1746f980 100644 --- a/tests/Model/Message/ReloadTest.php +++ b/tests/Model/Message/ReloadTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright 2013 Dennis Eichhorn diff --git a/tests/Module/Exception/InvalidModuleExceptionTest.php b/tests/Module/Exception/InvalidModuleExceptionTest.php index 84bbb55ed..659bff861 100644 --- a/tests/Module/Exception/InvalidModuleExceptionTest.php +++ b/tests/Module/Exception/InvalidModuleExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Module/Exception/InvalidThemeExceptionTest.php b/tests/Module/Exception/InvalidThemeExceptionTest.php index 1f17c84ad..6c4eaaf74 100644 --- a/tests/Module/Exception/InvalidThemeExceptionTest.php +++ b/tests/Module/Exception/InvalidThemeExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Module/InfoManagerTest.php b/tests/Module/InfoManagerTest.php index 779fedb3e..4c24e2d72 100644 --- a/tests/Module/InfoManagerTest.php +++ b/tests/Module/InfoManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Module/ModuleAbstractTest.php b/tests/Module/ModuleAbstractTest.php index a16a8f334..68ddc622c 100644 --- a/tests/Module/ModuleAbstractTest.php +++ b/tests/Module/ModuleAbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Module/ModuleManagerTest.php b/tests/Module/ModuleManagerTest.php index fcedc1b41..728de6898 100644 --- a/tests/Module/ModuleManagerTest.php +++ b/tests/Module/ModuleManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Module/NullModuleTest.php b/tests/Module/NullModuleTest.php index 4248c8191..bf7240237 100644 --- a/tests/Module/NullModuleTest.php +++ b/tests/Module/NullModuleTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Module/PackageManagerTest.php b/tests/Module/PackageManagerTest.php index 276f1869f..1922f9103 100644 --- a/tests/Module/PackageManagerTest.php +++ b/tests/Module/PackageManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Router/RouteVerbTest.php b/tests/Router/RouteVerbTest.php index 4b5fbbf93..f0f07ac15 100644 --- a/tests/Router/RouteVerbTest.php +++ b/tests/Router/RouteVerbTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Router/RouterTest.php b/tests/Router/RouterTest.php index 547ce9335..b9b2049c1 100644 --- a/tests/Router/RouterTest.php +++ b/tests/Router/RouterTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Security/PhpCodeTest.php b/tests/Security/PhpCodeTest.php index 7bd2b210c..dc81f75e7 100644 --- a/tests/Security/PhpCodeTest.php +++ b/tests/Security/PhpCodeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/Client/ClientConnectionTest.php b/tests/Socket/Client/ClientConnectionTest.php index 23a38b685..00ff395ca 100644 --- a/tests/Socket/Client/ClientConnectionTest.php +++ b/tests/Socket/Client/ClientConnectionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/Client/ClientTest.php b/tests/Socket/Client/ClientTest.php index af4e53d7c..52bf61bed 100644 --- a/tests/Socket/Client/ClientTest.php +++ b/tests/Socket/Client/ClientTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/Client/NullClientConnectionTest.php b/tests/Socket/Client/NullClientConnectionTest.php index 971eef09c..763d00fb2 100644 --- a/tests/Socket/Client/NullClientConnectionTest.php +++ b/tests/Socket/Client/NullClientConnectionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/CommandManagerTest.php b/tests/Socket/CommandManagerTest.php index 03807ec50..ef1207c99 100644 --- a/tests/Socket/CommandManagerTest.php +++ b/tests/Socket/CommandManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/Packets/HeaderTest.php b/tests/Socket/Packets/HeaderTest.php index 58d7f2bca..7a207eb10 100644 --- a/tests/Socket/Packets/HeaderTest.php +++ b/tests/Socket/Packets/HeaderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/Packets/PacketManagerTest.php b/tests/Socket/Packets/PacketManagerTest.php index a87255f71..debaabc84 100644 --- a/tests/Socket/Packets/PacketManagerTest.php +++ b/tests/Socket/Packets/PacketManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/Packets/PacketTypeTest.php b/tests/Socket/Packets/PacketTypeTest.php index 554c79fe5..985432226 100644 --- a/tests/Socket/Packets/PacketTypeTest.php +++ b/tests/Socket/Packets/PacketTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/Server/ClientManagerTest.php b/tests/Socket/Server/ClientManagerTest.php index b92c0ef19..6e6253f2e 100644 --- a/tests/Socket/Server/ClientManagerTest.php +++ b/tests/Socket/Server/ClientManagerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/Server/ServerTest.php b/tests/Socket/Server/ServerTest.php index 10c55aa2c..7b70a39be 100644 --- a/tests/Socket/Server/ServerTest.php +++ b/tests/Socket/Server/ServerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Socket/SocketTypeTest.php b/tests/Socket/SocketTypeTest.php index 7697a74a8..2131fae87 100644 --- a/tests/Socket/SocketTypeTest.php +++ b/tests/Socket/SocketTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/AddressTest.php b/tests/Stdlib/Base/AddressTest.php index 8d706a110..4ddfa7d2d 100644 --- a/tests/Stdlib/Base/AddressTest.php +++ b/tests/Stdlib/Base/AddressTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/AddressTypeTest.php b/tests/Stdlib/Base/AddressTypeTest.php index 3a60065a1..4a67c9429 100644 --- a/tests/Stdlib/Base/AddressTypeTest.php +++ b/tests/Stdlib/Base/AddressTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/EnumArrayDemo.php b/tests/Stdlib/Base/EnumArrayDemo.php index 4f644f14c..f39e344b5 100644 --- a/tests/Stdlib/Base/EnumArrayDemo.php +++ b/tests/Stdlib/Base/EnumArrayDemo.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/EnumArrayTest.php b/tests/Stdlib/Base/EnumArrayTest.php index abf9e6d1f..419f2724f 100644 --- a/tests/Stdlib/Base/EnumArrayTest.php +++ b/tests/Stdlib/Base/EnumArrayTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/EnumDemo.php b/tests/Stdlib/Base/EnumDemo.php index d6bd34a10..0ed36aabd 100644 --- a/tests/Stdlib/Base/EnumDemo.php +++ b/tests/Stdlib/Base/EnumDemo.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/EnumTest.php b/tests/Stdlib/Base/EnumTest.php index c6573fe11..876236bf0 100644 --- a/tests/Stdlib/Base/EnumTest.php +++ b/tests/Stdlib/Base/EnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php b/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php index 3b4a95f78..c82e84908 100644 --- a/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php +++ b/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php b/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php index 1a45465e4..d514a3f35 100644 --- a/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php +++ b/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/IbanTest.php b/tests/Stdlib/Base/IbanTest.php index 4db245f56..e098759e2 100644 --- a/tests/Stdlib/Base/IbanTest.php +++ b/tests/Stdlib/Base/IbanTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/LocationTest.php b/tests/Stdlib/Base/LocationTest.php index 784f41e6f..afa8aead8 100644 --- a/tests/Stdlib/Base/LocationTest.php +++ b/tests/Stdlib/Base/LocationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/NullLocationTest.php b/tests/Stdlib/Base/NullLocationTest.php index ce08f2d06..6c41fb172 100644 --- a/tests/Stdlib/Base/NullLocationTest.php +++ b/tests/Stdlib/Base/NullLocationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/PhoneTypeTest.php b/tests/Stdlib/Base/PhoneTypeTest.php index fcc389138..41b68855c 100644 --- a/tests/Stdlib/Base/PhoneTypeTest.php +++ b/tests/Stdlib/Base/PhoneTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Base/SmartDateTimeTest.php b/tests/Stdlib/Base/SmartDateTimeTest.php index 85b898108..a0ec75580 100644 --- a/tests/Stdlib/Base/SmartDateTimeTest.php +++ b/tests/Stdlib/Base/SmartDateTimeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Graph/BinaryTreeTest.php b/tests/Stdlib/Graph/BinaryTreeTest.php index a4e89ecb1..06dc88152 100644 --- a/tests/Stdlib/Graph/BinaryTreeTest.php +++ b/tests/Stdlib/Graph/BinaryTreeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Graph/EdgeTest.php b/tests/Stdlib/Graph/EdgeTest.php index 888b2d650..a78fd3c5d 100644 --- a/tests/Stdlib/Graph/EdgeTest.php +++ b/tests/Stdlib/Graph/EdgeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Graph/GraphTest.php b/tests/Stdlib/Graph/GraphTest.php index 36a999fcd..7753a59b6 100644 --- a/tests/Stdlib/Graph/GraphTest.php +++ b/tests/Stdlib/Graph/GraphTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Graph/NodeTest.php b/tests/Stdlib/Graph/NodeTest.php index ef6df54b6..5073ee12b 100644 --- a/tests/Stdlib/Graph/NodeTest.php +++ b/tests/Stdlib/Graph/NodeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Graph/TreeTest.php b/tests/Stdlib/Graph/TreeTest.php index f92033e3f..7fc64b624 100644 --- a/tests/Stdlib/Graph/TreeTest.php +++ b/tests/Stdlib/Graph/TreeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Map/KeyTypeTest.php b/tests/Stdlib/Map/KeyTypeTest.php index bd2d33f0b..9277c0e38 100644 --- a/tests/Stdlib/Map/KeyTypeTest.php +++ b/tests/Stdlib/Map/KeyTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Map/MultiMapTest.php b/tests/Stdlib/Map/MultiMapTest.php index be6afec93..93159b327 100644 --- a/tests/Stdlib/Map/MultiMapTest.php +++ b/tests/Stdlib/Map/MultiMapTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Map/OrderTypeTest.php b/tests/Stdlib/Map/OrderTypeTest.php index 790ed2a46..86c2728b5 100644 --- a/tests/Stdlib/Map/OrderTypeTest.php +++ b/tests/Stdlib/Map/OrderTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Queue/PriorityModeTest.php b/tests/Stdlib/Queue/PriorityModeTest.php index 3ece93d4f..0a809e1cb 100644 --- a/tests/Stdlib/Queue/PriorityModeTest.php +++ b/tests/Stdlib/Queue/PriorityModeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Stdlib/Queue/PriorityQueueTest.php b/tests/Stdlib/Queue/PriorityQueueTest.php index 7d862487d..91ec28af7 100644 --- a/tests/Stdlib/Queue/PriorityQueueTest.php +++ b/tests/Stdlib/Queue/PriorityQueueTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/ContentPutModeTest.php b/tests/System/File/ContentPutModeTest.php index cd064a956..94715f603 100644 --- a/tests/System/File/ContentPutModeTest.php +++ b/tests/System/File/ContentPutModeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/ExtensionTypeTest.php b/tests/System/File/ExtensionTypeTest.php index 5d535d622..aca3b7436 100644 --- a/tests/System/File/ExtensionTypeTest.php +++ b/tests/System/File/ExtensionTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/FileUtilsTest.php b/tests/System/File/FileUtilsTest.php index 98a73e669..6d64a0082 100644 --- a/tests/System/File/FileUtilsTest.php +++ b/tests/System/File/FileUtilsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/Ftp/DirectoryTest.php b/tests/System/File/Ftp/DirectoryTest.php index ba6d29036..f4a68fa50 100644 --- a/tests/System/File/Ftp/DirectoryTest.php +++ b/tests/System/File/Ftp/DirectoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/Ftp/FileTest.php b/tests/System/File/Ftp/FileTest.php index 62e616282..5e8a0b946 100644 --- a/tests/System/File/Ftp/FileTest.php +++ b/tests/System/File/Ftp/FileTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/Local/DirectoryTest.php b/tests/System/File/Local/DirectoryTest.php index fe2eb80cb..c9f0ecba8 100644 --- a/tests/System/File/Local/DirectoryTest.php +++ b/tests/System/File/Local/DirectoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/Local/FileTest.php b/tests/System/File/Local/FileTest.php index 0065c9cdb..3c835d72d 100644 --- a/tests/System/File/Local/FileTest.php +++ b/tests/System/File/Local/FileTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/Local/LocalStorageTest.php b/tests/System/File/Local/LocalStorageTest.php index a5a50ea8e..336294ffe 100644 --- a/tests/System/File/Local/LocalStorageTest.php +++ b/tests/System/File/Local/LocalStorageTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/PathExceptionTest.php b/tests/System/File/PathExceptionTest.php index da961cb2b..9d82e5a31 100644 --- a/tests/System/File/PathExceptionTest.php +++ b/tests/System/File/PathExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/PermissionExceptionTest.php b/tests/System/File/PermissionExceptionTest.php index d520194e4..086dbc6e1 100644 --- a/tests/System/File/PermissionExceptionTest.php +++ b/tests/System/File/PermissionExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/File/StorageTest.php b/tests/System/File/StorageTest.php index 52494cd4d..713e0e47d 100644 --- a/tests/System/File/StorageTest.php +++ b/tests/System/File/StorageTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/MimeTypeTest.php b/tests/System/MimeTypeTest.php index 7fa0c35f8..a248f4a4f 100644 --- a/tests/System/MimeTypeTest.php +++ b/tests/System/MimeTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/OperatingSystemTest.php b/tests/System/OperatingSystemTest.php index 74ae0aeca..bd8f04593 100644 --- a/tests/System/OperatingSystemTest.php +++ b/tests/System/OperatingSystemTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/SystemTypeTest.php b/tests/System/SystemTypeTest.php index 9b74bf25e..2f6cb1f5e 100644 --- a/tests/System/SystemTypeTest.php +++ b/tests/System/SystemTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/System/SystemUtilsTest.php b/tests/System/SystemUtilsTest.php index a868ff10f..c4c67828f 100644 --- a/tests/System/SystemUtilsTest.php +++ b/tests/System/SystemUtilsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/UnhandledHandlerTest.php b/tests/UnhandledHandlerTest.php index 740658421..6c1973ec9 100644 --- a/tests/UnhandledHandlerTest.php +++ b/tests/UnhandledHandlerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Uri/ArgumentTest.php b/tests/Uri/ArgumentTest.php index 1a46976a8..600987312 100644 --- a/tests/Uri/ArgumentTest.php +++ b/tests/Uri/ArgumentTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Uri/HttpTest.php b/tests/Uri/HttpTest.php index 41ba750ba..a6aef08a3 100644 --- a/tests/Uri/HttpTest.php +++ b/tests/Uri/HttpTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Uri/InvalidUriExceptionTest.php b/tests/Uri/InvalidUriExceptionTest.php index dab020b39..da6799b22 100644 --- a/tests/Uri/InvalidUriExceptionTest.php +++ b/tests/Uri/InvalidUriExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Uri/UriFactoryTest.php b/tests/Uri/UriFactoryTest.php index 0845afe9f..a99f26fad 100644 --- a/tests/Uri/UriFactoryTest.php +++ b/tests/Uri/UriFactoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Uri/UriSchemeTest.php b/tests/Uri/UriSchemeTest.php index f4399eba5..d834ad759 100644 --- a/tests/Uri/UriSchemeTest.php +++ b/tests/Uri/UriSchemeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/ArrayUtilsTest.php b/tests/Utils/ArrayUtilsTest.php index 6fdbe9c1e..9bde02c02 100644 --- a/tests/Utils/ArrayUtilsTest.php +++ b/tests/Utils/ArrayUtilsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/AztecTest.php b/tests/Utils/Barcode/AztecTest.php index aee0980fc..2e1955fef 100644 --- a/tests/Utils/Barcode/AztecTest.php +++ b/tests/Utils/Barcode/AztecTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/C128AbstractTest.php b/tests/Utils/Barcode/C128AbstractTest.php index c40f6de66..dd2b89200 100644 --- a/tests/Utils/Barcode/C128AbstractTest.php +++ b/tests/Utils/Barcode/C128AbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/C128aTest.php b/tests/Utils/Barcode/C128aTest.php index 5f2e50add..d92c21072 100644 --- a/tests/Utils/Barcode/C128aTest.php +++ b/tests/Utils/Barcode/C128aTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/C128bTest.php b/tests/Utils/Barcode/C128bTest.php index b6529a92e..53888cbc5 100644 --- a/tests/Utils/Barcode/C128bTest.php +++ b/tests/Utils/Barcode/C128bTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/C128cTest.php b/tests/Utils/Barcode/C128cTest.php index 83325879f..5f3479213 100644 --- a/tests/Utils/Barcode/C128cTest.php +++ b/tests/Utils/Barcode/C128cTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/C25Test.php b/tests/Utils/Barcode/C25Test.php index d1df8be7b..1e546ea22 100644 --- a/tests/Utils/Barcode/C25Test.php +++ b/tests/Utils/Barcode/C25Test.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/C39Test.php b/tests/Utils/Barcode/C39Test.php index 8388826a1..6c033e022 100644 --- a/tests/Utils/Barcode/C39Test.php +++ b/tests/Utils/Barcode/C39Test.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/CodebarTest.php b/tests/Utils/Barcode/CodebarTest.php index c026e87d9..c7c1ed104 100644 --- a/tests/Utils/Barcode/CodebarTest.php +++ b/tests/Utils/Barcode/CodebarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/DatamatrixTest.php b/tests/Utils/Barcode/DatamatrixTest.php index 7fb3a38ba..afe3fee14 100644 --- a/tests/Utils/Barcode/DatamatrixTest.php +++ b/tests/Utils/Barcode/DatamatrixTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/HIBCCTest.php b/tests/Utils/Barcode/HIBCCTest.php index ebe9ace76..98a06f401 100644 --- a/tests/Utils/Barcode/HIBCCTest.php +++ b/tests/Utils/Barcode/HIBCCTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/OrientationTypeTest.php b/tests/Utils/Barcode/OrientationTypeTest.php index b0aa5f73a..1ee5b6276 100644 --- a/tests/Utils/Barcode/OrientationTypeTest.php +++ b/tests/Utils/Barcode/OrientationTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Barcode/QRTest.php b/tests/Utils/Barcode/QRTest.php index 2a122ec86..073c9b34a 100644 --- a/tests/Utils/Barcode/QRTest.php +++ b/tests/Utils/Barcode/QRTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/ColorUtilsTest.php b/tests/Utils/ColorUtilsTest.php index f11ad4231..a62503ce2 100644 --- a/tests/Utils/ColorUtilsTest.php +++ b/tests/Utils/ColorUtilsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Compression/LZWTest.php b/tests/Utils/Compression/LZWTest.php index b738de386..29f19a027 100644 --- a/tests/Utils/Compression/LZWTest.php +++ b/tests/Utils/Compression/LZWTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/AngleTypeTest.php b/tests/Utils/Converter/AngleTypeTest.php index ab717858a..5d1747135 100644 --- a/tests/Utils/Converter/AngleTypeTest.php +++ b/tests/Utils/Converter/AngleTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/AreaTypeTest.php b/tests/Utils/Converter/AreaTypeTest.php index 3061802e6..fad1d898a 100644 --- a/tests/Utils/Converter/AreaTypeTest.php +++ b/tests/Utils/Converter/AreaTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/CurrencyTest.php b/tests/Utils/Converter/CurrencyTest.php index f79500af8..7b9f33c9d 100644 --- a/tests/Utils/Converter/CurrencyTest.php +++ b/tests/Utils/Converter/CurrencyTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/EnergyPowerTypeTest.php b/tests/Utils/Converter/EnergyPowerTypeTest.php index ee07c08cf..ac88f9eba 100644 --- a/tests/Utils/Converter/EnergyPowerTypeTest.php +++ b/tests/Utils/Converter/EnergyPowerTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/FileSizeTypeTest.php b/tests/Utils/Converter/FileSizeTypeTest.php index 931a22976..fafb4d151 100644 --- a/tests/Utils/Converter/FileSizeTypeTest.php +++ b/tests/Utils/Converter/FileSizeTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/FileTest.php b/tests/Utils/Converter/FileTest.php index bc3c20472..9a23dd8d1 100644 --- a/tests/Utils/Converter/FileTest.php +++ b/tests/Utils/Converter/FileTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/IpTest.php b/tests/Utils/Converter/IpTest.php index e5d8b3590..e614dc9ae 100644 --- a/tests/Utils/Converter/IpTest.php +++ b/tests/Utils/Converter/IpTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/LengthTypeTest.php b/tests/Utils/Converter/LengthTypeTest.php index ecc322756..2de78b742 100644 --- a/tests/Utils/Converter/LengthTypeTest.php +++ b/tests/Utils/Converter/LengthTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/MeasurementTest.php b/tests/Utils/Converter/MeasurementTest.php index 923936f62..42642fc4d 100644 --- a/tests/Utils/Converter/MeasurementTest.php +++ b/tests/Utils/Converter/MeasurementTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/NumericTest.php b/tests/Utils/Converter/NumericTest.php index a7d7de721..11aa3a54e 100644 --- a/tests/Utils/Converter/NumericTest.php +++ b/tests/Utils/Converter/NumericTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/PressureTypeTest.php b/tests/Utils/Converter/PressureTypeTest.php index 00a9f1546..dd5cb144d 100644 --- a/tests/Utils/Converter/PressureTypeTest.php +++ b/tests/Utils/Converter/PressureTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/SpeedTypeTest.php b/tests/Utils/Converter/SpeedTypeTest.php index 5163a7d51..27079ebfb 100644 --- a/tests/Utils/Converter/SpeedTypeTest.php +++ b/tests/Utils/Converter/SpeedTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/TemperatureTypeTest.php b/tests/Utils/Converter/TemperatureTypeTest.php index cf717bc75..ce035d5db 100644 --- a/tests/Utils/Converter/TemperatureTypeTest.php +++ b/tests/Utils/Converter/TemperatureTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/TimeTypeTest.php b/tests/Utils/Converter/TimeTypeTest.php index f226f6118..a81726e66 100644 --- a/tests/Utils/Converter/TimeTypeTest.php +++ b/tests/Utils/Converter/TimeTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/VolumeTypeTest.php b/tests/Utils/Converter/VolumeTypeTest.php index 2cc2d4b83..aab2b9858 100644 --- a/tests/Utils/Converter/VolumeTypeTest.php +++ b/tests/Utils/Converter/VolumeTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Converter/WeightTypeTest.php b/tests/Utils/Converter/WeightTypeTest.php index bd7600f14..827c4710c 100644 --- a/tests/Utils/Converter/WeightTypeTest.php +++ b/tests/Utils/Converter/WeightTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Encoding/CaesarTest.php b/tests/Utils/Encoding/CaesarTest.php index b9fd747bc..939cd8857 100644 --- a/tests/Utils/Encoding/CaesarTest.php +++ b/tests/Utils/Encoding/CaesarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Encoding/GrayTest.php b/tests/Utils/Encoding/GrayTest.php index 2547b2cd4..3b6cd3365 100644 --- a/tests/Utils/Encoding/GrayTest.php +++ b/tests/Utils/Encoding/GrayTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Encoding/Huffman/DictionaryTest.php b/tests/Utils/Encoding/Huffman/DictionaryTest.php index c4d194552..d5288d039 100644 --- a/tests/Utils/Encoding/Huffman/DictionaryTest.php +++ b/tests/Utils/Encoding/Huffman/DictionaryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Encoding/Huffman/HuffmanTest.php b/tests/Utils/Encoding/Huffman/HuffmanTest.php index 02fceb4b0..1f7efd3e7 100644 --- a/tests/Utils/Encoding/Huffman/HuffmanTest.php +++ b/tests/Utils/Encoding/Huffman/HuffmanTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Encoding/XorEncodingTest.php b/tests/Utils/Encoding/XorEncodingTest.php index 46dabee5a..541896f7e 100644 --- a/tests/Utils/Encoding/XorEncodingTest.php +++ b/tests/Utils/Encoding/XorEncodingTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Excel/ExcelTest.php b/tests/Utils/Excel/ExcelTest.php index 9e73be73e..451ebee9a 100644 --- a/tests/Utils/Excel/ExcelTest.php +++ b/tests/Utils/Excel/ExcelTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Git/AuthorTest.php b/tests/Utils/Git/AuthorTest.php index 6385a9bfd..c8feacc99 100644 --- a/tests/Utils/Git/AuthorTest.php +++ b/tests/Utils/Git/AuthorTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Git/BranchTest.php b/tests/Utils/Git/BranchTest.php index fcae38b2d..1de9cf33c 100644 --- a/tests/Utils/Git/BranchTest.php +++ b/tests/Utils/Git/BranchTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Git/CommitTest.php b/tests/Utils/Git/CommitTest.php index 3ede8fda1..2cc2dd5c1 100644 --- a/tests/Utils/Git/CommitTest.php +++ b/tests/Utils/Git/CommitTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Git/GitTest.php b/tests/Utils/Git/GitTest.php index 2a58318de..242eee61d 100644 --- a/tests/Utils/Git/GitTest.php +++ b/tests/Utils/Git/GitTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Git/RepositoryTest.php b/tests/Utils/Git/RepositoryTest.php index c78744927..87ab052cb 100644 --- a/tests/Utils/Git/RepositoryTest.php +++ b/tests/Utils/Git/RepositoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Git/TagTest.php b/tests/Utils/Git/TagTest.php index f27dc41a0..7d5b977ef 100644 --- a/tests/Utils/Git/TagTest.php +++ b/tests/Utils/Git/TagTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/IO/Csv/CsvSettingsTest.php b/tests/Utils/IO/Csv/CsvSettingsTest.php index 32db642f7..ca3bbe120 100644 --- a/tests/Utils/IO/Csv/CsvSettingsTest.php +++ b/tests/Utils/IO/Csv/CsvSettingsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/IO/Excel/ExcelDatabaseMapperTest.php b/tests/Utils/IO/Excel/ExcelDatabaseMapperTest.php index 0f140c7d3..55d97a2df 100644 --- a/tests/Utils/IO/Excel/ExcelDatabaseMapperTest.php +++ b/tests/Utils/IO/Excel/ExcelDatabaseMapperTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/IO/IODatabaseMapperTest.php b/tests/Utils/IO/IODatabaseMapperTest.php index 708268f53..de2b257d6 100644 --- a/tests/Utils/IO/IODatabaseMapperTest.php +++ b/tests/Utils/IO/IODatabaseMapperTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/IO/Json/InvalidJsonExceptionTest.php b/tests/Utils/IO/Json/InvalidJsonExceptionTest.php index e46acff6e..cff9b036d 100644 --- a/tests/Utils/IO/Json/InvalidJsonExceptionTest.php +++ b/tests/Utils/IO/Json/InvalidJsonExceptionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/IO/Zip/GzTest.php b/tests/Utils/IO/Zip/GzTest.php index 6f039fc49..44886cb19 100644 --- a/tests/Utils/IO/Zip/GzTest.php +++ b/tests/Utils/IO/Zip/GzTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/IO/Zip/TarGzTest.php b/tests/Utils/IO/Zip/TarGzTest.php index f4991a0f2..6e3e86581 100644 --- a/tests/Utils/IO/Zip/TarGzTest.php +++ b/tests/Utils/IO/Zip/TarGzTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/IO/Zip/TarTest.php b/tests/Utils/IO/Zip/TarTest.php index b85043480..d3157bf2c 100644 --- a/tests/Utils/IO/Zip/TarTest.php +++ b/tests/Utils/IO/Zip/TarTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/IO/Zip/ZipTest.php b/tests/Utils/IO/Zip/ZipTest.php index 4b2feaa05..e3ff90fb8 100644 --- a/tests/Utils/IO/Zip/ZipTest.php +++ b/tests/Utils/IO/Zip/ZipTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/ImageUtilsTest.php b/tests/Utils/ImageUtilsTest.php index 1356169ed..f20102708 100644 --- a/tests/Utils/ImageUtilsTest.php +++ b/tests/Utils/ImageUtilsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/JsonBuilderTest.php b/tests/Utils/JsonBuilderTest.php index 67c93897b..04d369346 100644 --- a/tests/Utils/JsonBuilderTest.php +++ b/tests/Utils/JsonBuilderTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/PDF/PdfTest.php b/tests/Utils/PDF/PdfTest.php index 1b8793a47..9277ae3e6 100644 --- a/tests/Utils/PDF/PdfTest.php +++ b/tests/Utils/PDF/PdfTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Parser/Markdown/MarkdownTest.php b/tests/Utils/Parser/Markdown/MarkdownTest.php index 703458733..da580aaf5 100644 --- a/tests/Utils/Parser/Markdown/MarkdownTest.php +++ b/tests/Utils/Parser/Markdown/MarkdownTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/Parser/Php/ArrayParserTest.php b/tests/Utils/Parser/Php/ArrayParserTest.php index c80836453..7a3899407 100644 --- a/tests/Utils/Parser/Php/ArrayParserTest.php +++ b/tests/Utils/Parser/Php/ArrayParserTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/PermutationTest.php b/tests/Utils/PermutationTest.php index 0e2942cec..937832c16 100644 --- a/tests/Utils/PermutationTest.php +++ b/tests/Utils/PermutationTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/AddressTest.php b/tests/Utils/RnG/AddressTest.php index 76069a063..d4c543556 100644 --- a/tests/Utils/RnG/AddressTest.php +++ b/tests/Utils/RnG/AddressTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/ArrayRandomizeTest.php b/tests/Utils/RnG/ArrayRandomizeTest.php index 318c24548..eefa5aa4d 100644 --- a/tests/Utils/RnG/ArrayRandomizeTest.php +++ b/tests/Utils/RnG/ArrayRandomizeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/CityTest.php b/tests/Utils/RnG/CityTest.php index f0427db03..cd962c8e5 100644 --- a/tests/Utils/RnG/CityTest.php +++ b/tests/Utils/RnG/CityTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/DateTimeTest.php b/tests/Utils/RnG/DateTimeTest.php index d60edcc7b..f7693be0a 100644 --- a/tests/Utils/RnG/DateTimeTest.php +++ b/tests/Utils/RnG/DateTimeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/DistributionTypeTest.php b/tests/Utils/RnG/DistributionTypeTest.php index 84edba9f1..4b2cd6a94 100644 --- a/tests/Utils/RnG/DistributionTypeTest.php +++ b/tests/Utils/RnG/DistributionTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/EmailTest.php b/tests/Utils/RnG/EmailTest.php index 23937511e..593433d57 100644 --- a/tests/Utils/RnG/EmailTest.php +++ b/tests/Utils/RnG/EmailTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/FileTest.php b/tests/Utils/RnG/FileTest.php index aa03c37b5..b1eb060ae 100644 --- a/tests/Utils/RnG/FileTest.php +++ b/tests/Utils/RnG/FileTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/IBANTest.php b/tests/Utils/RnG/IBANTest.php index d091db622..83182e2fc 100644 --- a/tests/Utils/RnG/IBANTest.php +++ b/tests/Utils/RnG/IBANTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/LinearCongruentialGeneratorTest.php b/tests/Utils/RnG/LinearCongruentialGeneratorTest.php index ae3087631..1808c3a38 100644 --- a/tests/Utils/RnG/LinearCongruentialGeneratorTest.php +++ b/tests/Utils/RnG/LinearCongruentialGeneratorTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/NameTest.php b/tests/Utils/RnG/NameTest.php index a6eb76deb..ba649afde 100644 --- a/tests/Utils/RnG/NameTest.php +++ b/tests/Utils/RnG/NameTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/NumericTest.php b/tests/Utils/RnG/NumericTest.php index 5c0c76e90..99c3a876d 100644 --- a/tests/Utils/RnG/NumericTest.php +++ b/tests/Utils/RnG/NumericTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/PhoneTest.php b/tests/Utils/RnG/PhoneTest.php index 7f0f5ecb9..149d4e364 100644 --- a/tests/Utils/RnG/PhoneTest.php +++ b/tests/Utils/RnG/PhoneTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/PostalZipTest.php b/tests/Utils/RnG/PostalZipTest.php index 45ca35bb3..80c52acb2 100644 --- a/tests/Utils/RnG/PostalZipTest.php +++ b/tests/Utils/RnG/PostalZipTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/StringUtilsTest.php b/tests/Utils/RnG/StringUtilsTest.php index c66491d12..eb0baf60a 100644 --- a/tests/Utils/RnG/StringUtilsTest.php +++ b/tests/Utils/RnG/StringUtilsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/RnG/TextTest.php b/tests/Utils/RnG/TextTest.php index 54df5534c..a41bc3513 100644 --- a/tests/Utils/RnG/TextTest.php +++ b/tests/Utils/RnG/TextTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/StringCompareTest.php b/tests/Utils/StringCompareTest.php index 20931a6b5..57caf8863 100644 --- a/tests/Utils/StringCompareTest.php +++ b/tests/Utils/StringCompareTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/StringUtilsTest.php b/tests/Utils/StringUtilsTest.php index c4d766b70..44239b995 100644 --- a/tests/Utils/StringUtilsTest.php +++ b/tests/Utils/StringUtilsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/CronJobTest.php b/tests/Utils/TaskSchedule/CronJobTest.php index b5ff7a78c..943912887 100644 --- a/tests/Utils/TaskSchedule/CronJobTest.php +++ b/tests/Utils/TaskSchedule/CronJobTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/CronTest.php b/tests/Utils/TaskSchedule/CronTest.php index 682fc91fe..7372d22ef 100644 --- a/tests/Utils/TaskSchedule/CronTest.php +++ b/tests/Utils/TaskSchedule/CronTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/IntervalTest.php b/tests/Utils/TaskSchedule/IntervalTest.php index 7f38d844c..4d6c99b10 100644 --- a/tests/Utils/TaskSchedule/IntervalTest.php +++ b/tests/Utils/TaskSchedule/IntervalTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/ScheduleTest.php b/tests/Utils/TaskSchedule/ScheduleTest.php index f97dbbc45..72c64ed53 100644 --- a/tests/Utils/TaskSchedule/ScheduleTest.php +++ b/tests/Utils/TaskSchedule/ScheduleTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/SchedulerAbstractTest.php b/tests/Utils/TaskSchedule/SchedulerAbstractTest.php index 852ec4005..e33d56bf3 100644 --- a/tests/Utils/TaskSchedule/SchedulerAbstractTest.php +++ b/tests/Utils/TaskSchedule/SchedulerAbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/SchedulerFactoryTest.php b/tests/Utils/TaskSchedule/SchedulerFactoryTest.php index 0f251803d..300dd4f19 100644 --- a/tests/Utils/TaskSchedule/SchedulerFactoryTest.php +++ b/tests/Utils/TaskSchedule/SchedulerFactoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/TaskAbstractTest.php b/tests/Utils/TaskSchedule/TaskAbstractTest.php index bcc12ece9..5dbfe2e67 100644 --- a/tests/Utils/TaskSchedule/TaskAbstractTest.php +++ b/tests/Utils/TaskSchedule/TaskAbstractTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/TaskFactoryTest.php b/tests/Utils/TaskSchedule/TaskFactoryTest.php index 4414e2156..74fc2117b 100644 --- a/tests/Utils/TaskSchedule/TaskFactoryTest.php +++ b/tests/Utils/TaskSchedule/TaskFactoryTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TaskSchedule/TaskSchedulerTest.php b/tests/Utils/TaskSchedule/TaskSchedulerTest.php index 604185bed..e6c9d40a1 100644 --- a/tests/Utils/TaskSchedule/TaskSchedulerTest.php +++ b/tests/Utils/TaskSchedule/TaskSchedulerTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TestUtilsClass.php b/tests/Utils/TestUtilsClass.php index a7975d39b..d1ba8e7fd 100644 --- a/tests/Utils/TestUtilsClass.php +++ b/tests/Utils/TestUtilsClass.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Utils/TestUtilsTest.php b/tests/Utils/TestUtilsTest.php index fec34a73e..f344ea9b2 100644 --- a/tests/Utils/TestUtilsTest.php +++ b/tests/Utils/TestUtilsTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Base/DateTimeTest.php b/tests/Validation/Base/DateTimeTest.php index 751f1d29d..728f4096f 100644 --- a/tests/Validation/Base/DateTimeTest.php +++ b/tests/Validation/Base/DateTimeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Base/JsonTest.php b/tests/Validation/Base/JsonTest.php index 0ec8a5fe7..6a6954f99 100644 --- a/tests/Validation/Base/JsonTest.php +++ b/tests/Validation/Base/JsonTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Finance/BICTest.php b/tests/Validation/Finance/BICTest.php index 41d10158a..f0b376a27 100644 --- a/tests/Validation/Finance/BICTest.php +++ b/tests/Validation/Finance/BICTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Finance/CreditCardTest.php b/tests/Validation/Finance/CreditCardTest.php index 72ccfb6cd..839d83099 100644 --- a/tests/Validation/Finance/CreditCardTest.php +++ b/tests/Validation/Finance/CreditCardTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Finance/IbanEnumTest.php b/tests/Validation/Finance/IbanEnumTest.php index 446d2c0e3..2c5a9c721 100644 --- a/tests/Validation/Finance/IbanEnumTest.php +++ b/tests/Validation/Finance/IbanEnumTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Finance/IbanErrorTypeTest.php b/tests/Validation/Finance/IbanErrorTypeTest.php index 3ef73f536..b8d7d767e 100644 --- a/tests/Validation/Finance/IbanErrorTypeTest.php +++ b/tests/Validation/Finance/IbanErrorTypeTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Finance/IbanTest.php b/tests/Validation/Finance/IbanTest.php index 94f6354c7..d6f00554f 100644 --- a/tests/Validation/Finance/IbanTest.php +++ b/tests/Validation/Finance/IbanTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Network/EmailTest.php b/tests/Validation/Network/EmailTest.php index eead3fe03..4a1f2416c 100644 --- a/tests/Validation/Network/EmailTest.php +++ b/tests/Validation/Network/EmailTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Network/HostnameTest.php b/tests/Validation/Network/HostnameTest.php index 26ccb5e52..65b5633b3 100644 --- a/tests/Validation/Network/HostnameTest.php +++ b/tests/Validation/Network/HostnameTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/Network/IpTest.php b/tests/Validation/Network/IpTest.php index 266fb556a..1ad9a2687 100644 --- a/tests/Validation/Network/IpTest.php +++ b/tests/Validation/Network/IpTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Validation/ValidatorTest.php b/tests/Validation/ValidatorTest.php index f22352c57..681ad3985 100644 --- a/tests/Validation/ValidatorTest.php +++ b/tests/Validation/ValidatorTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Version/VersionTest.php b/tests/Version/VersionTest.php index 60d1745a9..bfabb2c91 100644 --- a/tests/Version/VersionTest.php +++ b/tests/Version/VersionTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Views/PaginationViewTest.php b/tests/Views/PaginationViewTest.php index 3406b1722..2f670f886 100644 --- a/tests/Views/PaginationViewTest.php +++ b/tests/Views/PaginationViewTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn diff --git a/tests/Views/ViewTest.php b/tests/Views/ViewTest.php index 71f161940..a5693e854 100644 --- a/tests/Views/ViewTest.php +++ b/tests/Views/ViewTest.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.2 + * PHP Version 7.4 * * @package tests * @copyright Dennis Eichhorn