diff --git a/Account/Account.php b/Account/Account.php index a011fd0c0..ab476b2a4 100644 --- a/Account/Account.php +++ b/Account/Account.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Account; use phpOMS\Contract\ArrayableInterface; diff --git a/Account/AccountManager.php b/Account/AccountManager.php index d6306c992..cd0c7d81d 100644 --- a/Account/AccountManager.php +++ b/Account/AccountManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Account; use phpOMS\Auth\Auth; diff --git a/Account/AccountMapper.php b/Account/AccountMapper.php index cc5ac10eb..6153a710b 100644 --- a/Account/AccountMapper.php +++ b/Account/AccountMapper.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Account; use phpOMS\DataStorage\Database\DataMapperAbstract; diff --git a/Account/AccountStatus.php b/Account/AccountStatus.php index 5765addd4..cc6f7fe5b 100644 --- a/Account/AccountStatus.php +++ b/Account/AccountStatus.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Account; use phpOMS\Datatypes\Enum; diff --git a/Account/AccountType.php b/Account/AccountType.php index 8cc842722..bcf2aa6c2 100644 --- a/Account/AccountType.php +++ b/Account/AccountType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Account; use phpOMS\Datatypes\Enum; diff --git a/Account/Group.php b/Account/Group.php index fc90da784..d5b9f07c1 100644 --- a/Account/Group.php +++ b/Account/Group.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Account; use phpOMS\Contract\ArrayableInterface; diff --git a/Account/GroupStatus.php b/Account/GroupStatus.php index 14e716e96..43656db4d 100644 --- a/Account/GroupStatus.php +++ b/Account/GroupStatus.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Account; use phpOMS\Datatypes\Enum; diff --git a/Account/NullAccount.php b/Account/NullAccount.php index 048199557..8ea0f6552 100644 --- a/Account/NullAccount.php +++ b/Account/NullAccount.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Account; /** diff --git a/Algorithm/AlgorithmType.php b/Algorithm/AlgorithmType.php index 34c595072..21db3e5ae 100644 --- a/Algorithm/AlgorithmType.php +++ b/Algorithm/AlgorithmType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Algorithm; use phpOMS\Datatypes\Enum; diff --git a/Algorithm/Knappsack/Backpack.php b/Algorithm/Knappsack/Backpack.php index a1dbdefcf..76d69fc27 100644 --- a/Algorithm/Knappsack/Backpack.php +++ b/Algorithm/Knappsack/Backpack.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Algorithm\Knappsack; use phpOMS\Algorithm\AlgorithmType; diff --git a/Algorithm/Knappsack/ItemInterface.php b/Algorithm/Knappsack/ItemInterface.php index 462abc989..3f4ebc880 100644 --- a/Algorithm/Knappsack/ItemInterface.php +++ b/Algorithm/Knappsack/ItemInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Algorithm\Knappsack; /** diff --git a/ApplicationAbstract.php b/ApplicationAbstract.php index 57daa1160..fe809b50c 100644 --- a/ApplicationAbstract.php +++ b/ApplicationAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS; /** diff --git a/Asset/AssetManager.php b/Asset/AssetManager.php index 4cb6375b5..b10ee1ae4 100644 --- a/Asset/AssetManager.php +++ b/Asset/AssetManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Asset; /** diff --git a/Asset/AssetType.php b/Asset/AssetType.php index b2d54a5a9..0e54cab85 100644 --- a/Asset/AssetType.php +++ b/Asset/AssetType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Asset; use phpOMS\Datatypes\Enum; diff --git a/Auth/Auth.php b/Auth/Auth.php index 332549186..4c0ba9467 100644 --- a/Auth/Auth.php +++ b/Auth/Auth.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Auth; use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; diff --git a/Auth/LoginReturnType.php b/Auth/LoginReturnType.php index 33093a453..57f78ce2d 100644 --- a/Auth/LoginReturnType.php +++ b/Auth/LoginReturnType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Auth; use phpOMS\Datatypes\Enum; diff --git a/AutoloadException.php b/AutoloadException.php index ad9701f25..b32db22a2 100644 --- a/AutoloadException.php +++ b/AutoloadException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS; /** diff --git a/Autoloader.php b/Autoloader.php index 26171b3e6..fcf4fb343 100644 --- a/Autoloader.php +++ b/Autoloader.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS; diff --git a/Business/Marketing/NetPromoterScore.php b/Business/Marketing/NetPromoterScore.php index 0f347788d..2367d9a8b 100644 --- a/Business/Marketing/NetPromoterScore.php +++ b/Business/Marketing/NetPromoterScore.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Business\Marketing; /** diff --git a/Config/OptionsInterface.php b/Config/OptionsInterface.php index f5642e6d6..47d63d3d9 100644 --- a/Config/OptionsInterface.php +++ b/Config/OptionsInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Config; /** diff --git a/Config/OptionsTrait.php b/Config/OptionsTrait.php index ddb2656bf..f998e6a40 100644 --- a/Config/OptionsTrait.php +++ b/Config/OptionsTrait.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Config; /** diff --git a/Config/SettingsAbstract.php b/Config/SettingsAbstract.php index 328372c61..c3d238f8a 100644 --- a/Config/SettingsAbstract.php +++ b/Config/SettingsAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Config; use phpOMS\DataStorage\Database\DatabaseExceptionFactory; diff --git a/Console/CommandManager.php b/Console/CommandManager.php index b812ee8b0..f943e5d0e 100644 --- a/Console/CommandManager.php +++ b/Console/CommandManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Console; /** diff --git a/Contract/ArrayableInterface.php b/Contract/ArrayableInterface.php index e83a23ad2..81019b9bd 100644 --- a/Contract/ArrayableInterface.php +++ b/Contract/ArrayableInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Contract; /** diff --git a/Contract/Object.php b/Contract/Object.php index f8de0d98b..11b8c1ebf 100644 --- a/Contract/Object.php +++ b/Contract/Object.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Contract; /** diff --git a/Contract/RenderableInterface.php b/Contract/RenderableInterface.php index 5ca0b92cb..27c78e012 100644 --- a/Contract/RenderableInterface.php +++ b/Contract/RenderableInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Contract; /** diff --git a/DataStorage/Cache/CacheFactory.php b/DataStorage/Cache/CacheFactory.php index 1a2b32b71..9985bf002 100644 --- a/DataStorage/Cache/CacheFactory.php +++ b/DataStorage/Cache/CacheFactory.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; use phpOMS\DataStorage\Cache\CacheInterface; diff --git a/DataStorage/Cache/CacheInterface.php b/DataStorage/Cache/CacheInterface.php index 97b40b169..2e8f3ada7 100644 --- a/DataStorage/Cache/CacheInterface.php +++ b/DataStorage/Cache/CacheInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; use phpOMS\Datatypes\Exception\InvalidEnumValue; diff --git a/DataStorage/Cache/CachePool.php b/DataStorage/Cache/CachePool.php index 7bcf2826e..e0476b34e 100644 --- a/DataStorage/Cache/CachePool.php +++ b/DataStorage/Cache/CachePool.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; use phpOMS\Config\OptionsInterface; diff --git a/DataStorage/Cache/CacheStatus.php b/DataStorage/Cache/CacheStatus.php index 02620aad8..77831d580 100644 --- a/DataStorage/Cache/CacheStatus.php +++ b/DataStorage/Cache/CacheStatus.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; use phpOMS\Datatypes\Enum; diff --git a/DataStorage/Cache/CacheType.php b/DataStorage/Cache/CacheType.php index 02a028a95..bac55635d 100644 --- a/DataStorage/Cache/CacheType.php +++ b/DataStorage/Cache/CacheType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; use phpOMS\Datatypes\Enum; diff --git a/DataStorage/Cache/FileCache.php b/DataStorage/Cache/FileCache.php index b2c748c1f..b1d518586 100644 --- a/DataStorage/Cache/FileCache.php +++ b/DataStorage/Cache/FileCache.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; use phpOMS\Datatypes\Exception\InvalidEnumValue; diff --git a/DataStorage/Cache/MemCache.php b/DataStorage/Cache/MemCache.php index ec078f5b4..e2711505e 100644 --- a/DataStorage/Cache/MemCache.php +++ b/DataStorage/Cache/MemCache.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; /** diff --git a/DataStorage/Cache/NullCache.php b/DataStorage/Cache/NullCache.php index 6a04acc10..816738c2f 100644 --- a/DataStorage/Cache/NullCache.php +++ b/DataStorage/Cache/NullCache.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; /** diff --git a/DataStorage/Cache/RedisCache.php b/DataStorage/Cache/RedisCache.php index 56abea9ab..5f65376f5 100644 --- a/DataStorage/Cache/RedisCache.php +++ b/DataStorage/Cache/RedisCache.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; /** diff --git a/DataStorage/Cache/WinCache.php b/DataStorage/Cache/WinCache.php index 37f5492ed..010710b7e 100644 --- a/DataStorage/Cache/WinCache.php +++ b/DataStorage/Cache/WinCache.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Cache; /** diff --git a/DataStorage/Cookie/CookieJar.php b/DataStorage/Cookie/CookieJar.php index cd044f1cd..5ee4e61b7 100644 --- a/DataStorage/Cookie/CookieJar.php +++ b/DataStorage/Cookie/CookieJar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Cookie; diff --git a/DataStorage/DataMapperInterface.php b/DataStorage/DataMapperInterface.php index b1adb0164..18ea21dcc 100644 --- a/DataStorage/DataMapperInterface.php +++ b/DataStorage/DataMapperInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage; use phpOMS\DataStorage\Database\Query\Builder; diff --git a/DataStorage/Database/BuilderAbstract.php b/DataStorage/Database/BuilderAbstract.php index 1115f04bb..0647eeea2 100644 --- a/DataStorage/Database/BuilderAbstract.php +++ b/DataStorage/Database/BuilderAbstract.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database; diff --git a/DataStorage/Database/Connection/ConnectionAbstract.php b/DataStorage/Database/Connection/ConnectionAbstract.php index e2f746ff8..378b7d986 100644 --- a/DataStorage/Database/Connection/ConnectionAbstract.php +++ b/DataStorage/Database/Connection/ConnectionAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connection; use phpOMS\DataStorage\Database\DatabaseStatus; diff --git a/DataStorage/Database/Connection/ConnectionException.php b/DataStorage/Database/Connection/ConnectionException.php index 29fb1a6ae..7a782a64b 100644 --- a/DataStorage/Database/Connection/ConnectionException.php +++ b/DataStorage/Database/Connection/ConnectionException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connection; abstract class ConnectionException extends \Exception diff --git a/DataStorage/Database/Connection/ConnectionFactory.php b/DataStorage/Database/Connection/ConnectionFactory.php index 28134d1ab..c2226aa65 100644 --- a/DataStorage/Database/Connection/ConnectionFactory.php +++ b/DataStorage/Database/Connection/ConnectionFactory.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connection; diff --git a/DataStorage/Database/Connection/ConnectionInterface.php b/DataStorage/Database/Connection/ConnectionInterface.php index 1fc9e6f4b..9085ae7ca 100644 --- a/DataStorage/Database/Connection/ConnectionInterface.php +++ b/DataStorage/Database/Connection/ConnectionInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connection; use phpOMS\DataStorage\Database\Query\Grammar\Grammar; diff --git a/DataStorage/Database/Connection/MysqlConnection.php b/DataStorage/Database/Connection/MysqlConnection.php index 6763927f8..cd8453ee2 100644 --- a/DataStorage/Database/Connection/MysqlConnection.php +++ b/DataStorage/Database/Connection/MysqlConnection.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connection; use phpOMS\DataStorage\Database\DatabaseStatus; diff --git a/DataStorage/Database/Connection/PostgresConnection.php b/DataStorage/Database/Connection/PostgresConnection.php index 68b6f96c9..ab0f4e97b 100644 --- a/DataStorage/Database/Connection/PostgresConnection.php +++ b/DataStorage/Database/Connection/PostgresConnection.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connection; abstract class PostgresConnection extends \Exception diff --git a/DataStorage/Database/Connection/SQLiteConnection.php b/DataStorage/Database/Connection/SQLiteConnection.php index e75e82d76..d82566931 100644 --- a/DataStorage/Database/Connection/SQLiteConnection.php +++ b/DataStorage/Database/Connection/SQLiteConnection.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connection; use phpOMS\DataStorage\Database\DatabaseStatus; diff --git a/DataStorage/Database/Connection/SqlServerConnection.php b/DataStorage/Database/Connection/SqlServerConnection.php index f3c7fd4ab..344a9fbe5 100644 --- a/DataStorage/Database/Connection/SqlServerConnection.php +++ b/DataStorage/Database/Connection/SqlServerConnection.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connection; use phpOMS\DataStorage\Database\DatabaseStatus; diff --git a/DataStorage/Database/Connector/MysqlConnector.php b/DataStorage/Database/Connector/MysqlConnector.php index 072f5a901..f04f0472c 100644 --- a/DataStorage/Database/Connector/MysqlConnector.php +++ b/DataStorage/Database/Connector/MysqlConnector.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connector; abstract class MysqlConnector extends \Exception diff --git a/DataStorage/Database/Connector/PostgresConnector.php b/DataStorage/Database/Connector/PostgresConnector.php index fd4600b16..1368ea641 100644 --- a/DataStorage/Database/Connector/PostgresConnector.php +++ b/DataStorage/Database/Connector/PostgresConnector.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connector; abstract class PostgresConnector extends \Exception diff --git a/DataStorage/Database/Connector/SQLiteConnector.php b/DataStorage/Database/Connector/SQLiteConnector.php index 079e4df0a..9ed1ffef9 100644 --- a/DataStorage/Database/Connector/SQLiteConnector.php +++ b/DataStorage/Database/Connector/SQLiteConnector.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connector; abstract class SqliteConnector extends \Exception diff --git a/DataStorage/Database/Connector/SqlServerConnector.php b/DataStorage/Database/Connector/SqlServerConnector.php index f5632db70..87f19c73d 100644 --- a/DataStorage/Database/Connector/SqlServerConnector.php +++ b/DataStorage/Database/Connector/SqlServerConnector.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Connector; abstract class SqlServerConnector extends \Exception diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index 5c0f7a55c..ce98f6b26 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database; use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; diff --git a/DataStorage/Database/DatabaseExceptionFactory.php b/DataStorage/Database/DatabaseExceptionFactory.php index 1c7bcb0a6..5005b651e 100644 --- a/DataStorage/Database/DatabaseExceptionFactory.php +++ b/DataStorage/Database/DatabaseExceptionFactory.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database; use phpOMS\DataStorage\Database\Schema\Exception\TableException; diff --git a/DataStorage/Database/DatabasePool.php b/DataStorage/Database/DatabasePool.php index 1043218c2..772d1f73c 100644 --- a/DataStorage/Database/DatabasePool.php +++ b/DataStorage/Database/DatabasePool.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database; diff --git a/DataStorage/Database/DatabaseStatus.php b/DataStorage/Database/DatabaseStatus.php index 8b76a49bb..2222d87f5 100644 --- a/DataStorage/Database/DatabaseStatus.php +++ b/DataStorage/Database/DatabaseStatus.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database; use phpOMS\Datatypes\Enum; diff --git a/DataStorage/Database/DatabaseType.php b/DataStorage/Database/DatabaseType.php index 90e6e2aea..f59f81657 100644 --- a/DataStorage/Database/DatabaseType.php +++ b/DataStorage/Database/DatabaseType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database; use phpOMS\Datatypes\Enum; diff --git a/DataStorage/Database/GrammarAbstract.php b/DataStorage/Database/GrammarAbstract.php index 407515c70..4f73360bf 100644 --- a/DataStorage/Database/GrammarAbstract.php +++ b/DataStorage/Database/GrammarAbstract.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database; diff --git a/DataStorage/Database/Query/Builder.php b/DataStorage/Database/Query/Builder.php index 971cfcf4c..6f8962f5a 100644 --- a/DataStorage/Database/Query/Builder.php +++ b/DataStorage/Database/Query/Builder.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query; diff --git a/DataStorage/Database/Query/Column.php b/DataStorage/Database/Query/Column.php index 133b197ec..7f7e2ce88 100644 --- a/DataStorage/Database/Query/Column.php +++ b/DataStorage/Database/Query/Column.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query; diff --git a/DataStorage/Database/Query/Expression.php b/DataStorage/Database/Query/Expression.php index 952ecdb1f..f879096b7 100644 --- a/DataStorage/Database/Query/Expression.php +++ b/DataStorage/Database/Query/Expression.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query; diff --git a/DataStorage/Database/Query/Grammar/Grammar.php b/DataStorage/Database/Query/Grammar/Grammar.php index b17d41acd..3ee4a1852 100644 --- a/DataStorage/Database/Query/Grammar/Grammar.php +++ b/DataStorage/Database/Query/Grammar/Grammar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query\Grammar; diff --git a/DataStorage/Database/Query/Grammar/GrammarInterface.php b/DataStorage/Database/Query/Grammar/GrammarInterface.php index 345dac67a..3c3b84182 100644 --- a/DataStorage/Database/Query/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Query/Grammar/GrammarInterface.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query\Grammar; diff --git a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php index e40fb7688..8ad8e5cf1 100644 --- a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php +++ b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query\Grammar; use phpOMS\DataStorage\Database\Query\Builder; diff --git a/DataStorage/Database/Query/Grammar/MysqlGrammar.php b/DataStorage/Database/Query/Grammar/MysqlGrammar.php index e80c636c1..c914e3a57 100644 --- a/DataStorage/Database/Query/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Query/Grammar/MysqlGrammar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query\Grammar; use phpOMS\DataStorage\Database\Query\Builder; diff --git a/DataStorage/Database/Query/Grammar/OracleGrammar.php b/DataStorage/Database/Query/Grammar/OracleGrammar.php index 82fbbf933..a85a1f833 100644 --- a/DataStorage/Database/Query/Grammar/OracleGrammar.php +++ b/DataStorage/Database/Query/Grammar/OracleGrammar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query\Grammar; use phpOMS\DataStorage\Database\Query\Builder; diff --git a/DataStorage/Database/Query/Grammar/PostgresGrammar.php b/DataStorage/Database/Query/Grammar/PostgresGrammar.php index 1b5d4c49a..03be13a70 100644 --- a/DataStorage/Database/Query/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Query/Grammar/PostgresGrammar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query\Grammar; use phpOMS\DataStorage\Database\Query\Builder; diff --git a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php index 7d4ad0ba1..f39b44885 100644 --- a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query\Grammar; use phpOMS\DataStorage\Database\Query\Builder; diff --git a/DataStorage/Database/Query/JoinType.php b/DataStorage/Database/Query/JoinType.php index 9cde4d964..f9650ff47 100644 --- a/DataStorage/Database/Query/JoinType.php +++ b/DataStorage/Database/Query/JoinType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Query; use phpOMS\Datatypes\Enum; diff --git a/DataStorage/Database/Query/QueryType.php b/DataStorage/Database/Query/QueryType.php index 64b3fef91..efd1efa2e 100644 --- a/DataStorage/Database/Query/QueryType.php +++ b/DataStorage/Database/Query/QueryType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Query; use phpOMS\Datatypes\Enum; diff --git a/DataStorage/Database/Query/Where.php b/DataStorage/Database/Query/Where.php index 2eae63dab..d89d85d20 100644 --- a/DataStorage/Database/Query/Where.php +++ b/DataStorage/Database/Query/Where.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Query; diff --git a/DataStorage/Database/RelationType.php b/DataStorage/Database/RelationType.php index 9970afe9f..c87c53ae7 100644 --- a/DataStorage/Database/RelationType.php +++ b/DataStorage/Database/RelationType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database; use phpOMS\Datatypes\Enum; diff --git a/DataStorage/Database/Schema/Builder.php b/DataStorage/Database/Schema/Builder.php index f2338fe0d..e4fb6ba3b 100644 --- a/DataStorage/Database/Schema/Builder.php +++ b/DataStorage/Database/Schema/Builder.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Schema; diff --git a/DataStorage/Database/Schema/Exception/TableException.php b/DataStorage/Database/Schema/Exception/TableException.php index ad8bac5fb..dd21ea4c8 100644 --- a/DataStorage/Database/Schema/Exception/TableException.php +++ b/DataStorage/Database/Schema/Exception/TableException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Schema\Exception; /** diff --git a/DataStorage/Database/Schema/Grammar/Grammar.php b/DataStorage/Database/Schema/Grammar/Grammar.php index f0271784f..8894e87dd 100644 --- a/DataStorage/Database/Schema/Grammar/Grammar.php +++ b/DataStorage/Database/Schema/Grammar/Grammar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Schema\Grammar; diff --git a/DataStorage/Database/Schema/Grammar/GrammarInterface.php b/DataStorage/Database/Schema/Grammar/GrammarInterface.php index 9046b9788..dc5873c5d 100644 --- a/DataStorage/Database/Schema/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Schema/Grammar/GrammarInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Schema\Grammar; interface GrammarInterface diff --git a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php index 6c4467071..dd7e34a2e 100644 --- a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\DataStorage\Database\Schema\Grammar; diff --git a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php index 5fc8b8fb4..af761cd6d 100644 --- a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Schema\Grammar; class PostgresGrammar diff --git a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php index c9d19c7df..d8268d309 100644 --- a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Schema\Grammar; class SQLiteGrammar diff --git a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php index 4bf6fb93d..f5b4b7b71 100644 --- a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Schema\Grammar; class SqlServerGrammar diff --git a/DataStorage/Database/Schema/QueryType.php b/DataStorage/Database/Schema/QueryType.php index 1828099d3..7ec1bc76c 100644 --- a/DataStorage/Database/Schema/QueryType.php +++ b/DataStorage/Database/Schema/QueryType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Database\Schema; use phpOMS\Datatypes\Enum; diff --git a/DataStorage/LockException.php b/DataStorage/LockException.php index b6e564793..c8fc1f528 100644 --- a/DataStorage/LockException.php +++ b/DataStorage/LockException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage; /** diff --git a/DataStorage/Session/ConsoleSession.php b/DataStorage/Session/ConsoleSession.php index 0fc645d88..9405ab9f3 100644 --- a/DataStorage/Session/ConsoleSession.php +++ b/DataStorage/Session/ConsoleSession.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Session; /** diff --git a/DataStorage/Session/HttpSession.php b/DataStorage/Session/HttpSession.php index 18c880bc7..becda2073 100644 --- a/DataStorage/Session/HttpSession.php +++ b/DataStorage/Session/HttpSession.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Session; use phpOMS\Uri\UriFactory; diff --git a/DataStorage/Session/SessionInterface.php b/DataStorage/Session/SessionInterface.php index 1cc4ce3a0..463582867 100644 --- a/DataStorage/Session/SessionInterface.php +++ b/DataStorage/Session/SessionInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Session; /** diff --git a/DataStorage/Session/SocketSession.php b/DataStorage/Session/SocketSession.php index 36e06a64b..8150a2ec0 100644 --- a/DataStorage/Session/SocketSession.php +++ b/DataStorage/Session/SocketSession.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\DataStorage\Session; /** diff --git a/Datatypes/Address.php b/Datatypes/Address.php index 2ddeb7107..03e77bb2d 100644 --- a/Datatypes/Address.php +++ b/Datatypes/Address.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; /** diff --git a/Datatypes/AddressType.php b/Datatypes/AddressType.php index 15b7bca4f..bef7a8cf1 100644 --- a/Datatypes/AddressType.php +++ b/Datatypes/AddressType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; /** diff --git a/Datatypes/Enum.php b/Datatypes/Enum.php index 175383057..a83f067b5 100644 --- a/Datatypes/Enum.php +++ b/Datatypes/Enum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; /** diff --git a/Datatypes/EnumArray.php b/Datatypes/EnumArray.php index 923f3ff3d..c58a27d60 100644 --- a/Datatypes/EnumArray.php +++ b/Datatypes/EnumArray.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; /** diff --git a/Datatypes/ExactFloat.php b/Datatypes/ExactFloat.php index d576e16ff..2de68b998 100644 --- a/Datatypes/ExactFloat.php +++ b/Datatypes/ExactFloat.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; class ExactFloat diff --git a/Datatypes/Exception/InvalidEnumName.php b/Datatypes/Exception/InvalidEnumName.php index 483c3a8a4..a6030d555 100644 --- a/Datatypes/Exception/InvalidEnumName.php +++ b/Datatypes/Exception/InvalidEnumName.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes\Exception; /** diff --git a/Datatypes/Exception/InvalidEnumValue.php b/Datatypes/Exception/InvalidEnumValue.php index 2624628c8..ca7208e4a 100644 --- a/Datatypes/Exception/InvalidEnumValue.php +++ b/Datatypes/Exception/InvalidEnumValue.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes\Exception; /** diff --git a/Datatypes/Iban.php b/Datatypes/Iban.php index e17f7a282..d1ea83f6d 100644 --- a/Datatypes/Iban.php +++ b/Datatypes/Iban.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; use phpOMS\Validation\Base\IbanEnum; diff --git a/Datatypes/Location.php b/Datatypes/Location.php index 0a4288f0b..8862812d8 100644 --- a/Datatypes/Location.php +++ b/Datatypes/Location.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; /** diff --git a/Datatypes/NullLocation.php b/Datatypes/NullLocation.php index cb6199e59..1c3e562a9 100644 --- a/Datatypes/NullLocation.php +++ b/Datatypes/NullLocation.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; /** diff --git a/Datatypes/PhoneType.php b/Datatypes/PhoneType.php index e5633b34c..8ef821e58 100644 --- a/Datatypes/PhoneType.php +++ b/Datatypes/PhoneType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; /** diff --git a/Datatypes/SmartDateTime.php b/Datatypes/SmartDateTime.php index 07859cc5c..7e6d54701 100644 --- a/Datatypes/SmartDateTime.php +++ b/Datatypes/SmartDateTime.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Datatypes; /** diff --git a/Dispatcher/Dispatcher.php b/Dispatcher/Dispatcher.php index bf640f018..251d2e56e 100644 --- a/Dispatcher/Dispatcher.php +++ b/Dispatcher/Dispatcher.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Dispatcher; use phpOMS\ApplicationAbstract; diff --git a/Event/EventManager.php b/Event/EventManager.php index 9d06045b9..628471df5 100644 --- a/Event/EventManager.php +++ b/Event/EventManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Event; use phpOMS\Pattern\Mediator; diff --git a/Html/TagType.php b/Html/TagType.php index a70a4bc3f..7fb703f38 100644 --- a/Html/TagType.php +++ b/Html/TagType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Html; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO3166CharEnum.php b/Localization/ISO3166CharEnum.php index 33cc7a7bd..a73425381 100644 --- a/Localization/ISO3166CharEnum.php +++ b/Localization/ISO3166CharEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO3166NameEnum.php b/Localization/ISO3166NameEnum.php index 7da3f751d..7c861fd43 100644 --- a/Localization/ISO3166NameEnum.php +++ b/Localization/ISO3166NameEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO3166NumEnum.php b/Localization/ISO3166NumEnum.php index 28d56c3fd..7251438eb 100644 --- a/Localization/ISO3166NumEnum.php +++ b/Localization/ISO3166NumEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO3166TwoEnum.php b/Localization/ISO3166TwoEnum.php index 6caccf686..8a762254c 100644 --- a/Localization/ISO3166TwoEnum.php +++ b/Localization/ISO3166TwoEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO4217CharEnum.php b/Localization/ISO4217CharEnum.php index 699e916d2..d5dc6dd1e 100644 --- a/Localization/ISO4217CharEnum.php +++ b/Localization/ISO4217CharEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO4217DecimalEnum.php b/Localization/ISO4217DecimalEnum.php index 8140e0aee..f18350b3a 100644 --- a/Localization/ISO4217DecimalEnum.php +++ b/Localization/ISO4217DecimalEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO4217Enum.php b/Localization/ISO4217Enum.php index 8940ff73a..30ecb4458 100644 --- a/Localization/ISO4217Enum.php +++ b/Localization/ISO4217Enum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO4217NumEnum.php b/Localization/ISO4217NumEnum.php index 54facb0db..4cadea101 100644 --- a/Localization/ISO4217NumEnum.php +++ b/Localization/ISO4217NumEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO4217SubUnitEnum.php b/Localization/ISO4217SubUnitEnum.php index f2e70f5cd..5fb20cf8d 100644 --- a/Localization/ISO4217SubUnitEnum.php +++ b/Localization/ISO4217SubUnitEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO4217SymbolEnum.php b/Localization/ISO4217SymbolEnum.php index 6cbf06613..72ed3e994 100644 --- a/Localization/ISO4217SymbolEnum.php +++ b/Localization/ISO4217SymbolEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO639Enum.php b/Localization/ISO639Enum.php index a81c6d266..ce0373106 100644 --- a/Localization/ISO639Enum.php +++ b/Localization/ISO639Enum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO639x1Enum.php b/Localization/ISO639x1Enum.php index ebe2c7ed7..9f049aa31 100644 --- a/Localization/ISO639x1Enum.php +++ b/Localization/ISO639x1Enum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO639x2Enum.php b/Localization/ISO639x2Enum.php index e5e488506..88217e49a 100644 --- a/Localization/ISO639x2Enum.php +++ b/Localization/ISO639x2Enum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/ISO8601EnumArray.php b/Localization/ISO8601EnumArray.php index 0aea2729b..30cd1e599 100644 --- a/Localization/ISO8601EnumArray.php +++ b/Localization/ISO8601EnumArray.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\EnumArray; diff --git a/Localization/L11nManager.php b/Localization/L11nManager.php index 52897b4b3..b4b6e43d8 100644 --- a/Localization/L11nManager.php +++ b/Localization/L11nManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Log\FileLogger; diff --git a/Localization/Localization.php b/Localization/Localization.php index 94f95ad7e..f0698a218 100644 --- a/Localization/Localization.php +++ b/Localization/Localization.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Exception\InvalidEnumValue; diff --git a/Localization/Money.php b/Localization/Money.php index 82b4e5942..5944a5d5f 100644 --- a/Localization/Money.php +++ b/Localization/Money.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; /** diff --git a/Localization/NullLocalization.php b/Localization/NullLocalization.php index f0aad78d9..5d697536b 100644 --- a/Localization/NullLocalization.php +++ b/Localization/NullLocalization.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; /** diff --git a/Localization/PhoneEnum.php b/Localization/PhoneEnum.php index 40ee9ef3f..554bc3869 100644 --- a/Localization/PhoneEnum.php +++ b/Localization/PhoneEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\Enum; diff --git a/Localization/TimeZoneEnumArray.php b/Localization/TimeZoneEnumArray.php index 858425979..20a3cf369 100644 --- a/Localization/TimeZoneEnumArray.php +++ b/Localization/TimeZoneEnumArray.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Localization; use phpOMS\Datatypes\EnumArray; diff --git a/Log/FileLogger.php b/Log/FileLogger.php index c2db6ceef..77b31acbb 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Log; use phpOMS\Datatypes\Exception\InvalidEnumValue; diff --git a/Log/LogLevel.php b/Log/LogLevel.php index 06e56abee..1b604a17d 100644 --- a/Log/LogLevel.php +++ b/Log/LogLevel.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Log; use phpOMS\Datatypes\Enum; diff --git a/Log/LoggerInterface.php b/Log/LoggerInterface.php index e6b28517b..a20346096 100644 --- a/Log/LoggerInterface.php +++ b/Log/LoggerInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Log; /** diff --git a/Math/Differential/FiniteDifference.php b/Math/Differential/FiniteDifference.php index 1acea2248..d439df09b 100644 --- a/Math/Differential/FiniteDifference.php +++ b/Math/Differential/FiniteDifference.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Differential; diff --git a/Math/Finance/Depreciation.php b/Math/Finance/Depreciation.php index 3518fdb3d..03c4c6afc 100644 --- a/Math/Finance/Depreciation.php +++ b/Math/Finance/Depreciation.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance; class Depreciation diff --git a/Math/Finance/FinanceFormulas.php b/Math/Finance/FinanceFormulas.php index 7607b59f8..e7c78db75 100644 --- a/Math/Finance/FinanceFormulas.php +++ b/Math/Finance/FinanceFormulas.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance; use phpOMS\Math\Statistic\Average; diff --git a/Math/Finance/Forecasting/AR.php b/Math/Finance/Forecasting/AR.php index 722a033e2..8cb30e691 100644 --- a/Math/Finance/Forecasting/AR.php +++ b/Math/Finance/Forecasting/AR.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class AR diff --git a/Math/Finance/Forecasting/ARCH.php b/Math/Finance/Forecasting/ARCH.php index df3c6acd8..82410b2d4 100644 --- a/Math/Finance/Forecasting/ARCH.php +++ b/Math/Finance/Forecasting/ARCH.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class ARCH diff --git a/Math/Finance/Forecasting/ARFIMA.php b/Math/Finance/Forecasting/ARFIMA.php index 0bb1cbac7..37388a478 100644 --- a/Math/Finance/Forecasting/ARFIMA.php +++ b/Math/Finance/Forecasting/ARFIMA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class ARFIMA diff --git a/Math/Finance/Forecasting/ARIMA.php b/Math/Finance/Forecasting/ARIMA.php index 6a16afa88..463e271de 100644 --- a/Math/Finance/Forecasting/ARIMA.php +++ b/Math/Finance/Forecasting/ARIMA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; use phpOMS\Math\Statistic\Average; diff --git a/Math/Finance/Forecasting/ARMA.php b/Math/Finance/Forecasting/ARMA.php index 5ea8c2e1e..bf2fe0d34 100644 --- a/Math/Finance/Forecasting/ARMA.php +++ b/Math/Finance/Forecasting/ARMA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class ARMA diff --git a/Math/Finance/Forecasting/ClassicalDecomposition.php b/Math/Finance/Forecasting/ClassicalDecomposition.php index 70724221a..a6cfd8d5e 100644 --- a/Math/Finance/Forecasting/ClassicalDecomposition.php +++ b/Math/Finance/Forecasting/ClassicalDecomposition.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance\Forecasting; use phpOMS\Math\Statistic\Average; diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php b/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php index 1c92a36f1..8a9cf23d2 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/ExponentialSmoothing.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance\Forecasting\ExponentialSmoothing; use phpOMS\Math\Finance\Forecasting\SmoothingType; diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php b/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php index fb09fc5ff..2df7c5f98 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/SeasonalType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance\Forecasting\ExponentialSmoothing; use phpOMS\Datatypes\Enum; diff --git a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php b/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php index 67fc9c66a..37fa2a1de 100644 --- a/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php +++ b/Math/Finance/Forecasting/ExponentialSmoothing/TrendType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance\Forecasting\ExponentialSmoothing; use phpOMS\Datatypes\Enum; diff --git a/Math/Finance/Forecasting/GARCH.php b/Math/Finance/Forecasting/GARCH.php index e920329cc..0326e1f45 100644 --- a/Math/Finance/Forecasting/GARCH.php +++ b/Math/Finance/Forecasting/GARCH.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class GARCH diff --git a/Math/Finance/Forecasting/MA.php b/Math/Finance/Forecasting/MA.php index 17b52c8f9..5ef2850dd 100644 --- a/Math/Finance/Forecasting/MA.php +++ b/Math/Finance/Forecasting/MA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class MA diff --git a/Math/Finance/Forecasting/NAR.php b/Math/Finance/Forecasting/NAR.php index 6a41cb694..125215468 100644 --- a/Math/Finance/Forecasting/NAR.php +++ b/Math/Finance/Forecasting/NAR.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class NAR diff --git a/Math/Finance/Forecasting/NMA.php b/Math/Finance/Forecasting/NMA.php index bb53c7313..0334228fe 100644 --- a/Math/Finance/Forecasting/NMA.php +++ b/Math/Finance/Forecasting/NMA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class NMA diff --git a/Math/Finance/Forecasting/SARIMA.php b/Math/Finance/Forecasting/SARIMA.php index 9533220c9..d14e57d54 100644 --- a/Math/Finance/Forecasting/SARIMA.php +++ b/Math/Finance/Forecasting/SARIMA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Finance\Forecasting; class SARIMA diff --git a/Math/Finance/Forecasting/SmoothingType.php b/Math/Finance/Forecasting/SmoothingType.php index 1dff67fc5..e4ab70cc7 100644 --- a/Math/Finance/Forecasting/SmoothingType.php +++ b/Math/Finance/Forecasting/SmoothingType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance\Forecasting; use phpOMS\Datatypes\Enum; diff --git a/Math/Finance/Loan.php b/Math/Finance/Loan.php index edf21ecfd..b6953dfdf 100644 --- a/Math/Finance/Loan.php +++ b/Math/Finance/Loan.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance; /** diff --git a/Math/Finance/Lorenzkurve.php b/Math/Finance/Lorenzkurve.php index 47cec1c82..7684c0001 100644 --- a/Math/Finance/Lorenzkurve.php +++ b/Math/Finance/Lorenzkurve.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance; /** diff --git a/Math/Finance/StockBonds.php b/Math/Finance/StockBonds.php index 3e9e0cb7f..a854cf206 100644 --- a/Math/Finance/StockBonds.php +++ b/Math/Finance/StockBonds.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Finance; /** diff --git a/Math/Functions/Fibunacci.php b/Math/Functions/Fibunacci.php index 2c48dfbb8..9325e12f8 100644 --- a/Math/Functions/Fibunacci.php +++ b/Math/Functions/Fibunacci.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Functions; diff --git a/Math/Functions/Functions.php b/Math/Functions/Functions.php index c65c81c55..a4381130a 100644 --- a/Math/Functions/Functions.php +++ b/Math/Functions/Functions.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Functions; diff --git a/Math/Geometry/ConvexHull/MonotoneChain.php b/Math/Geometry/ConvexHull/MonotoneChain.php index 524d86e50..c6a4d7e3a 100644 --- a/Math/Geometry/ConvexHull/MonotoneChain.php +++ b/Math/Geometry/ConvexHull/MonotoneChain.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Geometry\ConvexHull; /** diff --git a/Math/Integral/Gauss.php b/Math/Integral/Gauss.php index f439045bf..0146f3e1a 100644 --- a/Math/Integral/Gauss.php +++ b/Math/Integral/Gauss.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Integral; diff --git a/Math/Matrix/Cholesky.php b/Math/Matrix/Cholesky.php index 0c703f388..2c4f7943b 100644 --- a/Math/Matrix/Cholesky.php +++ b/Math/Matrix/Cholesky.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Matrix; diff --git a/Math/Matrix/DimensionException.php b/Math/Matrix/DimensionException.php index 6bf0a1456..3112eacdd 100644 --- a/Math/Matrix/DimensionException.php +++ b/Math/Matrix/DimensionException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Matrix; /** diff --git a/Math/Matrix/IdentityMatrix.php b/Math/Matrix/IdentityMatrix.php index 6f71c77bf..eedee0b12 100644 --- a/Math/Matrix/IdentityMatrix.php +++ b/Math/Matrix/IdentityMatrix.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Matrix; diff --git a/Math/Matrix/InverseType.php b/Math/Matrix/InverseType.php index 29aafd561..db286efe1 100644 --- a/Math/Matrix/InverseType.php +++ b/Math/Matrix/InverseType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Matrix; use phpOMS\Datatypes\Enum; diff --git a/Math/Matrix/Matrix.php b/Math/Matrix/Matrix.php index 9235b8e92..f4359f1b1 100644 --- a/Math/Matrix/Matrix.php +++ b/Math/Matrix/Matrix.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Matrix; diff --git a/Math/Matrix/Vector.php b/Math/Matrix/Vector.php index 8eebbe2b1..b30e376c1 100644 --- a/Math/Matrix/Vector.php +++ b/Math/Matrix/Vector.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Matrix; diff --git a/Math/Number/Complex.php b/Math/Number/Complex.php index e6ce77958..912002978 100644 --- a/Math/Number/Complex.php +++ b/Math/Number/Complex.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Number; class Complex diff --git a/Math/Number/Integer.php b/Math/Number/Integer.php index 9264899e8..90f3acba6 100644 --- a/Math/Number/Integer.php +++ b/Math/Number/Integer.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Number; diff --git a/Math/Number/Irrational.php b/Math/Number/Irrational.php index a5c87306b..777d8a57d 100644 --- a/Math/Number/Irrational.php +++ b/Math/Number/Irrational.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Number; diff --git a/Math/Number/Natural.php b/Math/Number/Natural.php index 83932c167..aa7f95789 100644 --- a/Math/Number/Natural.php +++ b/Math/Number/Natural.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Number; diff --git a/Math/Number/NumberType.php b/Math/Number/NumberType.php index 5a5a3337d..e93b79811 100644 --- a/Math/Number/NumberType.php +++ b/Math/Number/NumberType.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Number; diff --git a/Math/Number/Numbers.php b/Math/Number/Numbers.php index bdc071a4f..6f6849899 100644 --- a/Math/Number/Numbers.php +++ b/Math/Number/Numbers.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Number; diff --git a/Math/Number/OperationInterface.php b/Math/Number/OperationInterface.php index 36fbb29a1..05b4421a5 100644 --- a/Math/Number/OperationInterface.php +++ b/Math/Number/OperationInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Number; /** diff --git a/Math/Number/Prime.php b/Math/Number/Prime.php index 9dfc05992..c109c8417 100644 --- a/Math/Number/Prime.php +++ b/Math/Number/Prime.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Number; diff --git a/Math/Number/Rational.php b/Math/Number/Rational.php index 887233d3e..016868f1f 100644 --- a/Math/Number/Rational.php +++ b/Math/Number/Rational.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Number; diff --git a/Math/Number/Real.php b/Math/Number/Real.php index 95156fa2b..b8b9ff564 100644 --- a/Math/Number/Real.php +++ b/Math/Number/Real.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Number; diff --git a/Math/Numerics/Interpolation/CubicSplineInterpolation.php b/Math/Numerics/Interpolation/CubicSplineInterpolation.php index fe1b35029..a94e72fd3 100644 --- a/Math/Numerics/Interpolation/CubicSplineInterpolation.php +++ b/Math/Numerics/Interpolation/CubicSplineInterpolation.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Numerics\Interpolation; /** diff --git a/Math/Numerics/Interpolation/LinearInterpolation.php b/Math/Numerics/Interpolation/LinearInterpolation.php index 50ff7fe8c..40f74e97b 100644 --- a/Math/Numerics/Interpolation/LinearInterpolation.php +++ b/Math/Numerics/Interpolation/LinearInterpolation.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Numerics\Interpolation; /** diff --git a/Math/Numerics/Interpolation/PolynomialInterpolation.php b/Math/Numerics/Interpolation/PolynomialInterpolation.php index a585d7ea7..79d2802ab 100644 --- a/Math/Numerics/Interpolation/PolynomialInterpolation.php +++ b/Math/Numerics/Interpolation/PolynomialInterpolation.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Numerics\Interpolation; /** diff --git a/Math/Optimization/GeneticAlgorithmInterface.php b/Math/Optimization/GeneticAlgorithmInterface.php index d9435f7b0..060c4b576 100644 --- a/Math/Optimization/GeneticAlgorithmInterface.php +++ b/Math/Optimization/GeneticAlgorithmInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Optimization; /** diff --git a/Math/Optimization/Graph/Dijkstra.php b/Math/Optimization/Graph/Dijkstra.php index 92f6061b7..dfaef4f1e 100644 --- a/Math/Optimization/Graph/Dijkstra.php +++ b/Math/Optimization/Graph/Dijkstra.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\Graph; class Dijkstra diff --git a/Math/Optimization/Graph/EdgeInterface.php b/Math/Optimization/Graph/EdgeInterface.php index fe29b8573..71a0aef2b 100644 --- a/Math/Optimization/Graph/EdgeInterface.php +++ b/Math/Optimization/Graph/EdgeInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Optimization\Graph; /** diff --git a/Math/Optimization/Graph/FloydWarshall.php b/Math/Optimization/Graph/FloydWarshall.php index b168fc173..b38c06e86 100644 --- a/Math/Optimization/Graph/FloydWarshall.php +++ b/Math/Optimization/Graph/FloydWarshall.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\Graph; class FloydWarshall diff --git a/Math/Optimization/Graph/Graph.php b/Math/Optimization/Graph/Graph.php index f740e6fd5..512d04e97 100644 --- a/Math/Optimization/Graph/Graph.php +++ b/Math/Optimization/Graph/Graph.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Optimization\Graph; use phpOMS\Stdlib\Map\KeyType; diff --git a/Math/Optimization/Graph/NullEdge.php b/Math/Optimization/Graph/NullEdge.php index 6ff883c35..bae587b4a 100644 --- a/Math/Optimization/Graph/NullEdge.php +++ b/Math/Optimization/Graph/NullEdge.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Optimization\Graph; diff --git a/Math/Optimization/Graph/NullVertice.php b/Math/Optimization/Graph/NullVertice.php index 3f647b1b5..631fff565 100644 --- a/Math/Optimization/Graph/NullVertice.php +++ b/Math/Optimization/Graph/NullVertice.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Optimization\Graph; diff --git a/Math/Optimization/Graph/VerticeInterface.php b/Math/Optimization/Graph/VerticeInterface.php index 3ac2a4fa7..9b63a2761 100644 --- a/Math/Optimization/Graph/VerticeInterface.php +++ b/Math/Optimization/Graph/VerticeInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Optimization\Graph; /** diff --git a/Math/Optimization/Knappsack/Backpack.php b/Math/Optimization/Knappsack/Backpack.php index d141bfb5b..da13bf79a 100644 --- a/Math/Optimization/Knappsack/Backpack.php +++ b/Math/Optimization/Knappsack/Backpack.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\Knappsack; class Backpack diff --git a/Math/Optimization/Knappsack/BruteForce.php b/Math/Optimization/Knappsack/BruteForce.php index 05860b6c2..420e5b522 100644 --- a/Math/Optimization/Knappsack/BruteForce.php +++ b/Math/Optimization/Knappsack/BruteForce.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\Knappsack; class BruteForce diff --git a/Math/Optimization/Knappsack/GA.php b/Math/Optimization/Knappsack/GA.php index 5ab4c1ed8..4e98fc7fc 100644 --- a/Math/Optimization/Knappsack/GA.php +++ b/Math/Optimization/Knappsack/GA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\Knappsack; class GA diff --git a/Math/Optimization/Knappsack/Item.php b/Math/Optimization/Knappsack/Item.php index 0c76847fc..cde2a27f5 100644 --- a/Math/Optimization/Knappsack/Item.php +++ b/Math/Optimization/Knappsack/Item.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\Knappsack; class Item diff --git a/Math/Optimization/Knappsack/ItemPool.php b/Math/Optimization/Knappsack/ItemPool.php index ef0bfbb62..4f05681e5 100644 --- a/Math/Optimization/Knappsack/ItemPool.php +++ b/Math/Optimization/Knappsack/ItemPool.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\Knappsack; class ItemPool diff --git a/Math/Optimization/Knappsack/Population.php b/Math/Optimization/Knappsack/Population.php index b3437ff63..3a70b8dcc 100644 --- a/Math/Optimization/Knappsack/Population.php +++ b/Math/Optimization/Knappsack/Population.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\Knappsack; class Population diff --git a/Math/Optimization/ShiftScheduling/BruteForce.php b/Math/Optimization/ShiftScheduling/BruteForce.php index bb818d660..dff47946c 100644 --- a/Math/Optimization/ShiftScheduling/BruteForce.php +++ b/Math/Optimization/ShiftScheduling/BruteForce.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\ShiftScheduling; class BruteForce diff --git a/Math/Optimization/ShiftScheduling/GA.php b/Math/Optimization/ShiftScheduling/GA.php index f31eca076..3cfa8860d 100644 --- a/Math/Optimization/ShiftScheduling/GA.php +++ b/Math/Optimization/ShiftScheduling/GA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\ShiftScheduling; class GA diff --git a/Math/Optimization/ShiftScheduling/Population.php b/Math/Optimization/ShiftScheduling/Population.php index 2d23fe52e..599585bae 100644 --- a/Math/Optimization/ShiftScheduling/Population.php +++ b/Math/Optimization/ShiftScheduling/Population.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\ShiftScheduling; class Population diff --git a/Math/Optimization/ShiftScheduling/Workday.php b/Math/Optimization/ShiftScheduling/Workday.php index b033363b2..625509da5 100644 --- a/Math/Optimization/ShiftScheduling/Workday.php +++ b/Math/Optimization/ShiftScheduling/Workday.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\ShiftScheduling; class Workday diff --git a/Math/Optimization/ShiftScheduling/Worker.php b/Math/Optimization/ShiftScheduling/Worker.php index 04397ebb7..4ebff2bbc 100644 --- a/Math/Optimization/ShiftScheduling/Worker.php +++ b/Math/Optimization/ShiftScheduling/Worker.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\ShiftScheduling; class Worker diff --git a/Math/Optimization/ShiftScheduling/WorkerPool.php b/Math/Optimization/ShiftScheduling/WorkerPool.php index 1be04ff97..ba1184d58 100644 --- a/Math/Optimization/ShiftScheduling/WorkerPool.php +++ b/Math/Optimization/ShiftScheduling/WorkerPool.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\ShiftScheduling; class WorkerPool diff --git a/Math/Optimization/TSP/BruteForce.php b/Math/Optimization/TSP/BruteForce.php index df5bd2fe4..340a4c490 100644 --- a/Math/Optimization/TSP/BruteForce.php +++ b/Math/Optimization/TSP/BruteForce.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\TSP; diff --git a/Math/Optimization/TSP/City.php b/Math/Optimization/TSP/City.php index 735467a17..6acd33c7a 100644 --- a/Math/Optimization/TSP/City.php +++ b/Math/Optimization/TSP/City.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Optimization\TSP; use phpOMS\Math\Shape\D3\Sphere; diff --git a/Math/Optimization/TSP/CityPool.php b/Math/Optimization/TSP/CityPool.php index 39ce1c723..4f6b0a460 100644 --- a/Math/Optimization/TSP/CityPool.php +++ b/Math/Optimization/TSP/CityPool.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\TSP; diff --git a/Math/Optimization/TSP/GA.php b/Math/Optimization/TSP/GA.php index f39aee414..da09309fc 100644 --- a/Math/Optimization/TSP/GA.php +++ b/Math/Optimization/TSP/GA.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\TSP; diff --git a/Math/Optimization/TSP/Population.php b/Math/Optimization/TSP/Population.php index 41a0b5a00..e29c448f5 100644 --- a/Math/Optimization/TSP/Population.php +++ b/Math/Optimization/TSP/Population.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\TSP; diff --git a/Math/Optimization/TSP/Tour.php b/Math/Optimization/TSP/Tour.php index 07e4a74ca..54c5a3028 100644 --- a/Math/Optimization/TSP/Tour.php +++ b/Math/Optimization/TSP/Tour.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Optimization\TSP; diff --git a/Math/Parser/Evaluator.php b/Math/Parser/Evaluator.php index 532161dff..6430bcd01 100644 --- a/Math/Parser/Evaluator.php +++ b/Math/Parser/Evaluator.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Parser; /** diff --git a/Math/Shape/D2/Circle.php b/Math/Shape/D2/Circle.php index 1fea92f21..e70baeb6f 100644 --- a/Math/Shape/D2/Circle.php +++ b/Math/Shape/D2/Circle.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D2; /** diff --git a/Math/Shape/D2/D2ShapeInterface.php b/Math/Shape/D2/D2ShapeInterface.php index 55b841dcf..2bf425c5e 100644 --- a/Math/Shape/D2/D2ShapeInterface.php +++ b/Math/Shape/D2/D2ShapeInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D2; use phpOMS\Math\Shape\ShapeInterface; diff --git a/Math/Shape/D2/Ellipse.php b/Math/Shape/D2/Ellipse.php index a0cc47b0e..9eb643390 100644 --- a/Math/Shape/D2/Ellipse.php +++ b/Math/Shape/D2/Ellipse.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D2; /** diff --git a/Math/Shape/D2/Polygon.php b/Math/Shape/D2/Polygon.php index 4bc5b20f5..ad3a77391 100644 --- a/Math/Shape/D2/Polygon.php +++ b/Math/Shape/D2/Polygon.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D2; /** diff --git a/Math/Shape/D2/Quadrilateral.php b/Math/Shape/D2/Quadrilateral.php index 5d9b3658b..6ca958581 100644 --- a/Math/Shape/D2/Quadrilateral.php +++ b/Math/Shape/D2/Quadrilateral.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Shape\D2; class Quadrilateral implements D2ShapeInterface diff --git a/Math/Shape/D2/Rectangle.php b/Math/Shape/D2/Rectangle.php index d6c95c9d3..615b3a899 100644 --- a/Math/Shape/D2/Rectangle.php +++ b/Math/Shape/D2/Rectangle.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D2; /** diff --git a/Math/Shape/D2/Trapezoid.php b/Math/Shape/D2/Trapezoid.php index 956b3be9a..d1b62c792 100644 --- a/Math/Shape/D2/Trapezoid.php +++ b/Math/Shape/D2/Trapezoid.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D2; /** diff --git a/Math/Shape/D2/Triangle.php b/Math/Shape/D2/Triangle.php index a44d2f25f..ed6e6a36d 100644 --- a/Math/Shape/D2/Triangle.php +++ b/Math/Shape/D2/Triangle.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D2; /** diff --git a/Math/Shape/D3/Cone.php b/Math/Shape/D3/Cone.php index b5a2ffb9f..c0e5ccbc6 100644 --- a/Math/Shape/D3/Cone.php +++ b/Math/Shape/D3/Cone.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D3; /** diff --git a/Math/Shape/D3/Cuboid.php b/Math/Shape/D3/Cuboid.php index f54ded20d..e803dab55 100644 --- a/Math/Shape/D3/Cuboid.php +++ b/Math/Shape/D3/Cuboid.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D3; /** diff --git a/Math/Shape/D3/Cylinder.php b/Math/Shape/D3/Cylinder.php index 1811102c9..38a7671f0 100644 --- a/Math/Shape/D3/Cylinder.php +++ b/Math/Shape/D3/Cylinder.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D3; /** diff --git a/Math/Shape/D3/D3ShapeInterface.php b/Math/Shape/D3/D3ShapeInterface.php index 9336092be..03922f936 100644 --- a/Math/Shape/D3/D3ShapeInterface.php +++ b/Math/Shape/D3/D3ShapeInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D3; use phpOMS\Math\Shape\ShapeInterface; diff --git a/Math/Shape/D3/Prism.php b/Math/Shape/D3/Prism.php index b63b79235..7de5b0b54 100644 --- a/Math/Shape/D3/Prism.php +++ b/Math/Shape/D3/Prism.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Shape\D3; class Prism implements D3ShapeInterface diff --git a/Math/Shape/D3/RectangularPyramid.php b/Math/Shape/D3/RectangularPyramid.php index 6685ce7c2..c26d02691 100644 --- a/Math/Shape/D3/RectangularPyramid.php +++ b/Math/Shape/D3/RectangularPyramid.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D3; /** diff --git a/Math/Shape/D3/Sphere.php b/Math/Shape/D3/Sphere.php index b546196e9..285a2e714 100644 --- a/Math/Shape/D3/Sphere.php +++ b/Math/Shape/D3/Sphere.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D3; /** diff --git a/Math/Shape/D3/Tetrahedron.php b/Math/Shape/D3/Tetrahedron.php index a0321cf2e..54b2708db 100644 --- a/Math/Shape/D3/Tetrahedron.php +++ b/Math/Shape/D3/Tetrahedron.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape\D3; /** diff --git a/Math/Shape/ShapeInterface.php b/Math/Shape/ShapeInterface.php index 385d138ab..258a84425 100644 --- a/Math/Shape/ShapeInterface.php +++ b/Math/Shape/ShapeInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Shape; /** diff --git a/Math/Statistic/Average.php b/Math/Statistic/Average.php index 01c42b5ad..6f6d3c7e3 100644 --- a/Math/Statistic/Average.php +++ b/Math/Statistic/Average.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic; diff --git a/Math/Statistic/Basic.php b/Math/Statistic/Basic.php index eeec2389c..38c6595fa 100644 --- a/Math/Statistic/Basic.php +++ b/Math/Statistic/Basic.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic; diff --git a/Math/Statistic/Correlation.php b/Math/Statistic/Correlation.php index a6872bd19..70b64ec5a 100644 --- a/Math/Statistic/Correlation.php +++ b/Math/Statistic/Correlation.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic; diff --git a/Math/Statistic/Forecast/Error.php b/Math/Statistic/Forecast/Error.php index 9414453f7..da7f0f745 100644 --- a/Math/Statistic/Forecast/Error.php +++ b/Math/Statistic/Forecast/Error.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast; diff --git a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php index e17b5c379..972ca84f9 100644 --- a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php +++ b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Statistic\Forecast; use phpOMS\Datatypes\Enum; diff --git a/Math/Statistic/Forecast/Forecasts.php b/Math/Statistic/Forecast/Forecasts.php index aa14cb3a6..7e7de433a 100644 --- a/Math/Statistic/Forecast/Forecasts.php +++ b/Math/Statistic/Forecast/Forecasts.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Math\Statistic\Forecast; /** diff --git a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php index a996fca47..cd6c05d72 100644 --- a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; diff --git a/Math/Statistic/Forecast/Regression/LevelLogRegression.php b/Math/Statistic/Forecast/Regression/LevelLogRegression.php index 61c6af001..e4d91c722 100644 --- a/Math/Statistic/Forecast/Regression/LevelLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLogRegression.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; diff --git a/Math/Statistic/Forecast/Regression/LogLevelRegression.php b/Math/Statistic/Forecast/Regression/LogLevelRegression.php index de4ccdd63..c2a3dab49 100644 --- a/Math/Statistic/Forecast/Regression/LogLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLevelRegression.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; diff --git a/Math/Statistic/Forecast/Regression/LogLogRegression.php b/Math/Statistic/Forecast/Regression/LogLogRegression.php index 1fa920631..d1bd4a25d 100644 --- a/Math/Statistic/Forecast/Regression/LogLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLogRegression.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; diff --git a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php index eadb1fcb2..ca36a93fa 100644 --- a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php +++ b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; use phpOMS\Math\Matrix\Matrix; diff --git a/Math/Statistic/Forecast/Regression/RegressionAbstract.php b/Math/Statistic/Forecast/Regression/RegressionAbstract.php index 7395cf123..cdce46a0c 100644 --- a/Math/Statistic/Forecast/Regression/RegressionAbstract.php +++ b/Math/Statistic/Forecast/Regression/RegressionAbstract.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; use phpOMS\Math\Statistic\Average; diff --git a/Math/Statistic/MeasureOfDispersion.php b/Math/Statistic/MeasureOfDispersion.php index 7da487e7a..2cf345624 100644 --- a/Math/Statistic/MeasureOfDispersion.php +++ b/Math/Statistic/MeasureOfDispersion.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Statistic; diff --git a/Math/Stochastic/Distribution/BernoulliDistribution.php b/Math/Stochastic/Distribution/BernoulliDistribution.php index d4eb9dd99..21d13cb4b 100644 --- a/Math/Stochastic/Distribution/BernoulliDistribution.php +++ b/Math/Stochastic/Distribution/BernoulliDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/BetaDistribution.php b/Math/Stochastic/Distribution/BetaDistribution.php index 32c552b1c..d8379a1f3 100644 --- a/Math/Stochastic/Distribution/BetaDistribution.php +++ b/Math/Stochastic/Distribution/BetaDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class BetaDistribution diff --git a/Math/Stochastic/Distribution/BinomialDistribution.php b/Math/Stochastic/Distribution/BinomialDistribution.php index f4d154436..28b853529 100644 --- a/Math/Stochastic/Distribution/BinomialDistribution.php +++ b/Math/Stochastic/Distribution/BinomialDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/CauchyDistribution.php b/Math/Stochastic/Distribution/CauchyDistribution.php index e055565d3..7fff30f20 100644 --- a/Math/Stochastic/Distribution/CauchyDistribution.php +++ b/Math/Stochastic/Distribution/CauchyDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/ChiSquaredDistribution.php b/Math/Stochastic/Distribution/ChiSquaredDistribution.php index 981d4776b..a6a821eb1 100644 --- a/Math/Stochastic/Distribution/ChiSquaredDistribution.php +++ b/Math/Stochastic/Distribution/ChiSquaredDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/ExponentialDistribution.php b/Math/Stochastic/Distribution/ExponentialDistribution.php index bde6977d2..8938f86be 100644 --- a/Math/Stochastic/Distribution/ExponentialDistribution.php +++ b/Math/Stochastic/Distribution/ExponentialDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/FDistribution.php b/Math/Stochastic/Distribution/FDistribution.php index 93253b118..668999d95 100644 --- a/Math/Stochastic/Distribution/FDistribution.php +++ b/Math/Stochastic/Distribution/FDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class FDistribution diff --git a/Math/Stochastic/Distribution/GammaDistribution.php b/Math/Stochastic/Distribution/GammaDistribution.php index 7d3091fe3..bdda04f03 100644 --- a/Math/Stochastic/Distribution/GammaDistribution.php +++ b/Math/Stochastic/Distribution/GammaDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class GammaDistribution diff --git a/Math/Stochastic/Distribution/GeometricDistribution.php b/Math/Stochastic/Distribution/GeometricDistribution.php index d4918183b..f30d2701f 100644 --- a/Math/Stochastic/Distribution/GeometricDistribution.php +++ b/Math/Stochastic/Distribution/GeometricDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/HypergeometricDistribution.php b/Math/Stochastic/Distribution/HypergeometricDistribution.php index 07e440ff4..9fbbf3980 100644 --- a/Math/Stochastic/Distribution/HypergeometricDistribution.php +++ b/Math/Stochastic/Distribution/HypergeometricDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class HypergeometricDistribution diff --git a/Math/Stochastic/Distribution/LaplaceDistribution.php b/Math/Stochastic/Distribution/LaplaceDistribution.php index 6d10f6fd3..13e5eb97b 100644 --- a/Math/Stochastic/Distribution/LaplaceDistribution.php +++ b/Math/Stochastic/Distribution/LaplaceDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/LogDistribution.php b/Math/Stochastic/Distribution/LogDistribution.php index 1fba9e1e0..ac8167531 100644 --- a/Math/Stochastic/Distribution/LogDistribution.php +++ b/Math/Stochastic/Distribution/LogDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class LogDistribution diff --git a/Math/Stochastic/Distribution/LogNormalDistribution.php b/Math/Stochastic/Distribution/LogNormalDistribution.php index adabd5e90..da3182a88 100644 --- a/Math/Stochastic/Distribution/LogNormalDistribution.php +++ b/Math/Stochastic/Distribution/LogNormalDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class LogNormalDistribution diff --git a/Math/Stochastic/Distribution/LogisticDistribution.php b/Math/Stochastic/Distribution/LogisticDistribution.php index fbea8751c..ae0c8a3ec 100644 --- a/Math/Stochastic/Distribution/LogisticDistribution.php +++ b/Math/Stochastic/Distribution/LogisticDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class LogisticDistribution diff --git a/Math/Stochastic/Distribution/NormalDistribution.php b/Math/Stochastic/Distribution/NormalDistribution.php index 592be1338..ce3906fbc 100644 --- a/Math/Stochastic/Distribution/NormalDistribution.php +++ b/Math/Stochastic/Distribution/NormalDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/ParetoDistribution.php b/Math/Stochastic/Distribution/ParetoDistribution.php index f6695cee9..7adebdcf8 100644 --- a/Math/Stochastic/Distribution/ParetoDistribution.php +++ b/Math/Stochastic/Distribution/ParetoDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class ParetoDistribution diff --git a/Math/Stochastic/Distribution/PoissonDistribution.php b/Math/Stochastic/Distribution/PoissonDistribution.php index 849c5b425..f78fe2ef0 100644 --- a/Math/Stochastic/Distribution/PoissonDistribution.php +++ b/Math/Stochastic/Distribution/PoissonDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/TDistribution.php b/Math/Stochastic/Distribution/TDistribution.php index 3595c0a54..7ea719aa4 100644 --- a/Math/Stochastic/Distribution/TDistribution.php +++ b/Math/Stochastic/Distribution/TDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class TDistribution diff --git a/Math/Stochastic/Distribution/UniformDistributionContinuous.php b/Math/Stochastic/Distribution/UniformDistributionContinuous.php index dcd5a19ed..d90fa9647 100644 --- a/Math/Stochastic/Distribution/UniformDistributionContinuous.php +++ b/Math/Stochastic/Distribution/UniformDistributionContinuous.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php index f582261a4..bc67b5545 100644 --- a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php +++ b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/WeibullDistribution.php b/Math/Stochastic/Distribution/WeibullDistribution.php index f5bf8adb2..8c0b93c3f 100644 --- a/Math/Stochastic/Distribution/WeibullDistribution.php +++ b/Math/Stochastic/Distribution/WeibullDistribution.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; class WeibullDistribution diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index d721e3d68..bfeaa70bf 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message; use phpOMS\DataStorage\Cookie\CookieJar; diff --git a/Message/Http/BrowserType.php b/Message/Http/BrowserType.php index 9094fbb86..3180361e1 100644 --- a/Message/Http/BrowserType.php +++ b/Message/Http/BrowserType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Http; use phpOMS\Datatypes\Enum; diff --git a/Message/Http/Header.php b/Message/Http/Header.php index ceddf9d3f..76c76a420 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Http; use phpOMS\Message\HeaderAbstract; diff --git a/Message/Http/OSType.php b/Message/Http/OSType.php index 0bc49ac24..40746d53d 100644 --- a/Message/Http/OSType.php +++ b/Message/Http/OSType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Http; use phpOMS\Datatypes\Enum; diff --git a/Message/Http/Request.php b/Message/Http/Request.php index fd6c871fe..96c886cd4 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Http; use phpOMS\Localization\Localization; diff --git a/Message/Http/RequestMethod.php b/Message/Http/RequestMethod.php index d92b2d9b7..a4dc52bf5 100644 --- a/Message/Http/RequestMethod.php +++ b/Message/Http/RequestMethod.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Http; use phpOMS\Datatypes\Enum; diff --git a/Message/Http/RequestStatus.php b/Message/Http/RequestStatus.php index 893b2f3e8..e440da632 100644 --- a/Message/Http/RequestStatus.php +++ b/Message/Http/RequestStatus.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Http; use phpOMS\Datatypes\Enum; diff --git a/Message/Http/Response.php b/Message/Http/Response.php index 09bfee498..a2726cef6 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Http; use phpOMS\Contract\RenderableInterface; diff --git a/Message/Http/Rest.php b/Message/Http/Rest.php index da871731c..a910f6e2c 100644 --- a/Message/Http/Rest.php +++ b/Message/Http/Rest.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Http; /** diff --git a/Message/Mail/Imap.php b/Message/Mail/Imap.php index daf32b333..072d91f13 100644 --- a/Message/Mail/Imap.php +++ b/Message/Mail/Imap.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Mail; /** diff --git a/Message/Mail/Mail.php b/Message/Mail/Mail.php index f5d6f3d20..468a737a1 100644 --- a/Message/Mail/Mail.php +++ b/Message/Mail/Mail.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Mail; /** diff --git a/Message/Mail/MailType.php b/Message/Mail/MailType.php index 5495c5bf2..842d49c1d 100644 --- a/Message/Mail/MailType.php +++ b/Message/Mail/MailType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message\Mail; use phpOMS\Datatypes\Enum; diff --git a/Message/Mail/OAuth.php b/Message/Mail/OAuth.php index f072627bc..12c0ee75a 100644 --- a/Message/Mail/OAuth.php +++ b/Message/Mail/OAuth.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Message\Mail; class OAuth diff --git a/Message/Mail/Pop3.php b/Message/Mail/Pop3.php index 8b566ba96..187512318 100644 --- a/Message/Mail/Pop3.php +++ b/Message/Mail/Pop3.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Message\Mail; class Pop3 diff --git a/Message/Mail/Smtp.php b/Message/Mail/Smtp.php index b3cb599d8..15b154eae 100644 --- a/Message/Mail/Smtp.php +++ b/Message/Mail/Smtp.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Message\Mail; class Smtp diff --git a/Message/MessageInterface.php b/Message/MessageInterface.php index f6c3d6fdd..67e90aa70 100644 --- a/Message/MessageInterface.php +++ b/Message/MessageInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message; /** diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 336666711..f7a40b6e4 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message; use phpOMS\Datatypes\Exception\InvalidEnumValue; diff --git a/Message/RequestSource.php b/Message/RequestSource.php index 8697a98be..e0afe2681 100644 --- a/Message/RequestSource.php +++ b/Message/RequestSource.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message; use phpOMS\Datatypes\Enum; diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index df75d2d62..8b0ed56b4 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message; use phpOMS\Localization\Localization; diff --git a/Message/ResponseType.php b/Message/ResponseType.php index b7677261a..d1091b6dc 100644 --- a/Message/ResponseType.php +++ b/Message/ResponseType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message; use phpOMS\Datatypes\Enum; diff --git a/Message/Socket/Request.php b/Message/Socket/Request.php index 2777221ec..6b20298d4 100644 --- a/Message/Socket/Request.php +++ b/Message/Socket/Request.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Message\Socket; class Request diff --git a/Message/Socket/Response.php b/Message/Socket/Response.php index a79128250..bd0dc5035 100644 --- a/Message/Socket/Response.php +++ b/Message/Socket/Response.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Message\Socket; class Response diff --git a/Message/UploadedFileInterface.php b/Message/UploadedFileInterface.php index 18da0e893..2286e37c1 100644 --- a/Message/UploadedFileInterface.php +++ b/Message/UploadedFileInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Message; /** diff --git a/Model/Html/Head.php b/Model/Html/Head.php index a0c4f11bb..89362fece 100644 --- a/Model/Html/Head.php +++ b/Model/Html/Head.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Model\Html; use phpOMS\Asset\AssetType; diff --git a/Model/Html/Meta.php b/Model/Html/Meta.php index d6201230b..7e2f236f7 100644 --- a/Model/Html/Meta.php +++ b/Model/Html/Meta.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Model\Html; use phpOMS\Contract\RenderableInterface; diff --git a/Module/ActivateAbstract.php b/Module/ActivateAbstract.php index e480b095b..1a7497526 100644 --- a/Module/ActivateAbstract.php +++ b/Module/ActivateAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; use phpOMS\DataStorage\Database\DatabaseType; diff --git a/Module/ConsoleInterface.php b/Module/ConsoleInterface.php index fa9a98457..dc9aca668 100644 --- a/Module/ConsoleInterface.php +++ b/Module/ConsoleInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; /** diff --git a/Module/DeactivateAbstract.php b/Module/DeactivateAbstract.php index 8f9a9c9fd..a8379543f 100644 --- a/Module/DeactivateAbstract.php +++ b/Module/DeactivateAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; use phpOMS\DataStorage\Database\DatabaseType; diff --git a/Module/InfoManager.php b/Module/InfoManager.php index a55ded6e7..55159ebc9 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; use phpOMS\System\File\PathException; diff --git a/Module/InstallerAbstract.php b/Module/InstallerAbstract.php index dcd68e3ee..ac1ca03e9 100644 --- a/Module/InstallerAbstract.php +++ b/Module/InstallerAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; use phpOMS\DataStorage\Database\DatabaseType; diff --git a/Module/ModuleAbstract.php b/Module/ModuleAbstract.php index ca8a6c398..9dab3c781 100644 --- a/Module/ModuleAbstract.php +++ b/Module/ModuleAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; /** diff --git a/Module/ModuleFactory.php b/Module/ModuleFactory.php index b5dd52e87..62f60a550 100644 --- a/Module/ModuleFactory.php +++ b/Module/ModuleFactory.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; use phpOMS\ApplicationAbstract; diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index e538c63f0..dbe20e1e1 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; use phpOMS\ApplicationAbstract; diff --git a/Module/NullModule.php b/Module/NullModule.php index 325c7025d..fa1054b03 100644 --- a/Module/NullModule.php +++ b/Module/NullModule.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; /** diff --git a/Module/SocketInterface.php b/Module/SocketInterface.php index 583144705..872fefbac 100644 --- a/Module/SocketInterface.php +++ b/Module/SocketInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; /** diff --git a/Module/UninstallAbstract.php b/Module/UninstallAbstract.php index 09014daf7..571f3803b 100644 --- a/Module/UninstallAbstract.php +++ b/Module/UninstallAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Module/UpdateAbstract.php b/Module/UpdateAbstract.php index 52430b348..6fd6491dc 100644 --- a/Module/UpdateAbstract.php +++ b/Module/UpdateAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Module/WebInterface.php b/Module/WebInterface.php index 6dcccba3e..16e5ba4f8 100644 --- a/Module/WebInterface.php +++ b/Module/WebInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Module; /** diff --git a/Pattern/Mediator.php b/Pattern/Mediator.php index 62547f146..13fb0392d 100644 --- a/Pattern/Mediator.php +++ b/Pattern/Mediator.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Pattern; /** diff --git a/Pattern/Multition.php b/Pattern/Multition.php index 85451b922..9f9ea99eb 100644 --- a/Pattern/Multition.php +++ b/Pattern/Multition.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Pattern; /** diff --git a/Pattern/Observer.php b/Pattern/Observer.php index 855e9639c..635ff0513 100644 --- a/Pattern/Observer.php +++ b/Pattern/Observer.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Pattern; diff --git a/Pattern/Singleton.php b/Pattern/Singleton.php index c3605650e..2ef013943 100644 --- a/Pattern/Singleton.php +++ b/Pattern/Singleton.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Pattern; /** diff --git a/Pattern/Subject.php b/Pattern/Subject.php index 63ccf358c..1054beac4 100644 --- a/Pattern/Subject.php +++ b/Pattern/Subject.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Pattern; diff --git a/Router/RouteVerb.php b/Router/RouteVerb.php index 12883c8f5..902836360 100644 --- a/Router/RouteVerb.php +++ b/Router/RouteVerb.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Router; use phpOMS\Datatypes\Enum; diff --git a/Router/Router.php b/Router/Router.php index a85dc2d20..2a05cca32 100644 --- a/Router/Router.php +++ b/Router/Router.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Router; use phpOMS\Message\RequestAbstract; diff --git a/Security/Encryption/Encryption.php b/Security/Encryption/Encryption.php index 86b266d26..e41e5f249 100644 --- a/Security/Encryption/Encryption.php +++ b/Security/Encryption/Encryption.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Security\Encryption; /** diff --git a/Socket/Client/Client.php b/Socket/Client/Client.php index b09b9849f..91a2dc651 100644 --- a/Socket/Client/Client.php +++ b/Socket/Client/Client.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket\Client; use phpOMS\Socket\CommandManager; diff --git a/Socket/Client/ClientConnection.php b/Socket/Client/ClientConnection.php index e598f88d9..4f98812f5 100644 --- a/Socket/Client/ClientConnection.php +++ b/Socket/Client/ClientConnection.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket\Client; /** diff --git a/Socket/Client/NullClientConnection.php b/Socket/Client/NullClientConnection.php index f529478fc..b098375cd 100644 --- a/Socket/Client/NullClientConnection.php +++ b/Socket/Client/NullClientConnection.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket\Client; /** diff --git a/Socket/CommandManager.php b/Socket/CommandManager.php index bf434fcde..fe1fdd729 100644 --- a/Socket/CommandManager.php +++ b/Socket/CommandManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket; /** diff --git a/Socket/Packets/Header.php b/Socket/Packets/Header.php index a1dd08efa..0202493ce 100644 --- a/Socket/Packets/Header.php +++ b/Socket/Packets/Header.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket\Packets; /** diff --git a/Socket/Packets/PacketAbstract.php b/Socket/Packets/PacketAbstract.php index 45f4e31dc..f54316589 100644 --- a/Socket/Packets/PacketAbstract.php +++ b/Socket/Packets/PacketAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket\Packets; diff --git a/Socket/Packets/PacketManager.php b/Socket/Packets/PacketManager.php index a144b11fe..799eefd31 100644 --- a/Socket/Packets/PacketManager.php +++ b/Socket/Packets/PacketManager.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket\Packets; use phpOMS\Socket\CommandManager; diff --git a/Socket/Packets/PacketType.php b/Socket/Packets/PacketType.php index 2b38213f7..7a9f510a0 100644 --- a/Socket/Packets/PacketType.php +++ b/Socket/Packets/PacketType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket\Packets; use phpOMS\Datatypes\Enum; diff --git a/Socket/Server/ClientManager.php b/Socket/Server/ClientManager.php index e579c4e81..cacf08c87 100644 --- a/Socket/Server/ClientManager.php +++ b/Socket/Server/ClientManager.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Socket\Server; diff --git a/Socket/Server/Server.php b/Socket/Server/Server.php index ee664e774..bfd115a75 100644 --- a/Socket/Server/Server.php +++ b/Socket/Server/Server.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket\Server; use phpOMS\Socket\Client\ClientConnection; diff --git a/Socket/SocketAbstract.php b/Socket/SocketAbstract.php index 61a0db048..70d837547 100644 --- a/Socket/SocketAbstract.php +++ b/Socket/SocketAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket; /** diff --git a/Socket/SocketInterface.php b/Socket/SocketInterface.php index 7791feb9c..eccc9d640 100644 --- a/Socket/SocketInterface.php +++ b/Socket/SocketInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket; /** diff --git a/Socket/SocketType.php b/Socket/SocketType.php index 4dcf52104..4a2b07640 100644 --- a/Socket/SocketType.php +++ b/Socket/SocketType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Socket; use phpOMS\Datatypes\Enum; diff --git a/Stdlib/Collection/Collection.php b/Stdlib/Collection/Collection.php index e4869ea5b..8b65563fe 100644 --- a/Stdlib/Collection/Collection.php +++ b/Stdlib/Collection/Collection.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Collection; use phpOMS\Utils\ArrayUtils; diff --git a/Stdlib/Graph/BinaryTree.php b/Stdlib/Graph/BinaryTree.php index 3ff3c2bca..b82df944a 100644 --- a/Stdlib/Graph/BinaryTree.php +++ b/Stdlib/Graph/BinaryTree.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Graph; /** diff --git a/Stdlib/Graph/Edge.php b/Stdlib/Graph/Edge.php index d5465b4e4..279d722b8 100644 --- a/Stdlib/Graph/Edge.php +++ b/Stdlib/Graph/Edge.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Graph; /** diff --git a/Stdlib/Graph/Graph.php b/Stdlib/Graph/Graph.php index b1903e86f..1cb6b0f54 100644 --- a/Stdlib/Graph/Graph.php +++ b/Stdlib/Graph/Graph.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Graph; /** diff --git a/Stdlib/Graph/Node.php b/Stdlib/Graph/Node.php index 1a937b89b..7d097db7f 100644 --- a/Stdlib/Graph/Node.php +++ b/Stdlib/Graph/Node.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Graph; /** diff --git a/Stdlib/Graph/Tree.php b/Stdlib/Graph/Tree.php index 493f0576b..7654b3f72 100644 --- a/Stdlib/Graph/Tree.php +++ b/Stdlib/Graph/Tree.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Graph; /** diff --git a/Stdlib/Map/KeyType.php b/Stdlib/Map/KeyType.php index 546706ea0..1e51e11f9 100644 --- a/Stdlib/Map/KeyType.php +++ b/Stdlib/Map/KeyType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Map; use phpOMS\Datatypes\Enum; diff --git a/Stdlib/Map/MultiMap.php b/Stdlib/Map/MultiMap.php index a0c6332b1..307a422cb 100644 --- a/Stdlib/Map/MultiMap.php +++ b/Stdlib/Map/MultiMap.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Map; use phpOMS\Utils\Permutation; diff --git a/Stdlib/Map/OrderType.php b/Stdlib/Map/OrderType.php index fb0628b03..3155a6309 100644 --- a/Stdlib/Map/OrderType.php +++ b/Stdlib/Map/OrderType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Map; use phpOMS\Datatypes\Enum; diff --git a/Stdlib/Queue/PriorityMode.php b/Stdlib/Queue/PriorityMode.php index 074c8ee27..f1b28208f 100644 --- a/Stdlib/Queue/PriorityMode.php +++ b/Stdlib/Queue/PriorityMode.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Queue; use phpOMS\Datatypes\Enum; diff --git a/Stdlib/Queue/PriorityQueue.php b/Stdlib/Queue/PriorityQueue.php index 942831918..885ffbc81 100644 --- a/Stdlib/Queue/PriorityQueue.php +++ b/Stdlib/Queue/PriorityQueue.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Stdlib\Queue; /** diff --git a/System/File/ContainerInterface.php b/System/File/ContainerInterface.php index 970411c6a..c8c746e90 100644 --- a/System/File/ContainerInterface.php +++ b/System/File/ContainerInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File; /** diff --git a/System/File/ContentPutMode.php b/System/File/ContentPutMode.php index ffd411a64..f3241131e 100644 --- a/System/File/ContentPutMode.php +++ b/System/File/ContentPutMode.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File; use phpOMS\Datatypes\Enum; diff --git a/System/File/DirectoryInterface.php b/System/File/DirectoryInterface.php index 2bc4b7e9b..ebecee064 100644 --- a/System/File/DirectoryInterface.php +++ b/System/File/DirectoryInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File; /** diff --git a/System/File/FileInterface.php b/System/File/FileInterface.php index 9bbe535fe..c234395ac 100644 --- a/System/File/FileInterface.php +++ b/System/File/FileInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File; /** diff --git a/System/File/Ftp/Directory.php b/System/File/Ftp/Directory.php index 05077cb55..6780f4a50 100644 --- a/System/File/Ftp/Directory.php +++ b/System/File/Ftp/Directory.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File\Ftp; use phpOMS\System\File\ContainerInterface; diff --git a/System/File/Ftp/File.php b/System/File/Ftp/File.php index 6563304e6..4e2341ade 100644 --- a/System/File/Ftp/File.php +++ b/System/File/Ftp/File.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File\Ftp; use phpOMS\System\File\ContainerInterface; diff --git a/System/File/Ftp/FtpStorage.php b/System/File/Ftp/FtpStorage.php index 8f29f803d..6b7d11950 100644 --- a/System/File/Ftp/FtpStorage.php +++ b/System/File/Ftp/FtpStorage.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File\Ftp; use phpOMS\System\File\ContainerInterface; use phpOMS\System\File\StorageAbstract; diff --git a/System/File/Local/Directory.php b/System/File/Local/Directory.php index 19e41debe..2ea209d34 100644 --- a/System/File/Local/Directory.php +++ b/System/File/Local/Directory.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File\Local; use phpOMS\System\File\ContainerInterface; diff --git a/System/File/Local/File.php b/System/File/Local/File.php index 7f7fd8e3c..430562496 100644 --- a/System/File/Local/File.php +++ b/System/File/Local/File.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File\Local; use phpOMS\System\File\ContainerInterface; diff --git a/System/File/Local/FileAbstract.php b/System/File/Local/FileAbstract.php index 7c8702f06..c6311fda1 100644 --- a/System/File/Local/FileAbstract.php +++ b/System/File/Local/FileAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File\Local; use phpOMS\System\File\ContainerInterface; diff --git a/System/File/Local/LocalStorage.php b/System/File/Local/LocalStorage.php index de7a5fcaf..52cf714cb 100644 --- a/System/File/Local/LocalStorage.php +++ b/System/File/Local/LocalStorage.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File\Local; use phpOMS\System\File\ContainerInterface; use phpOMS\System\File\StorageAbstract; diff --git a/System/File/PathException.php b/System/File/PathException.php index b21aadbad..db9745f60 100644 --- a/System/File/PathException.php +++ b/System/File/PathException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File; /** diff --git a/System/File/PermissionException.php b/System/File/PermissionException.php index dfc68de31..599b9bebd 100644 --- a/System/File/PermissionException.php +++ b/System/File/PermissionException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File; /** diff --git a/System/File/Storage.php b/System/File/Storage.php index 1b5b30338..33a434045 100644 --- a/System/File/Storage.php +++ b/System/File/Storage.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File; /** diff --git a/System/File/StorageAbstract.php b/System/File/StorageAbstract.php index 68f4ec76a..cfa447d7e 100644 --- a/System/File/StorageAbstract.php +++ b/System/File/StorageAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System\File; /** diff --git a/System/MimeType.php b/System/MimeType.php index 11a83ec66..bcbfa6ce7 100644 --- a/System/MimeType.php +++ b/System/MimeType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System; use phpOMS\Datatypes\Enum; diff --git a/System/OperatingSystem.php b/System/OperatingSystem.php index c0894c459..e0293b5c8 100644 --- a/System/OperatingSystem.php +++ b/System/OperatingSystem.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System; /** diff --git a/System/SystemType.php b/System/SystemType.php index 03f724337..4cd863a59 100644 --- a/System/SystemType.php +++ b/System/SystemType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System; use phpOMS\Datatypes\Enum; diff --git a/System/SystemUtils.php b/System/SystemUtils.php index 91a59782e..f05f8f60f 100644 --- a/System/SystemUtils.php +++ b/System/SystemUtils.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\System; /** diff --git a/UnhandledHandler.php b/UnhandledHandler.php index 0d6d28961..9a4dddda9 100644 --- a/UnhandledHandler.php +++ b/UnhandledHandler.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS; use phpOMS\Log\FileLogger; diff --git a/Uri/Http.php b/Uri/Http.php index 461bec016..38cac04a4 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Uri; use phpOMS\Utils\StringUtils; diff --git a/Uri/InvalidUriException.php b/Uri/InvalidUriException.php index 545b35d45..3b12131b8 100644 --- a/Uri/InvalidUriException.php +++ b/Uri/InvalidUriException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Uri; /** diff --git a/Uri/UriFactory.php b/Uri/UriFactory.php index 74c532aa0..033f53641 100644 --- a/Uri/UriFactory.php +++ b/Uri/UriFactory.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Uri; /** diff --git a/Uri/UriInterface.php b/Uri/UriInterface.php index f4dd30c86..2a6b6d960 100644 --- a/Uri/UriInterface.php +++ b/Uri/UriInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Uri; /** diff --git a/Uri/UriScheme.php b/Uri/UriScheme.php index 4b5ce7ff2..e9d19850a 100644 --- a/Uri/UriScheme.php +++ b/Uri/UriScheme.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Uri; use phpOMS\Datatypes\Enum; diff --git a/Utils/ArrayUtils.php b/Utils/ArrayUtils.php index e34fb07ff..f5b2790fa 100644 --- a/Utils/ArrayUtils.php +++ b/Utils/ArrayUtils.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils; /** diff --git a/Utils/Barcode/Aztec.php b/Utils/Barcode/Aztec.php index 454d0a2aa..c8b578772 100644 --- a/Utils/Barcode/Aztec.php +++ b/Utils/Barcode/Aztec.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\Barcode; diff --git a/Utils/Barcode/C128Abstract.php b/Utils/Barcode/C128Abstract.php index f6802273f..0da7e9b3a 100644 --- a/Utils/Barcode/C128Abstract.php +++ b/Utils/Barcode/C128Abstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Barcode; use phpOMS\Datatypes\Exception\InvalidEnumValue; diff --git a/Utils/Barcode/C128a.php b/Utils/Barcode/C128a.php index 7b47d12da..877a4b9a6 100644 --- a/Utils/Barcode/C128a.php +++ b/Utils/Barcode/C128a.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Barcode; /** diff --git a/Utils/Barcode/C128b.php b/Utils/Barcode/C128b.php index 08291bad1..4aa9ff616 100644 --- a/Utils/Barcode/C128b.php +++ b/Utils/Barcode/C128b.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Barcode; /** diff --git a/Utils/Barcode/C128c.php b/Utils/Barcode/C128c.php index 1b966f062..b66500bec 100644 --- a/Utils/Barcode/C128c.php +++ b/Utils/Barcode/C128c.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\Barcode; diff --git a/Utils/Barcode/C25.php b/Utils/Barcode/C25.php index 2054f7ca6..c7218f887 100644 --- a/Utils/Barcode/C25.php +++ b/Utils/Barcode/C25.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\Barcode; diff --git a/Utils/Barcode/C39.php b/Utils/Barcode/C39.php index 4080dee39..0629cde18 100644 --- a/Utils/Barcode/C39.php +++ b/Utils/Barcode/C39.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\Barcode; diff --git a/Utils/Barcode/Codebar.php b/Utils/Barcode/Codebar.php index ff7cbc790..2a4a37bb5 100644 --- a/Utils/Barcode/Codebar.php +++ b/Utils/Barcode/Codebar.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\Barcode; diff --git a/Utils/Barcode/Datamatrix.php b/Utils/Barcode/Datamatrix.php index f64d1e87c..78984bd58 100644 --- a/Utils/Barcode/Datamatrix.php +++ b/Utils/Barcode/Datamatrix.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\Barcode; diff --git a/Utils/Barcode/HIBCC.php b/Utils/Barcode/HIBCC.php index 9cab6766a..1dd19af24 100644 --- a/Utils/Barcode/HIBCC.php +++ b/Utils/Barcode/HIBCC.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\Barcode; diff --git a/Utils/Barcode/OrientationType.php b/Utils/Barcode/OrientationType.php index f485cc929..9c3ae56f4 100644 --- a/Utils/Barcode/OrientationType.php +++ b/Utils/Barcode/OrientationType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Barcode; use phpOMS\Datatypes\Enum; diff --git a/Utils/Barcode/QR.php b/Utils/Barcode/QR.php index 53cefdd8d..537277a10 100644 --- a/Utils/Barcode/QR.php +++ b/Utils/Barcode/QR.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\Barcode; diff --git a/Utils/Color.php b/Utils/Color.php index 0013fa26a..84be837b3 100644 --- a/Utils/Color.php +++ b/Utils/Color.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils; /** diff --git a/Utils/Compression/CompressionInterface.php b/Utils/Compression/CompressionInterface.php index de7278783..b2acceefb 100644 --- a/Utils/Compression/CompressionInterface.php +++ b/Utils/Compression/CompressionInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Compression; /** diff --git a/Utils/Compression/LZW.php b/Utils/Compression/LZW.php index 495df083b..2f0e3bcda 100644 --- a/Utils/Compression/LZW.php +++ b/Utils/Compression/LZW.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Compression; /** diff --git a/Utils/Converter/AngleType.php b/Utils/Converter/AngleType.php index 5a7f20454..a7436f2d4 100644 --- a/Utils/Converter/AngleType.php +++ b/Utils/Converter/AngleType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/AreaType.php b/Utils/Converter/AreaType.php index c6efa554a..f36286998 100644 --- a/Utils/Converter/AreaType.php +++ b/Utils/Converter/AreaType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/Currency.php b/Utils/Converter/Currency.php index 5b5a6a5de..f4d1e6128 100644 --- a/Utils/Converter/Currency.php +++ b/Utils/Converter/Currency.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; /** diff --git a/Utils/Converter/EnergyPowerType.php b/Utils/Converter/EnergyPowerType.php index fc051032e..db21c3c8c 100644 --- a/Utils/Converter/EnergyPowerType.php +++ b/Utils/Converter/EnergyPowerType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/File.php b/Utils/Converter/File.php index b64608a6b..bb757d635 100644 --- a/Utils/Converter/File.php +++ b/Utils/Converter/File.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; /** diff --git a/Utils/Converter/FileSizeType.php b/Utils/Converter/FileSizeType.php index 0dfe45b7b..5fa2ee08d 100644 --- a/Utils/Converter/FileSizeType.php +++ b/Utils/Converter/FileSizeType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/Ip.php b/Utils/Converter/Ip.php index c68eba72b..a6d959c96 100644 --- a/Utils/Converter/Ip.php +++ b/Utils/Converter/Ip.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; /** diff --git a/Utils/Converter/LengthType.php b/Utils/Converter/LengthType.php index 165285222..a58b23b22 100644 --- a/Utils/Converter/LengthType.php +++ b/Utils/Converter/LengthType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/Measurement.php b/Utils/Converter/Measurement.php index fb5cbef74..93ee74a2a 100644 --- a/Utils/Converter/Measurement.php +++ b/Utils/Converter/Measurement.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; /** diff --git a/Utils/Converter/Numeric.php b/Utils/Converter/Numeric.php index cc8836ca9..c61b5d006 100644 --- a/Utils/Converter/Numeric.php +++ b/Utils/Converter/Numeric.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; /** diff --git a/Utils/Converter/PressureType.php b/Utils/Converter/PressureType.php index 41a29246e..fb19f8835 100644 --- a/Utils/Converter/PressureType.php +++ b/Utils/Converter/PressureType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/SpeedType.php b/Utils/Converter/SpeedType.php index 94830408d..d2cc42457 100644 --- a/Utils/Converter/SpeedType.php +++ b/Utils/Converter/SpeedType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/TemperatureType.php b/Utils/Converter/TemperatureType.php index c0cbb8f10..3d54b765e 100644 --- a/Utils/Converter/TemperatureType.php +++ b/Utils/Converter/TemperatureType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/TimeType.php b/Utils/Converter/TimeType.php index b1c6d9ed2..0d0d1dba1 100644 --- a/Utils/Converter/TimeType.php +++ b/Utils/Converter/TimeType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/VolumeType.php b/Utils/Converter/VolumeType.php index 1357dab5b..7d5513c98 100644 --- a/Utils/Converter/VolumeType.php +++ b/Utils/Converter/VolumeType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Converter/WeightType.php b/Utils/Converter/WeightType.php index a194c2438..927f0a109 100644 --- a/Utils/Converter/WeightType.php +++ b/Utils/Converter/WeightType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Converter; use phpOMS\Datatypes\Enum; diff --git a/Utils/Encoding/Caesar.php b/Utils/Encoding/Caesar.php index 65a8354ba..b88064384 100644 --- a/Utils/Encoding/Caesar.php +++ b/Utils/Encoding/Caesar.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Encoding; /** diff --git a/Utils/Encoding/EncodingInterface.php b/Utils/Encoding/EncodingInterface.php index c92989e08..1471f0c9b 100644 --- a/Utils/Encoding/EncodingInterface.php +++ b/Utils/Encoding/EncodingInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Encoding; /** diff --git a/Utils/Encoding/Gray.php b/Utils/Encoding/Gray.php index f8dd3ee6a..121c59090 100644 --- a/Utils/Encoding/Gray.php +++ b/Utils/Encoding/Gray.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Encoding; /** diff --git a/Utils/Encoding/Huffman/Dictionary.php b/Utils/Encoding/Huffman/Dictionary.php index f82e7871c..054a1dfad 100644 --- a/Utils/Encoding/Huffman/Dictionary.php +++ b/Utils/Encoding/Huffman/Dictionary.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Encoding\Huffman; /** diff --git a/Utils/Encoding/Huffman/Huffman.php b/Utils/Encoding/Huffman/Huffman.php index 742c4943d..b2185abb0 100644 --- a/Utils/Encoding/Huffman/Huffman.php +++ b/Utils/Encoding/Huffman/Huffman.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Encoding\Huffman; /** diff --git a/Utils/Encoding/XorEncoding.php b/Utils/Encoding/XorEncoding.php index eddfa6a4a..7c84d7774 100644 --- a/Utils/Encoding/XorEncoding.php +++ b/Utils/Encoding/XorEncoding.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Encoding; /** diff --git a/Utils/Excel/Excel.php b/Utils/Excel/Excel.php index a8ffac93d..bd4a4d5c4 100644 --- a/Utils/Excel/Excel.php +++ b/Utils/Excel/Excel.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Excel; /** @noinspection PhpIncludeInspection */ diff --git a/Utils/Git/Author.php b/Utils/Git/Author.php index 7886403c0..a9b030ce3 100644 --- a/Utils/Git/Author.php +++ b/Utils/Git/Author.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Git; /** diff --git a/Utils/Git/Branch.php b/Utils/Git/Branch.php index e8ad243d4..a075eece7 100644 --- a/Utils/Git/Branch.php +++ b/Utils/Git/Branch.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Git; /** diff --git a/Utils/Git/Commit.php b/Utils/Git/Commit.php index 8f9777ec8..180c53cb5 100644 --- a/Utils/Git/Commit.php +++ b/Utils/Git/Commit.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Git; /** diff --git a/Utils/Git/Git.php b/Utils/Git/Git.php index 9c0d97fc9..1fa318a29 100644 --- a/Utils/Git/Git.php +++ b/Utils/Git/Git.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Git; use phpOMS\System\File\PathException; diff --git a/Utils/Git/Repository.php b/Utils/Git/Repository.php index 33545736e..6457f8c02 100644 --- a/Utils/Git/Repository.php +++ b/Utils/Git/Repository.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Git; use phpOMS\System\File\PathException; diff --git a/Utils/Git/Tag.php b/Utils/Git/Tag.php index 7457d3831..60a22d862 100644 --- a/Utils/Git/Tag.php +++ b/Utils/Git/Tag.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Git; /** diff --git a/Utils/IO/Csv/CsvDatabaseMapper.php b/Utils/IO/Csv/CsvDatabaseMapper.php index 1f61b8799..44db78a49 100644 --- a/Utils/IO/Csv/CsvDatabaseMapper.php +++ b/Utils/IO/Csv/CsvDatabaseMapper.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO\Csv; use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; diff --git a/Utils/IO/Csv/CsvInterface.php b/Utils/IO/Csv/CsvInterface.php index aa6d47a32..63ae0ddf9 100644 --- a/Utils/IO/Csv/CsvInterface.php +++ b/Utils/IO/Csv/CsvInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO\Csv { /** diff --git a/Utils/IO/Csv/CsvSettings.php b/Utils/IO/Csv/CsvSettings.php index 6b54a2a30..d65af6511 100644 --- a/Utils/IO/Csv/CsvSettings.php +++ b/Utils/IO/Csv/CsvSettings.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO\Csv; /** diff --git a/Utils/IO/Excel/ExcelDatabaseMapper.php b/Utils/IO/Excel/ExcelDatabaseMapper.php index 49887ee90..558d78033 100644 --- a/Utils/IO/Excel/ExcelDatabaseMapper.php +++ b/Utils/IO/Excel/ExcelDatabaseMapper.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO\Excel; use phpOMS\Utils\IO\IODatabaseMapper; diff --git a/Utils/IO/Excel/ExcelInterface.php b/Utils/IO/Excel/ExcelInterface.php index 1796def26..fed8c698d 100644 --- a/Utils/IO/Excel/ExcelInterface.php +++ b/Utils/IO/Excel/ExcelInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO\Excel; /** diff --git a/Utils/IO/ExchangeInterface.php b/Utils/IO/ExchangeInterface.php index 6dfe1ca4a..7e1702d38 100644 --- a/Utils/IO/ExchangeInterface.php +++ b/Utils/IO/ExchangeInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO; use phpOMS\Utils\IO\Csv\CsvInterface; diff --git a/Utils/IO/IODatabaseMapper.php b/Utils/IO/IODatabaseMapper.php index 6d4480c05..f37e9b6d9 100644 --- a/Utils/IO/IODatabaseMapper.php +++ b/Utils/IO/IODatabaseMapper.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO; interface IODatabaseMapper diff --git a/Utils/IO/Json/InvalidJsonException.php b/Utils/IO/Json/InvalidJsonException.php index 74eb249ac..0de462932 100644 --- a/Utils/IO/Json/InvalidJsonException.php +++ b/Utils/IO/Json/InvalidJsonException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO\Json; /** diff --git a/Utils/IO/Json/JsonInterface.php b/Utils/IO/Json/JsonInterface.php index 138ee5663..566d7a12e 100644 --- a/Utils/IO/Json/JsonInterface.php +++ b/Utils/IO/Json/JsonInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO\Json; /** diff --git a/Utils/IO/Pdf/PdfInterface.php b/Utils/IO/Pdf/PdfInterface.php index 1be62f6a3..cec1a312f 100644 --- a/Utils/IO/Pdf/PdfInterface.php +++ b/Utils/IO/Pdf/PdfInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\IO\Pdf; /** diff --git a/Utils/IO/Zip/Zip.php b/Utils/IO/Zip/Zip.php index 8acba0165..c7ee52889 100644 --- a/Utils/IO/Zip/Zip.php +++ b/Utils/IO/Zip/Zip.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\IO\Zip; diff --git a/Utils/ImageUtils.php b/Utils/ImageUtils.php index 875d641f1..e772c4c5b 100644 --- a/Utils/ImageUtils.php +++ b/Utils/ImageUtils.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils; /** diff --git a/Utils/JobQueue/Job.php b/Utils/JobQueue/Job.php index 9dc5d5e68..6132be1d6 100644 --- a/Utils/JobQueue/Job.php +++ b/Utils/JobQueue/Job.php @@ -14,6 +14,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\JobQueue; /** diff --git a/Utils/JobQueue/JobQueue.php b/Utils/JobQueue/JobQueue.php index e3d84d24e..c7f11426a 100644 --- a/Utils/JobQueue/JobQueue.php +++ b/Utils/JobQueue/JobQueue.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\JobQueue; use phpOMS\Stdlib\Queue\PriorityQueue; diff --git a/Utils/JsonBuilder.php b/Utils/JsonBuilder.php index f6140c4df..b0a1e29f5 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils; /** diff --git a/Utils/PDF/Pdf.php b/Utils/PDF/Pdf.php index 61645c403..4eb73e4c7 100644 --- a/Utils/PDF/Pdf.php +++ b/Utils/PDF/Pdf.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\PDF; /** @noinspection PhpIncludeInspection */ diff --git a/Utils/Parser/LaTex/Expressions/Product.php b/Utils/Parser/LaTex/Expressions/Product.php index 3e0e01767..ce8743ba7 100644 --- a/Utils/Parser/LaTex/Expressions/Product.php +++ b/Utils/Parser/LaTex/Expressions/Product.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\LaTex\Expressions; class Product diff --git a/Utils/Parser/LaTex/Expressions/Sum.php b/Utils/Parser/LaTex/Expressions/Sum.php index df763a69e..4fe3616de 100644 --- a/Utils/Parser/LaTex/Expressions/Sum.php +++ b/Utils/Parser/LaTex/Expressions/Sum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\LaTex\Expressions; class Sum diff --git a/Utils/Parser/LaTex/Expressions/Trigonometry.php b/Utils/Parser/LaTex/Expressions/Trigonometry.php index 96435988a..3d28f89ac 100644 --- a/Utils/Parser/LaTex/Expressions/Trigonometry.php +++ b/Utils/Parser/LaTex/Expressions/Trigonometry.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\LaTex\Expressions; class Trigonometry diff --git a/Utils/Parser/LaTex/LaTexParser.php b/Utils/Parser/LaTex/LaTexParser.php index 22a3fc40e..4065a395a 100644 --- a/Utils/Parser/LaTex/LaTexParser.php +++ b/Utils/Parser/LaTex/LaTexParser.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\LaTex; class LaTexParser diff --git a/Utils/Parser/LaTex/Types/Interval.php b/Utils/Parser/LaTex/Types/Interval.php index 1b0195193..5ee143061 100644 --- a/Utils/Parser/LaTex/Types/Interval.php +++ b/Utils/Parser/LaTex/Types/Interval.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\LaTex\Types; class Interval diff --git a/Utils/Parser/LaTex/Types/MathFunction.php b/Utils/Parser/LaTex/Types/MathFunction.php index 4e733749c..214106437 100644 --- a/Utils/Parser/LaTex/Types/MathFunction.php +++ b/Utils/Parser/LaTex/Types/MathFunction.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\LaTex\Types; class MathFunction diff --git a/Utils/Parser/LaTex/Types/Variable.php b/Utils/Parser/LaTex/Types/Variable.php index 2a3d47d9d..a380564b9 100644 --- a/Utils/Parser/LaTex/Types/Variable.php +++ b/Utils/Parser/LaTex/Types/Variable.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\LaTex\Types; class Variable diff --git a/Utils/Parser/Markdown/Markdown.php b/Utils/Parser/Markdown/Markdown.php index 43ae7785a..a87da3829 100644 --- a/Utils/Parser/Markdown/Markdown.php +++ b/Utils/Parser/Markdown/Markdown.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\Markdown; /** diff --git a/Utils/Parser/Php/ArrayParser.php b/Utils/Parser/Php/ArrayParser.php index a004ff15c..b23b91db2 100644 --- a/Utils/Parser/Php/ArrayParser.php +++ b/Utils/Parser/Php/ArrayParser.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\Php; /** diff --git a/Utils/Parser/Php/ClassParser.php b/Utils/Parser/Php/ClassParser.php index 899bc3d01..f9c71e1c3 100644 --- a/Utils/Parser/Php/ClassParser.php +++ b/Utils/Parser/Php/ClassParser.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\Php; /** diff --git a/Utils/Parser/Php/ClassType.php b/Utils/Parser/Php/ClassType.php index e73f40667..0d9ad6b18 100644 --- a/Utils/Parser/Php/ClassType.php +++ b/Utils/Parser/Php/ClassType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\Php; use phpOMS\Datatypes\Enum; diff --git a/Utils/Parser/Php/FunctionParser.php b/Utils/Parser/Php/FunctionParser.php index 74774772c..18a96622b 100644 --- a/Utils/Parser/Php/FunctionParser.php +++ b/Utils/Parser/Php/FunctionParser.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\Php; /** diff --git a/Utils/Parser/Php/MemberParser.php b/Utils/Parser/Php/MemberParser.php index e2c8967e1..19f16be8e 100644 --- a/Utils/Parser/Php/MemberParser.php +++ b/Utils/Parser/Php/MemberParser.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\Php; /** diff --git a/Utils/Parser/Php/Visibility.php b/Utils/Parser/Php/Visibility.php index 8b5febc48..30582a54f 100644 --- a/Utils/Parser/Php/Visibility.php +++ b/Utils/Parser/Php/Visibility.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\Parser\Php; use phpOMS\Datatypes\Enum; diff --git a/Utils/Permutation.php b/Utils/Permutation.php index 01b19bc57..7da4cb9b3 100644 --- a/Utils/Permutation.php +++ b/Utils/Permutation.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils; /** diff --git a/Utils/RnG/Address.php b/Utils/RnG/Address.php index 481aabfef..fad29fc32 100644 --- a/Utils/RnG/Address.php +++ b/Utils/RnG/Address.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; class Address diff --git a/Utils/RnG/ArrayRandomize.php b/Utils/RnG/ArrayRandomize.php index 620d244b2..8d93b9d13 100644 --- a/Utils/RnG/ArrayRandomize.php +++ b/Utils/RnG/ArrayRandomize.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\RnG; diff --git a/Utils/RnG/City.php b/Utils/RnG/City.php index 9c110efbc..eccf12fdd 100644 --- a/Utils/RnG/City.php +++ b/Utils/RnG/City.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; class City diff --git a/Utils/RnG/Country.php b/Utils/RnG/Country.php index b4ce821e4..43213144f 100644 --- a/Utils/RnG/Country.php +++ b/Utils/RnG/Country.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; class Country diff --git a/Utils/RnG/Currency.php b/Utils/RnG/Currency.php index 68f499401..956453f34 100644 --- a/Utils/RnG/Currency.php +++ b/Utils/RnG/Currency.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; class Currency diff --git a/Utils/RnG/DateTime.php b/Utils/RnG/DateTime.php index 9d78baa09..fb3791953 100644 --- a/Utils/RnG/DateTime.php +++ b/Utils/RnG/DateTime.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; /** diff --git a/Utils/RnG/DistributionType.php b/Utils/RnG/DistributionType.php index 06cf861c9..395efdf65 100644 --- a/Utils/RnG/DistributionType.php +++ b/Utils/RnG/DistributionType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; use phpOMS\Datatypes\Enum; diff --git a/Utils/RnG/Email.php b/Utils/RnG/Email.php index 6b9e95814..28f5a1c16 100644 --- a/Utils/RnG/Email.php +++ b/Utils/RnG/Email.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; class Email diff --git a/Utils/RnG/File.php b/Utils/RnG/File.php index f4aebcf3f..ff6fbbbf4 100644 --- a/Utils/RnG/File.php +++ b/Utils/RnG/File.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; diff --git a/Utils/RnG/IBAN.php b/Utils/RnG/IBAN.php index 2263f5531..43110d5e9 100644 --- a/Utils/RnG/IBAN.php +++ b/Utils/RnG/IBAN.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; class IBAN diff --git a/Utils/RnG/LinearCongruentialGenerator.php b/Utils/RnG/LinearCongruentialGenerator.php index 10302da4f..65c51b42b 100644 --- a/Utils/RnG/LinearCongruentialGenerator.php +++ b/Utils/RnG/LinearCongruentialGenerator.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\RnG; diff --git a/Utils/RnG/Name.php b/Utils/RnG/Name.php index 11df89c3a..bc2b3a9ba 100644 --- a/Utils/RnG/Name.php +++ b/Utils/RnG/Name.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; /** diff --git a/Utils/RnG/Numeric.php b/Utils/RnG/Numeric.php index 5f5504cf2..d35fee2b6 100644 --- a/Utils/RnG/Numeric.php +++ b/Utils/RnG/Numeric.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; class Numeric diff --git a/Utils/RnG/Phone.php b/Utils/RnG/Phone.php index e0fe0d1eb..c25e5809b 100644 --- a/Utils/RnG/Phone.php +++ b/Utils/RnG/Phone.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; diff --git a/Utils/RnG/PostalZip.php b/Utils/RnG/PostalZip.php index e2dbc7beb..146803a45 100644 --- a/Utils/RnG/PostalZip.php +++ b/Utils/RnG/PostalZip.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; class PostalZip diff --git a/Utils/RnG/StringUtils.php b/Utils/RnG/StringUtils.php index d4c9fb57a..11fcfd01d 100644 --- a/Utils/RnG/StringUtils.php +++ b/Utils/RnG/StringUtils.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; /** diff --git a/Utils/RnG/Text.php b/Utils/RnG/Text.php index 7afcb8ec7..9126c2580 100644 --- a/Utils/RnG/Text.php +++ b/Utils/RnG/Text.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\RnG; /** diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php index c31573297..82a121be6 100644 --- a/Utils/StringUtils.php +++ b/Utils/StringUtils.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils; /** diff --git a/Utils/TaskSchedule/Cron.php b/Utils/TaskSchedule/Cron.php index 355cb1b50..8316b693c 100644 --- a/Utils/TaskSchedule/Cron.php +++ b/Utils/TaskSchedule/Cron.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\TaskSchedule; /** diff --git a/Utils/TaskSchedule/CronJob.php b/Utils/TaskSchedule/CronJob.php index 21a8cf9f4..41d5f28d8 100644 --- a/Utils/TaskSchedule/CronJob.php +++ b/Utils/TaskSchedule/CronJob.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\TaskSchedule; /** diff --git a/Utils/TaskSchedule/Interval.php b/Utils/TaskSchedule/Interval.php index 1a04526e4..08c9e3c12 100644 --- a/Utils/TaskSchedule/Interval.php +++ b/Utils/TaskSchedule/Interval.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\TaskSchedule; /** diff --git a/Utils/TaskSchedule/InvalidTaskParameterException.php b/Utils/TaskSchedule/InvalidTaskParameterException.php index 9f6795591..82b262332 100644 --- a/Utils/TaskSchedule/InvalidTaskParameterException.php +++ b/Utils/TaskSchedule/InvalidTaskParameterException.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\TaskSchedule; /** diff --git a/Utils/TaskSchedule/Schedule.php b/Utils/TaskSchedule/Schedule.php index 8c8f2023e..9df08d3af 100644 --- a/Utils/TaskSchedule/Schedule.php +++ b/Utils/TaskSchedule/Schedule.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\TaskSchedule; /** diff --git a/Utils/TaskSchedule/SchedulerAbstract.php b/Utils/TaskSchedule/SchedulerAbstract.php index 9fe5d28a8..e9015b77a 100644 --- a/Utils/TaskSchedule/SchedulerAbstract.php +++ b/Utils/TaskSchedule/SchedulerAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\TaskSchedule; use phpOMS\System\File\PathException; diff --git a/Utils/TaskSchedule/SchedulerFactory.php b/Utils/TaskSchedule/SchedulerFactory.php index fa625f0f4..b5f990ace 100644 --- a/Utils/TaskSchedule/SchedulerFactory.php +++ b/Utils/TaskSchedule/SchedulerFactory.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\TaskSchedule; diff --git a/Utils/TaskSchedule/TaskAbstract.php b/Utils/TaskSchedule/TaskAbstract.php index 2936e8536..e58dfe510 100644 --- a/Utils/TaskSchedule/TaskAbstract.php +++ b/Utils/TaskSchedule/TaskAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\TaskSchedule; /** diff --git a/Utils/TaskSchedule/TaskFactory.php b/Utils/TaskSchedule/TaskFactory.php index 4aabaa2c0..7e44d9ba7 100644 --- a/Utils/TaskSchedule/TaskFactory.php +++ b/Utils/TaskSchedule/TaskFactory.php @@ -13,6 +13,7 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); namespace phpOMS\Utils\TaskSchedule; diff --git a/Utils/TaskSchedule/TaskScheduler.php b/Utils/TaskSchedule/TaskScheduler.php index bd42f01ad..5599b84c2 100644 --- a/Utils/TaskSchedule/TaskScheduler.php +++ b/Utils/TaskSchedule/TaskScheduler.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Utils\TaskSchedule; use phpOMS\Validation\Base\DateTime; diff --git a/Validation/Barcode/Barcode.php b/Validation/Barcode/Barcode.php index a7e25f45f..b225a6c9a 100644 --- a/Validation/Barcode/Barcode.php +++ b/Validation/Barcode/Barcode.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/Barcode11.php b/Validation/Barcode/Barcode11.php index fc17417d3..ea227ca97 100644 --- a/Validation/Barcode/Barcode11.php +++ b/Validation/Barcode/Barcode11.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/Barcode128.php b/Validation/Barcode/Barcode128.php index c14bd8389..80cd676e8 100644 --- a/Validation/Barcode/Barcode128.php +++ b/Validation/Barcode/Barcode128.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/Barcode25.php b/Validation/Barcode/Barcode25.php index 742d22dbc..b810adff5 100644 --- a/Validation/Barcode/Barcode25.php +++ b/Validation/Barcode/Barcode25.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/Barcode39.php b/Validation/Barcode/Barcode39.php index 06d2b3a8e..ee51dec8e 100644 --- a/Validation/Barcode/Barcode39.php +++ b/Validation/Barcode/Barcode39.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/Barcode93.php b/Validation/Barcode/Barcode93.php index 2dfa0006e..fa1089343 100644 --- a/Validation/Barcode/Barcode93.php +++ b/Validation/Barcode/Barcode93.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/BarcodeCodebar.php b/Validation/Barcode/BarcodeCodebar.php index 1a011d59e..24277b588 100644 --- a/Validation/Barcode/BarcodeCodebar.php +++ b/Validation/Barcode/BarcodeCodebar.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/BarcodeDatamatrix.php b/Validation/Barcode/BarcodeDatamatrix.php index 9462e7708..578b93ba7 100644 --- a/Validation/Barcode/BarcodeDatamatrix.php +++ b/Validation/Barcode/BarcodeDatamatrix.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/BarcodeEAN.php b/Validation/Barcode/BarcodeEAN.php index 9e11c9f01..f3bf49e89 100644 --- a/Validation/Barcode/BarcodeEAN.php +++ b/Validation/Barcode/BarcodeEAN.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/BarcodeMSI.php b/Validation/Barcode/BarcodeMSI.php index b43eae024..e98a1a05a 100644 --- a/Validation/Barcode/BarcodeMSI.php +++ b/Validation/Barcode/BarcodeMSI.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Barcode/QrCode.php b/Validation/Barcode/QrCode.php index b43e9bb12..e59c127c3 100644 --- a/Validation/Barcode/QrCode.php +++ b/Validation/Barcode/QrCode.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Barcode; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Base/BIC.php b/Validation/Base/BIC.php index 1180e0f6f..9a6b70a4a 100644 --- a/Validation/Base/BIC.php +++ b/Validation/Base/BIC.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Base/CreditCard.php b/Validation/Base/CreditCard.php index a7068b3f2..488512f96 100644 --- a/Validation/Base/CreditCard.php +++ b/Validation/Base/CreditCard.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Base/DateTime.php b/Validation/Base/DateTime.php index b48f5d65b..c53284a51 100644 --- a/Validation/Base/DateTime.php +++ b/Validation/Base/DateTime.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Base/Email.php b/Validation/Base/Email.php index d71296df3..679e5a863 100644 --- a/Validation/Base/Email.php +++ b/Validation/Base/Email.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Base/Hostname.php b/Validation/Base/Hostname.php index 6efd7245f..92d31d3f1 100644 --- a/Validation/Base/Hostname.php +++ b/Validation/Base/Hostname.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Base/IP.php b/Validation/Base/IP.php index 1d49422e3..d7c561f73 100644 --- a/Validation/Base/IP.php +++ b/Validation/Base/IP.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Base/Iban.php b/Validation/Base/Iban.php index 77b9cfe7e..291ddc8a5 100644 --- a/Validation/Base/Iban.php +++ b/Validation/Base/Iban.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/Base/IbanEnum.php b/Validation/Base/IbanEnum.php index bef416c20..917da45e9 100644 --- a/Validation/Base/IbanEnum.php +++ b/Validation/Base/IbanEnum.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Datatypes\Enum; diff --git a/Validation/Base/IbanErrorType.php b/Validation/Base/IbanErrorType.php index e3473c688..c727919c4 100644 --- a/Validation/Base/IbanErrorType.php +++ b/Validation/Base/IbanErrorType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\Base; use phpOMS\Datatypes\Enum; diff --git a/Validation/BitcoinValidator.php b/Validation/BitcoinValidator.php index 5bcb8c48a..a5746f2e7 100644 --- a/Validation/BitcoinValidator.php +++ b/Validation/BitcoinValidator.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation; /** diff --git a/Validation/File/Crc32.php b/Validation/File/Crc32.php index 9bda662b2..d1163724a 100644 --- a/Validation/File/Crc32.php +++ b/Validation/File/Crc32.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/File/Extension.php b/Validation/File/Extension.php index 9b66541c7..ba1433591 100644 --- a/Validation/File/Extension.php +++ b/Validation/File/Extension.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/File/FileSize.php b/Validation/File/FileSize.php index 16311ba8a..683688f46 100644 --- a/Validation/File/FileSize.php +++ b/Validation/File/FileSize.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/File/Hash.php b/Validation/File/Hash.php index 1074fb7fc..84c9ee73a 100644 --- a/Validation/File/Hash.php +++ b/Validation/File/Hash.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/File/IsCompressed.php b/Validation/File/IsCompressed.php index 8f0c73e00..038924cdd 100644 --- a/Validation/File/IsCompressed.php +++ b/Validation/File/IsCompressed.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/File/IsExecutable.php b/Validation/File/IsExecutable.php index 2f368daf0..4b270babf 100644 --- a/Validation/File/IsExecutable.php +++ b/Validation/File/IsExecutable.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/File/IsImage.php b/Validation/File/IsImage.php index b16dd8c86..ac168f8ce 100644 --- a/Validation/File/IsImage.php +++ b/Validation/File/IsImage.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/File/IsPDF.php b/Validation/File/IsPDF.php index 5e2f8f112..34033fcdc 100644 --- a/Validation/File/IsPDF.php +++ b/Validation/File/IsPDF.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/File/MimeType.php b/Validation/File/MimeType.php index e25618fa5..ee09021ff 100644 --- a/Validation/File/MimeType.php +++ b/Validation/File/MimeType.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation\File; use phpOMS\Validation\ValidatorAbstract; diff --git a/Validation/ModelValidationTrait.php b/Validation/ModelValidationTrait.php index e13d25b05..4d1850cf8 100644 --- a/Validation/ModelValidationTrait.php +++ b/Validation/ModelValidationTrait.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation; diff --git a/Validation/Validator.php b/Validation/Validator.php index 08949529e..fbb2cf45f 100644 --- a/Validation/Validator.php +++ b/Validation/Validator.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation; use phpOMS\Utils\StringUtils; diff --git a/Validation/ValidatorAbstract.php b/Validation/ValidatorAbstract.php index f8a6400d2..7a9aeac77 100644 --- a/Validation/ValidatorAbstract.php +++ b/Validation/ValidatorAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation; /** diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index e767050d4..3e74c1f3c 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Validation; /** diff --git a/Version/Version.php b/Version/Version.php index 6ccd09073..53af6b114 100644 --- a/Version/Version.php +++ b/Version/Version.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Version; /** diff --git a/Views/View.php b/Views/View.php index ca5a3324d..fc16baa7f 100644 --- a/Views/View.php +++ b/Views/View.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Views; use phpOMS\ApplicationAbstract; diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index 1c0cdb27f..9c3a8c3e2 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Views; use phpOMS\System\File\PathException; diff --git a/Views/ViewLayout.php b/Views/ViewLayout.php index 2c21ec090..7cfc79040 100644 --- a/Views/ViewLayout.php +++ b/Views/ViewLayout.php @@ -13,6 +13,8 @@ * @version 1.0.0 * @link http://orange-management.com */ +declare(strict_types=1); + namespace phpOMS\Views; use phpOMS\Datatypes\Enum;