diff --git a/Account/Account.php b/Account/Account.php index 7c3d90e45..8af202b39 100644 --- a/Account/Account.php +++ b/Account/Account.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -27,7 +27,7 @@ use phpOMS\Validation\Network\Email; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Account implements ArrayableInterface, \JsonSerializable diff --git a/Account/AccountManager.php b/Account/AccountManager.php index 21f976e6b..25ad73856 100644 --- a/Account/AccountManager.php +++ b/Account/AccountManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\DataStorage\Session\SessionInterface; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class AccountManager implements \Countable diff --git a/Account/AccountStatus.php b/Account/AccountStatus.php index 54c47db7f..99d1bbaea 100644 --- a/Account/AccountStatus.php +++ b/Account/AccountStatus.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class AccountStatus extends Enum diff --git a/Account/AccountType.php b/Account/AccountType.php index 6cd7bab88..ed277c765 100644 --- a/Account/AccountType.php +++ b/Account/AccountType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class AccountType extends Enum diff --git a/Account/Group.php b/Account/Group.php index b5636f9cc..3fe97c31e 100644 --- a/Account/Group.php +++ b/Account/Group.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Group implements ArrayableInterface, \JsonSerializable diff --git a/Account/GroupStatus.php b/Account/GroupStatus.php index b8cb7527d..3726aed3f 100644 --- a/Account/GroupStatus.php +++ b/Account/GroupStatus.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class GroupStatus extends Enum diff --git a/Account/NullAccount.php b/Account/NullAccount.php index 4d14d18c0..1109e0284 100644 --- a/Account/NullAccount.php +++ b/Account/NullAccount.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Account; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class NullAccount extends Account diff --git a/Account/PermissionAbstract.php b/Account/PermissionAbstract.php index 8f829df80..2794f5bd2 100644 --- a/Account/PermissionAbstract.php +++ b/Account/PermissionAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ namespace phpOMS\Account; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class PermissionAbstract implements \JsonSerializable diff --git a/Account/PermissionHandlingTrait.php b/Account/PermissionHandlingTrait.php index eaec3f061..0a3956743 100644 --- a/Account/PermissionHandlingTrait.php +++ b/Account/PermissionHandlingTrait.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Account; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ trait PermissionHandlingTrait diff --git a/Account/PermissionOwner.php b/Account/PermissionOwner.php index 827aba509..8f441758b 100644 --- a/Account/PermissionOwner.php +++ b/Account/PermissionOwner.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class PermissionOwner extends Enum diff --git a/Account/PermissionType.php b/Account/PermissionType.php index 24f7e38ca..a3521f68f 100644 --- a/Account/PermissionType.php +++ b/Account/PermissionType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Account * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class PermissionType extends Enum diff --git a/ApplicationAbstract.php b/ApplicationAbstract.php index b69dfe3c4..c289e83ef 100644 --- a/ApplicationAbstract.php +++ b/ApplicationAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -38,7 +38,7 @@ namespace phpOMS; * * @package phpOMS * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ApplicationAbstract diff --git a/Asset/AssetManager.php b/Asset/AssetManager.php index 2d123ed63..39eced6ea 100644 --- a/Asset/AssetManager.php +++ b/Asset/AssetManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Asset; * * @package phpOMS\Asset * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class AssetManager implements \Countable diff --git a/Asset/AssetType.php b/Asset/AssetType.php index 75e1c782f..52b8cb35d 100644 --- a/Asset/AssetType.php +++ b/Asset/AssetType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Asset * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class AssetType extends Enum diff --git a/Auth/Auth.php b/Auth/Auth.php index ff08915e7..2decacf48 100644 --- a/Auth/Auth.php +++ b/Auth/Auth.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\DataStorage\Session\SessionInterface; * * @package phpOMS\Auth * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Auth diff --git a/Auth/LoginReturnType.php b/Auth/LoginReturnType.php index ed0399f42..79130ff1e 100644 --- a/Auth/LoginReturnType.php +++ b/Auth/LoginReturnType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Auth * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class LoginReturnType extends Enum diff --git a/AutoloadException.php b/AutoloadException.php index 1e1f64a55..52d6fd53e 100644 --- a/AutoloadException.php +++ b/AutoloadException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS; * * @package phpOMS * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class AutoloadException extends \RuntimeException diff --git a/Autoloader.php b/Autoloader.php index af7461705..a740d33f2 100644 --- a/Autoloader.php +++ b/Autoloader.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS; * * @package phpOMS * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Autoloader diff --git a/Business/Finance/Depreciation.php b/Business/Finance/Depreciation.php index 23b35a42c..124722178 100644 --- a/Business/Finance/Depreciation.php +++ b/Business/Finance/Depreciation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Business\Finance; * * @package phpOMS\Business\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Depreciation diff --git a/Business/Finance/FinanceFormulas.php b/Business/Finance/FinanceFormulas.php index 66cad0b28..ab610dd88 100644 --- a/Business/Finance/FinanceFormulas.php +++ b/Business/Finance/FinanceFormulas.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Statistic\Average; * * @package phpOMS\Business\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCaseParameterName) diff --git a/Business/Finance/Loan.php b/Business/Finance/Loan.php index 0e97180fd..f404f8823 100644 --- a/Business/Finance/Loan.php +++ b/Business/Finance/Loan.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Business\Finance; * * @package phpOMS\Business\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCaseParameterName) diff --git a/Business/Finance/Lorenzkurve.php b/Business/Finance/Lorenzkurve.php index 63eb88a17..066d0d892 100644 --- a/Business/Finance/Lorenzkurve.php +++ b/Business/Finance/Lorenzkurve.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Business\Finance; * * @package phpOMS\Business\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Lorenzkurve diff --git a/Business/Finance/StockBonds.php b/Business/Finance/StockBonds.php index 1d83c11f5..0518aa2f3 100644 --- a/Business/Finance/StockBonds.php +++ b/Business/Finance/StockBonds.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Business\Finance; * * @package phpOMS\Business\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCaseParameterName) diff --git a/Business/Marketing/Metrics.php b/Business/Marketing/Metrics.php index 0d4a26841..23793c1a8 100644 --- a/Business/Marketing/Metrics.php +++ b/Business/Marketing/Metrics.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Business\Marketing; * * @package phpOMS\Business\Marketing * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Metrics diff --git a/Business/Marketing/NetPromoterScore.php b/Business/Marketing/NetPromoterScore.php index 45c7857c5..da54b968d 100644 --- a/Business/Marketing/NetPromoterScore.php +++ b/Business/Marketing/NetPromoterScore.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ namespace phpOMS\Business\Marketing; * * @package phpOMS\Business\Marketing * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class NetPromoterScore diff --git a/Business/Programming/Metrics.php b/Business/Programming/Metrics.php index c49f3c6fd..65744ee3d 100644 --- a/Business/Programming/Metrics.php +++ b/Business/Programming/Metrics.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Business\Programming; * * @package phpOMS\Business\Programming * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Metrics diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php index 6563ed5cf..00d202a35 100644 --- a/Business/Sales/MarketShareEstimation.php +++ b/Business/Sales/MarketShareEstimation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ namespace phpOMS\Business\Sales; * * @package phpOMS\Business\Sales * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class MarketShareEstimation diff --git a/Config/OptionsInterface.php b/Config/OptionsInterface.php index f6b269b94..391ab8e75 100644 --- a/Config/OptionsInterface.php +++ b/Config/OptionsInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Config; * * @package phpOMS\Config * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface OptionsInterface diff --git a/Config/OptionsTrait.php b/Config/OptionsTrait.php index 1e12b58b3..68c8f5c1b 100644 --- a/Config/OptionsTrait.php +++ b/Config/OptionsTrait.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Config; * * @package phpOMS\Config * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ trait OptionsTrait diff --git a/Config/SettingsAbstract.php b/Config/SettingsAbstract.php index 59f336ff8..0cf03f8f8 100644 --- a/Config/SettingsAbstract.php +++ b/Config/SettingsAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\Config * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class SettingsAbstract implements OptionsInterface diff --git a/Contract/ArrayableInterface.php b/Contract/ArrayableInterface.php index f7ce4c1cc..8aa1fbbd6 100644 --- a/Contract/ArrayableInterface.php +++ b/Contract/ArrayableInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Contract; * * @package phpOMS\Contract * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ArrayableInterface diff --git a/Contract/RenderableInterface.php b/Contract/RenderableInterface.php index 0eefa5f6f..8cad5130a 100644 --- a/Contract/RenderableInterface.php +++ b/Contract/RenderableInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ namespace phpOMS\Contract; * * @package phpOMS\Contract * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface RenderableInterface diff --git a/DataStorage/Cache/CachePool.php b/DataStorage/Cache/CachePool.php index 5bf9ee564..e13eca2cf 100644 --- a/DataStorage/Cache/CachePool.php +++ b/DataStorage/Cache/CachePool.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -26,7 +26,7 @@ use phpOMS\DataStorage\DataStoragePoolInterface; * * @package phpOMS\DataStorage\Cache * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class CachePool implements DataStoragePoolInterface diff --git a/DataStorage/Cache/CacheStatus.php b/DataStorage/Cache/CacheStatus.php index 942080ce2..c6f3eeec0 100644 --- a/DataStorage/Cache/CacheStatus.php +++ b/DataStorage/Cache/CacheStatus.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\Cache * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class CacheStatus extends Enum diff --git a/DataStorage/Cache/CacheType.php b/DataStorage/Cache/CacheType.php index 5e79ca398..884fa4d2d 100644 --- a/DataStorage/Cache/CacheType.php +++ b/DataStorage/Cache/CacheType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\Cache * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class CacheType extends Enum diff --git a/DataStorage/Cache/Connection/CacheValueType.php b/DataStorage/Cache/Connection/CacheValueType.php index 3a3112e49..b5e5ebfc8 100644 --- a/DataStorage/Cache/Connection/CacheValueType.php +++ b/DataStorage/Cache/Connection/CacheValueType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\Cache\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class CacheValueType extends Enum diff --git a/DataStorage/Cache/Connection/ConnectionAbstract.php b/DataStorage/Cache/Connection/ConnectionAbstract.php index 215ed5daa..772881cb2 100644 --- a/DataStorage/Cache/Connection/ConnectionAbstract.php +++ b/DataStorage/Cache/Connection/ConnectionAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -25,7 +25,7 @@ use phpOMS\DataStorage\Cache\CacheType; * * @package phpOMS\DataStorage\Cache\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ConnectionAbstract implements ConnectionInterface diff --git a/DataStorage/Cache/Connection/ConnectionFactory.php b/DataStorage/Cache/Connection/ConnectionFactory.php index 2e90c0229..3f98c3017 100644 --- a/DataStorage/Cache/Connection/ConnectionFactory.php +++ b/DataStorage/Cache/Connection/ConnectionFactory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Cache\CacheType; * * @package phpOMS\DataStorage\Cache\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ConnectionFactory diff --git a/DataStorage/Cache/Connection/ConnectionInterface.php b/DataStorage/Cache/Connection/ConnectionInterface.php index 9ad0f9811..30876333b 100644 --- a/DataStorage/Cache/Connection/ConnectionInterface.php +++ b/DataStorage/Cache/Connection/ConnectionInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\DataStorageConnectionInterface; * * @package phpOMS\DataStorage\Cache\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ConnectionInterface extends DataStorageConnectionInterface diff --git a/DataStorage/Cache/Connection/FileCache.php b/DataStorage/Cache/Connection/FileCache.php index dfebe1f59..ee1a81f8b 100644 --- a/DataStorage/Cache/Connection/FileCache.php +++ b/DataStorage/Cache/Connection/FileCache.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -37,7 +37,7 @@ use phpOMS\System\File\Local\File; * * @package phpOMS\DataStorage\Cache\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class FileCache extends ConnectionAbstract diff --git a/DataStorage/Cache/Connection/MemCached.php b/DataStorage/Cache/Connection/MemCached.php index 9076b3d46..2ffa99759 100644 --- a/DataStorage/Cache/Connection/MemCached.php +++ b/DataStorage/Cache/Connection/MemCached.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\DataStorage\Cache\Exception\InvalidConnectionConfigException; * * @package phpOMS\DataStorage\Cache\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class MemCached extends ConnectionAbstract diff --git a/DataStorage/Cache/Connection/NullCache.php b/DataStorage/Cache/Connection/NullCache.php index 5767c1ba4..ef538e919 100644 --- a/DataStorage/Cache/Connection/NullCache.php +++ b/DataStorage/Cache/Connection/NullCache.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Cache\Connection; * * @package phpOMS\DataStorage\Cache\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class NullCache extends ConnectionAbstract diff --git a/DataStorage/Cache/Connection/RedisCache.php b/DataStorage/Cache/Connection/RedisCache.php index 715d2beb2..882f351a8 100644 --- a/DataStorage/Cache/Connection/RedisCache.php +++ b/DataStorage/Cache/Connection/RedisCache.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\DataStorage\Cache\Exception\InvalidConnectionConfigException; * * @package phpOMS\DataStorage\Cache\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class RedisCache extends ConnectionAbstract diff --git a/DataStorage/Cache/Exception/InvalidConnectionConfigException.php b/DataStorage/Cache/Exception/InvalidConnectionConfigException.php index 4ab9201bd..c4e591356 100644 --- a/DataStorage/Cache/Exception/InvalidConnectionConfigException.php +++ b/DataStorage/Cache/Exception/InvalidConnectionConfigException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Cache\Exception; * * @package phpOMS\DataStorage\Cache\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class InvalidConnectionConfigException extends \InvalidArgumentException diff --git a/DataStorage/Cookie/CookieJar.php b/DataStorage/Cookie/CookieJar.php index c196fe87c..47753a006 100644 --- a/DataStorage/Cookie/CookieJar.php +++ b/DataStorage/Cookie/CookieJar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\LockException; * * @package phpOMS\DataStorage\Cookie * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class CookieJar diff --git a/DataStorage/DataMapperInterface.php b/DataStorage/DataMapperInterface.php index 8d1a5532e..372fceeef 100644 --- a/DataStorage/DataMapperInterface.php +++ b/DataStorage/DataMapperInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\DataStorage * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface DataMapperInterface diff --git a/DataStorage/DataStorageConnectionInterface.php b/DataStorage/DataStorageConnectionInterface.php index a69f3421e..d20d74304 100644 --- a/DataStorage/DataStorageConnectionInterface.php +++ b/DataStorage/DataStorageConnectionInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage; * * @package phpOMS\DataStorage * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface DataStorageConnectionInterface diff --git a/DataStorage/DataStoragePoolInterface.php b/DataStorage/DataStoragePoolInterface.php index d55c14d72..110b40caf 100644 --- a/DataStorage/DataStoragePoolInterface.php +++ b/DataStorage/DataStoragePoolInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\DataStorage; * * @package phpOMS\DataStorage * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface DataStoragePoolInterface diff --git a/DataStorage/Database/BuilderAbstract.php b/DataStorage/Database/BuilderAbstract.php index 2e1ab38bf..b0ea40d08 100644 --- a/DataStorage/Database/BuilderAbstract.php +++ b/DataStorage/Database/BuilderAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\DataStorage\DataStorageConnectionInterface; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class BuilderAbstract diff --git a/DataStorage/Database/Connection/ConnectionAbstract.php b/DataStorage/Database/Connection/ConnectionAbstract.php index eaadc0cc8..7a5972d94 100644 --- a/DataStorage/Database/Connection/ConnectionAbstract.php +++ b/DataStorage/Database/Connection/ConnectionAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -27,7 +27,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar; * * @package phpOMS\DataStorage\Database\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ConnectionAbstract implements ConnectionInterface diff --git a/DataStorage/Database/Connection/ConnectionFactory.php b/DataStorage/Database/Connection/ConnectionFactory.php index c29c3e256..bf289793a 100644 --- a/DataStorage/Database/Connection/ConnectionFactory.php +++ b/DataStorage/Database/Connection/ConnectionFactory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\DatabaseType; * * @package phpOMS\DataStorage\Database\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class ConnectionFactory diff --git a/DataStorage/Database/Connection/ConnectionInterface.php b/DataStorage/Database/Connection/ConnectionInterface.php index 8e106f665..1df086024 100644 --- a/DataStorage/Database/Connection/ConnectionInterface.php +++ b/DataStorage/Database/Connection/ConnectionInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\DataStorage\DataStorageConnectionInterface; * * @package phpOMS\DataStorage\Database\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ConnectionInterface extends DataStorageConnectionInterface diff --git a/DataStorage/Database/Connection/MysqlConnection.php b/DataStorage/Database/Connection/MysqlConnection.php index b480eb2b1..1563ca059 100644 --- a/DataStorage/Database/Connection/MysqlConnection.php +++ b/DataStorage/Database/Connection/MysqlConnection.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -28,7 +28,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGramma * * @package phpOMS\DataStorage\Database\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class MysqlConnection extends ConnectionAbstract diff --git a/DataStorage/Database/Connection/NullConnection.php b/DataStorage/Database/Connection/NullConnection.php index caf617c4b..647b63bdc 100644 --- a/DataStorage/Database/Connection/NullConnection.php +++ b/DataStorage/Database/Connection/NullConnection.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Database\Connection; * * @package phpOMS\DataStorage\Database\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class NullConnection extends ConnectionAbstract diff --git a/DataStorage/Database/Connection/PostgresConnection.php b/DataStorage/Database/Connection/PostgresConnection.php index e58e216be..4fd56f161 100644 --- a/DataStorage/Database/Connection/PostgresConnection.php +++ b/DataStorage/Database/Connection/PostgresConnection.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -28,7 +28,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\PostgresGrammar as PostgresSchema * * @package phpOMS\DataStorage\Database\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class PostgresConnection extends ConnectionAbstract diff --git a/DataStorage/Database/Connection/SQLiteConnection.php b/DataStorage/Database/Connection/SQLiteConnection.php index 2688d6b2f..baf5c41be 100644 --- a/DataStorage/Database/Connection/SQLiteConnection.php +++ b/DataStorage/Database/Connection/SQLiteConnection.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -28,7 +28,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\SQLiteGrammar as SQLiteSchemaGram * * @package phpOMS\DataStorage\Database\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class SQLiteConnection extends ConnectionAbstract diff --git a/DataStorage/Database/Connection/SqlServerConnection.php b/DataStorage/Database/Connection/SqlServerConnection.php index e77d51599..854841ceb 100644 --- a/DataStorage/Database/Connection/SqlServerConnection.php +++ b/DataStorage/Database/Connection/SqlServerConnection.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -28,7 +28,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGramma * * @package phpOMS\DataStorage\Database\Connection * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class SqlServerConnection extends ConnectionAbstract diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index dd3f735a2..4821c2c6a 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -29,7 +29,7 @@ use phpOMS\Utils\ArrayUtils; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class DataMapperAbstract implements DataMapperInterface diff --git a/DataStorage/Database/DatabaseExceptionFactory.php b/DataStorage/Database/DatabaseExceptionFactory.php index de4f25ab3..c0e00ad8b 100644 --- a/DataStorage/Database/DatabaseExceptionFactory.php +++ b/DataStorage/Database/DatabaseExceptionFactory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\Schema\Exception\TableException; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class DatabaseExceptionFactory diff --git a/DataStorage/Database/DatabasePool.php b/DataStorage/Database/DatabasePool.php index ba3dc4750..3ffecc852 100644 --- a/DataStorage/Database/DatabasePool.php +++ b/DataStorage/Database/DatabasePool.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\DataStorage\DataStoragePoolInterface; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class DatabasePool implements DataStoragePoolInterface diff --git a/DataStorage/Database/DatabaseStatus.php b/DataStorage/Database/DatabaseStatus.php index d63a0fe48..aebcd91e5 100644 --- a/DataStorage/Database/DatabaseStatus.php +++ b/DataStorage/Database/DatabaseStatus.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class DatabaseStatus extends Enum diff --git a/DataStorage/Database/DatabaseType.php b/DataStorage/Database/DatabaseType.php index d76b9004f..7be9a7443 100644 --- a/DataStorage/Database/DatabaseType.php +++ b/DataStorage/Database/DatabaseType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class DatabaseType extends Enum diff --git a/DataStorage/Database/Exception/InvalidConnectionConfigException.php b/DataStorage/Database/Exception/InvalidConnectionConfigException.php index 65f66ae63..71a23c95e 100644 --- a/DataStorage/Database/Exception/InvalidConnectionConfigException.php +++ b/DataStorage/Database/Exception/InvalidConnectionConfigException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Database\Exception; * * @package phpOMS\DataStorage\Database\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class InvalidConnectionConfigException extends \InvalidArgumentException diff --git a/DataStorage/Database/Exception/InvalidDatabaseTypeException.php b/DataStorage/Database/Exception/InvalidDatabaseTypeException.php index e2500d4ee..282cb53c2 100644 --- a/DataStorage/Database/Exception/InvalidDatabaseTypeException.php +++ b/DataStorage/Database/Exception/InvalidDatabaseTypeException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Database\Exception; * * @package phpOMS\DataStorage\Database\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class InvalidDatabaseTypeException extends \InvalidArgumentException diff --git a/DataStorage/Database/Exception/InvalidMapperException.php b/DataStorage/Database/Exception/InvalidMapperException.php index 110bcd6a4..210f4fed8 100644 --- a/DataStorage/Database/Exception/InvalidMapperException.php +++ b/DataStorage/Database/Exception/InvalidMapperException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Database\Exception; * * @package phpOMS\DataStorage\Database\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class InvalidMapperException extends \RuntimeException diff --git a/DataStorage/Database/GrammarAbstract.php b/DataStorage/Database/GrammarAbstract.php index 19012edc4..c7b3bd750 100644 --- a/DataStorage/Database/GrammarAbstract.php +++ b/DataStorage/Database/GrammarAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\Query\QueryType; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class GrammarAbstract diff --git a/DataStorage/Database/Query/Builder.php b/DataStorage/Database/Query/Builder.php index 7c5a23063..22b51695e 100644 --- a/DataStorage/Database/Query/Builder.php +++ b/DataStorage/Database/Query/Builder.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract; * * @package phpOMS\DataStorage\Database\Query * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Builder extends BuilderAbstract diff --git a/DataStorage/Database/Query/Column.php b/DataStorage/Database/Query/Column.php index 87ca1c9aa..6d349a560 100644 --- a/DataStorage/Database/Query/Column.php +++ b/DataStorage/Database/Query/Column.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Database\Query; * * @package phpOMS\DataStorage\Database\Query * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Column diff --git a/DataStorage/Database/Query/Expression.php b/DataStorage/Database/Query/Expression.php index 2339f25e3..a78bbf7b0 100644 --- a/DataStorage/Database/Query/Expression.php +++ b/DataStorage/Database/Query/Expression.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/DataStorage/Database/Query/Grammar/Grammar.php b/DataStorage/Database/Query/Grammar/Grammar.php index 54d3bcbfe..c9370e0a6 100644 --- a/DataStorage/Database/Query/Grammar/Grammar.php +++ b/DataStorage/Database/Query/Grammar/Grammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -25,7 +25,7 @@ use phpOMS\DataStorage\Database\Query\Where; * * @package phpOMS\DataStorage\Database\Query\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Grammar extends GrammarAbstract diff --git a/DataStorage/Database/Query/Grammar/GrammarInterface.php b/DataStorage/Database/Query/Grammar/GrammarInterface.php index 68b09fabb..62999d914 100644 --- a/DataStorage/Database/Query/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Query/Grammar/GrammarInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Database\Query\Grammar; * * @package phpOMS\DataStorage\Database\Query\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface GrammarInterface diff --git a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php index 3d01e97f9..2fe412112 100644 --- a/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php +++ b/DataStorage/Database/Query/Grammar/MicrosoftGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\DataStorage\Database\Query\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class MicrosoftGrammar extends Grammar diff --git a/DataStorage/Database/Query/Grammar/MysqlGrammar.php b/DataStorage/Database/Query/Grammar/MysqlGrammar.php index e19f1a524..343c4567d 100644 --- a/DataStorage/Database/Query/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Query/Grammar/MysqlGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\DataStorage\Database\Query\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class MysqlGrammar extends Grammar diff --git a/DataStorage/Database/Query/Grammar/OracleGrammar.php b/DataStorage/Database/Query/Grammar/OracleGrammar.php index bcf2ae79d..72ea22843 100644 --- a/DataStorage/Database/Query/Grammar/OracleGrammar.php +++ b/DataStorage/Database/Query/Grammar/OracleGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\DataStorage\Database\Query\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class OracleGrammar extends Grammar diff --git a/DataStorage/Database/Query/Grammar/PostgresGrammar.php b/DataStorage/Database/Query/Grammar/PostgresGrammar.php index e330cb7f5..a2f2e7e40 100644 --- a/DataStorage/Database/Query/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Query/Grammar/PostgresGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\DataStorage\Database\Query\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class PostgresGrammar extends Grammar diff --git a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php index 056a8d6c5..aaea8ad4d 100644 --- a/DataStorage/Database/Query/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Query/Grammar/SQLiteGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\DataStorage\Database\Query\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class SQLiteGrammar extends Grammar diff --git a/DataStorage/Database/Query/JoinType.php b/DataStorage/Database/Query/JoinType.php index 6280bfe03..17f6eb248 100644 --- a/DataStorage/Database/Query/JoinType.php +++ b/DataStorage/Database/Query/JoinType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\Database\Query * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class JoinType extends Enum diff --git a/DataStorage/Database/Query/QueryType.php b/DataStorage/Database/Query/QueryType.php index 618c1dc42..feae9cac6 100644 --- a/DataStorage/Database/Query/QueryType.php +++ b/DataStorage/Database/Query/QueryType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\Database\Query * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class QueryType extends Enum diff --git a/DataStorage/Database/Query/Where.php b/DataStorage/Database/Query/Where.php index fd1f1e556..cfc2a35cd 100644 --- a/DataStorage/Database/Query/Where.php +++ b/DataStorage/Database/Query/Where.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Database\Query; * * @package phpOMS\DataStorage\Database\Query * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Where diff --git a/DataStorage/Database/RelationType.php b/DataStorage/Database/RelationType.php index c7ee86ad0..89c80ede4 100644 --- a/DataStorage/Database/RelationType.php +++ b/DataStorage/Database/RelationType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class RelationType extends Enum diff --git a/DataStorage/Database/Schema/Builder.php b/DataStorage/Database/Schema/Builder.php index 28c3045cb..a387e807e 100644 --- a/DataStorage/Database/Schema/Builder.php +++ b/DataStorage/Database/Schema/Builder.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Query\Builder as QueryBuilder; * * @package phpOMS\DataStorage\Database\Schema * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Builder extends QueryBuilder diff --git a/DataStorage/Database/Schema/Exception/TableException.php b/DataStorage/Database/Schema/Exception/TableException.php index 4ac509f46..8ba4a758c 100644 --- a/DataStorage/Database/Schema/Exception/TableException.php +++ b/DataStorage/Database/Schema/Exception/TableException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\DataStorage\Database\Schema\Exception; * * @package phpOMS\DataStorage\Database\Schema\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class TableException extends \PDOException diff --git a/DataStorage/Database/Schema/Grammar/Grammar.php b/DataStorage/Database/Schema/Grammar/Grammar.php index 91fb990fb..bee277683 100644 --- a/DataStorage/Database/Schema/Grammar/Grammar.php +++ b/DataStorage/Database/Schema/Grammar/Grammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\DataStorage\Database\Schema\QueryType; * * @package phpOMS\DataStorage\Database\Schema\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Grammar extends QueryGrammar diff --git a/DataStorage/Database/Schema/Grammar/GrammarInterface.php b/DataStorage/Database/Schema/Grammar/GrammarInterface.php index 2e99ac5bd..524665f78 100644 --- a/DataStorage/Database/Schema/Grammar/GrammarInterface.php +++ b/DataStorage/Database/Schema/Grammar/GrammarInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php index a190e8835..690ac8e61 100644 --- a/DataStorage/Database/Schema/Grammar/MysqlGrammar.php +++ b/DataStorage/Database/Schema/Grammar/MysqlGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\DataStorage\Database\Schema\Grammar * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class MysqlGrammar extends Grammar diff --git a/DataStorage/Database/Schema/Grammar/OracleGrammar.php b/DataStorage/Database/Schema/Grammar/OracleGrammar.php index 7aa50a353..d22946ebc 100644 --- a/DataStorage/Database/Schema/Grammar/OracleGrammar.php +++ b/DataStorage/Database/Schema/Grammar/OracleGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php index 6dfe5424f..47c46fe66 100644 --- a/DataStorage/Database/Schema/Grammar/PostgresGrammar.php +++ b/DataStorage/Database/Schema/Grammar/PostgresGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php index 5282e5165..ba2f13df0 100644 --- a/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SQLiteGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php index 464c683ab..2bea372a4 100644 --- a/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php +++ b/DataStorage/Database/Schema/Grammar/SqlServerGrammar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/DataStorage/Database/Schema/QueryType.php b/DataStorage/Database/Schema/QueryType.php index 68776f9ae..fb4462aa4 100644 --- a/DataStorage/Database/Schema/QueryType.php +++ b/DataStorage/Database/Schema/QueryType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\DataStorage\Database\Query\QueryType as DefaultQueryType; * * @package phpOMS\DataStorage\Database\Schema * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class QueryType extends DefaultQueryType diff --git a/DataStorage/Database/SchemaMapper.php b/DataStorage/Database/SchemaMapper.php index b1f3aaa72..067a7a397 100644 --- a/DataStorage/Database/SchemaMapper.php +++ b/DataStorage/Database/SchemaMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Schema\Builder; * * @package phpOMS\DataStorage\Database * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class SchemaMapper diff --git a/DataStorage/File/JsonBuilder.php b/DataStorage/File/JsonBuilder.php index 85425d69b..3accde834 100644 --- a/DataStorage/File/JsonBuilder.php +++ b/DataStorage/File/JsonBuilder.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\Query\JoinType; * * @package phpOMS\DataStorage\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class JsonBuilder diff --git a/DataStorage/File/JsonGrammar.php b/DataStorage/File/JsonGrammar.php index b570dce54..546ac7dde 100644 --- a/DataStorage/File/JsonGrammar.php +++ b/DataStorage/File/JsonGrammar.php @@ -13,7 +13,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ namespace phpOMS\DataStorage\File; * * @package phpOMS\DataStorage\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class JsonGrammar diff --git a/DataStorage/File/QueryType.php b/DataStorage/File/QueryType.php index ffd6865b7..e57e8e90d 100644 --- a/DataStorage/File/QueryType.php +++ b/DataStorage/File/QueryType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\DataStorage\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class QueryType extends Enum diff --git a/DataStorage/LockException.php b/DataStorage/LockException.php index a9f066344..3caa6b7de 100644 --- a/DataStorage/LockException.php +++ b/DataStorage/LockException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ namespace phpOMS\DataStorage; * * @package phpOMS\DataStorage * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class LockException extends \RuntimeException diff --git a/DataStorage/Session/HttpSession.php b/DataStorage/Session/HttpSession.php index 9050c2e89..e11bac7a4 100644 --- a/DataStorage/Session/HttpSession.php +++ b/DataStorage/Session/HttpSession.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Utils\RnG\StringUtils; * * @package phpOMS\DataStorage\Session * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.Superglobals) diff --git a/DataStorage/Session/SessionInterface.php b/DataStorage/Session/SessionInterface.php index 682fd5e2c..b536494cd 100644 --- a/DataStorage/Session/SessionInterface.php +++ b/DataStorage/Session/SessionInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\DataStorage\Session; * * @package phpOMS\DataStorage\Session * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface SessionInterface diff --git a/Dispatcher/Dispatcher.php b/Dispatcher/Dispatcher.php index 11853b008..0c09ff77b 100644 --- a/Dispatcher/Dispatcher.php +++ b/Dispatcher/Dispatcher.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\System\File\PathException; * * @package phpOMS\Dispatcher * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Dispatcher diff --git a/Event/EventManager.php b/Event/EventManager.php index dc2aebbe8..b30132bf5 100644 --- a/Event/EventManager.php +++ b/Event/EventManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -27,7 +27,7 @@ use phpOMS\Dispatcher\Dispatcher; * * @package phpOMS\Event * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class EventManager implements \Countable diff --git a/Localization/Defaults/City.php b/Localization/Defaults/City.php index a868da69f..468d8b8fd 100644 --- a/Localization/Defaults/City.php +++ b/Localization/Defaults/City.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Localization\Defaults; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class City diff --git a/Localization/Defaults/CityMapper.php b/Localization/Defaults/CityMapper.php index ab4dc71dc..3398ee40c 100644 --- a/Localization/Defaults/CityMapper.php +++ b/Localization/Defaults/CityMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\DataMapperAbstract; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class CityMapper extends DataMapperAbstract diff --git a/Localization/Defaults/Country.php b/Localization/Defaults/Country.php index 7d2c5209e..e61a415a8 100644 --- a/Localization/Defaults/Country.php +++ b/Localization/Defaults/Country.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Localization\Defaults; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Country diff --git a/Localization/Defaults/CountryMapper.php b/Localization/Defaults/CountryMapper.php index 2e2255e09..f4b0e07a0 100644 --- a/Localization/Defaults/CountryMapper.php +++ b/Localization/Defaults/CountryMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\DataMapperAbstract; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class CountryMapper extends DataMapperAbstract diff --git a/Localization/Defaults/Currency.php b/Localization/Defaults/Currency.php index 225d3c00e..0cff6ca6c 100644 --- a/Localization/Defaults/Currency.php +++ b/Localization/Defaults/Currency.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Localization\Defaults; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Currency diff --git a/Localization/Defaults/CurrencyMapper.php b/Localization/Defaults/CurrencyMapper.php index c5984cab6..736cd84c4 100644 --- a/Localization/Defaults/CurrencyMapper.php +++ b/Localization/Defaults/CurrencyMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\DataMapperAbstract; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class CurrencyMapper extends DataMapperAbstract diff --git a/Localization/Defaults/Iban.php b/Localization/Defaults/Iban.php index c008a6535..802792118 100644 --- a/Localization/Defaults/Iban.php +++ b/Localization/Defaults/Iban.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Localization\Defaults; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Iban diff --git a/Localization/Defaults/IbanMapper.php b/Localization/Defaults/IbanMapper.php index 0b05c9d7e..643113060 100644 --- a/Localization/Defaults/IbanMapper.php +++ b/Localization/Defaults/IbanMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\DataMapperAbstract; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class IbanMapper extends DataMapperAbstract diff --git a/Localization/Defaults/Language.php b/Localization/Defaults/Language.php index 63019a65d..f8c69f726 100644 --- a/Localization/Defaults/Language.php +++ b/Localization/Defaults/Language.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Localization\Defaults; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Language diff --git a/Localization/Defaults/LanguageMapper.php b/Localization/Defaults/LanguageMapper.php index e2544a8dd..c4d06ec26 100644 --- a/Localization/Defaults/LanguageMapper.php +++ b/Localization/Defaults/LanguageMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\DataMapperAbstract; * * @package phpOMS\Localization\Defaults * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LanguageMapper extends DataMapperAbstract diff --git a/Localization/ISO3166CharEnum.php b/Localization/ISO3166CharEnum.php index 8b5f11aa8..49c5892b3 100644 --- a/Localization/ISO3166CharEnum.php +++ b/Localization/ISO3166CharEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO3166CharEnum extends Enum diff --git a/Localization/ISO3166NameEnum.php b/Localization/ISO3166NameEnum.php index 4ad60f60f..e5ea4711c 100644 --- a/Localization/ISO3166NameEnum.php +++ b/Localization/ISO3166NameEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO3166NameEnum extends Enum diff --git a/Localization/ISO3166NumEnum.php b/Localization/ISO3166NumEnum.php index e85782fac..85e6b6b61 100644 --- a/Localization/ISO3166NumEnum.php +++ b/Localization/ISO3166NumEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO3166NumEnum extends Enum diff --git a/Localization/ISO3166TwoEnum.php b/Localization/ISO3166TwoEnum.php index 6b7db0995..9acebb9ed 100644 --- a/Localization/ISO3166TwoEnum.php +++ b/Localization/ISO3166TwoEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO3166TwoEnum extends Enum diff --git a/Localization/ISO4217CharEnum.php b/Localization/ISO4217CharEnum.php index 3f0c72c3c..44b6e7ac1 100644 --- a/Localization/ISO4217CharEnum.php +++ b/Localization/ISO4217CharEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO4217CharEnum extends Enum diff --git a/Localization/ISO4217DecimalEnum.php b/Localization/ISO4217DecimalEnum.php index 49906979d..31529bf02 100644 --- a/Localization/ISO4217DecimalEnum.php +++ b/Localization/ISO4217DecimalEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO4217DecimalEnum extends Enum diff --git a/Localization/ISO4217Enum.php b/Localization/ISO4217Enum.php index 3de1ce38b..8730ba570 100644 --- a/Localization/ISO4217Enum.php +++ b/Localization/ISO4217Enum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO4217Enum extends Enum diff --git a/Localization/ISO4217NumEnum.php b/Localization/ISO4217NumEnum.php index 609a9673e..7210d5bc6 100644 --- a/Localization/ISO4217NumEnum.php +++ b/Localization/ISO4217NumEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO4217NumEnum extends Enum diff --git a/Localization/ISO4217SubUnitEnum.php b/Localization/ISO4217SubUnitEnum.php index 457741040..74d78a081 100644 --- a/Localization/ISO4217SubUnitEnum.php +++ b/Localization/ISO4217SubUnitEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO4217SubUnitEnum extends Enum diff --git a/Localization/ISO4217SymbolEnum.php b/Localization/ISO4217SymbolEnum.php index 87e39c395..348f4f484 100644 --- a/Localization/ISO4217SymbolEnum.php +++ b/Localization/ISO4217SymbolEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO4217SymbolEnum extends Enum diff --git a/Localization/ISO639Enum.php b/Localization/ISO639Enum.php index 091e17a8a..d789e496a 100644 --- a/Localization/ISO639Enum.php +++ b/Localization/ISO639Enum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO639Enum extends Enum diff --git a/Localization/ISO639x1Enum.php b/Localization/ISO639x1Enum.php index 5255cf107..85480aa90 100644 --- a/Localization/ISO639x1Enum.php +++ b/Localization/ISO639x1Enum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO639x1Enum extends Enum diff --git a/Localization/ISO639x2Enum.php b/Localization/ISO639x2Enum.php index 807d7de07..a2c5338cd 100644 --- a/Localization/ISO639x2Enum.php +++ b/Localization/ISO639x2Enum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO639x2Enum extends Enum diff --git a/Localization/ISO8601EnumArray.php b/Localization/ISO8601EnumArray.php index 1b3552ea6..c25169a4c 100644 --- a/Localization/ISO8601EnumArray.php +++ b/Localization/ISO8601EnumArray.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\Stdlib\Base\EnumArray; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ISO8601EnumArray extends EnumArray diff --git a/Localization/L11nManager.php b/Localization/L11nManager.php index 65e0fa3cd..45f427408 100644 --- a/Localization/L11nManager.php +++ b/Localization/L11nManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Module\ModuleAbstract; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class L11nManager diff --git a/Localization/Localization.php b/Localization/Localization.php index de352338e..9198bcbae 100644 --- a/Localization/Localization.php +++ b/Localization/Localization.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Utils\Converter\TemperatureType; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Localization diff --git a/Localization/Money.php b/Localization/Money.php index ccfda866d..3c22b2ac3 100644 --- a/Localization/Money.php +++ b/Localization/Money.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Localization; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Money implements \Serializable diff --git a/Localization/NullLocalization.php b/Localization/NullLocalization.php index b533dab38..9bc97f027 100644 --- a/Localization/NullLocalization.php +++ b/Localization/NullLocalization.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Localization; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class NullLocalization extends Localization diff --git a/Localization/PhoneEnum.php b/Localization/PhoneEnum.php index 017199ee5..bffbe0185 100644 --- a/Localization/PhoneEnum.php +++ b/Localization/PhoneEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class PhoneEnum extends Enum diff --git a/Localization/TimeZoneEnumArray.php b/Localization/TimeZoneEnumArray.php index e2eca0c60..32076fd82 100644 --- a/Localization/TimeZoneEnumArray.php +++ b/Localization/TimeZoneEnumArray.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\EnumArray; * * @package phpOMS\Localization * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class TimeZoneEnumArray extends EnumArray diff --git a/Log/FileLogger.php b/Log/FileLogger.php index df089cbea..f829a3587 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\System\File\Local\File; * * @package phpOMS\Log * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.Superglobals) diff --git a/Log/LogLevel.php b/Log/LogLevel.php index d4a46a282..f993bbd54 100644 --- a/Log/LogLevel.php +++ b/Log/LogLevel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Log * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class LogLevel extends Enum diff --git a/Log/LoggerInterface.php b/Log/LoggerInterface.php index c16454d3a..ecda7f783 100644 --- a/Log/LoggerInterface.php +++ b/Log/LoggerInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Log; * * @package phpOMS\Log * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface LoggerInterface diff --git a/Math/Exception/ZeroDevisionException.php b/Math/Exception/ZeroDevisionException.php index 4c6c4b32d..e43f83596 100644 --- a/Math/Exception/ZeroDevisionException.php +++ b/Math/Exception/ZeroDevisionException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Exception; * * @package phpOMS\Math\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class ZeroDevisionException extends \UnexpectedValueException diff --git a/Math/Functions/Fibunacci.php b/Math/Functions/Fibunacci.php index fe1968a17..bd70a4d6e 100644 --- a/Math/Functions/Fibunacci.php +++ b/Math/Functions/Fibunacci.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Number\Numbers; * * @package phpOMS\Math\Functions * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Fibunacci diff --git a/Math/Functions/Functions.php b/Math/Functions/Functions.php index 8a1ee0216..5068be9b2 100644 --- a/Math/Functions/Functions.php +++ b/Math/Functions/Functions.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Functions; * * @package phpOMS\Math\Functions * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Functions diff --git a/Math/Functions/Gamma.php b/Math/Functions/Gamma.php index 2851170cc..f9b9c4228 100644 --- a/Math/Functions/Gamma.php +++ b/Math/Functions/Gamma.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Functions; * * @package phpOMS\Math\Functions * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Gamma diff --git a/Math/Geometry/ConvexHull/MonotoneChain.php b/Math/Geometry/ConvexHull/MonotoneChain.php index 303bcc189..46f02ba59 100644 --- a/Math/Geometry/ConvexHull/MonotoneChain.php +++ b/Math/Geometry/ConvexHull/MonotoneChain.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\ConvexHull; * * @package phpOMS\Math\Geometry\ConvexHull * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class MonotoneChain diff --git a/Math/Geometry/Shape/D2/Circle.php b/Math/Geometry/Shape/D2/Circle.php index bc6c813d6..87826dc08 100644 --- a/Math/Geometry/Shape/D2/Circle.php +++ b/Math/Geometry/Shape/D2/Circle.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D2; * * @package phpOMS\Math\Geometry\Shape\D2 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Circle implements D2ShapeInterface diff --git a/Math/Geometry/Shape/D2/D2ShapeInterface.php b/Math/Geometry/Shape/D2/D2ShapeInterface.php index 0b572cf34..967db47b1 100644 --- a/Math/Geometry/Shape/D2/D2ShapeInterface.php +++ b/Math/Geometry/Shape/D2/D2ShapeInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Geometry\Shape\ShapeInterface; * * @package phpOMS\Math\Geometry\Shape\D2 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface D2ShapeInterface extends ShapeInterface diff --git a/Math/Geometry/Shape/D2/Ellipse.php b/Math/Geometry/Shape/D2/Ellipse.php index bdd60d3fb..ee640b48e 100644 --- a/Math/Geometry/Shape/D2/Ellipse.php +++ b/Math/Geometry/Shape/D2/Ellipse.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D2; * * @package phpOMS\Math\Geometry\Shape\D2 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Ellipse implements D2ShapeInterface diff --git a/Math/Geometry/Shape/D2/Polygon.php b/Math/Geometry/Shape/D2/Polygon.php index 2d4f98b0d..7119afa50 100644 --- a/Math/Geometry/Shape/D2/Polygon.php +++ b/Math/Geometry/Shape/D2/Polygon.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D2; * * @package phpOMS\Math\Geometry\Shape\D2 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Polygon implements D2ShapeInterface diff --git a/Math/Geometry/Shape/D2/Quadrilateral.php b/Math/Geometry/Shape/D2/Quadrilateral.php index 280d284c7..628a41ca4 100644 --- a/Math/Geometry/Shape/D2/Quadrilateral.php +++ b/Math/Geometry/Shape/D2/Quadrilateral.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Geometry\Shape\D2; diff --git a/Math/Geometry/Shape/D2/Rectangle.php b/Math/Geometry/Shape/D2/Rectangle.php index 269c17d6f..231e5d4d2 100644 --- a/Math/Geometry/Shape/D2/Rectangle.php +++ b/Math/Geometry/Shape/D2/Rectangle.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D2; * * @package phpOMS\Math\Geometry\Shape\D2 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Rectangle implements D2ShapeInterface diff --git a/Math/Geometry/Shape/D2/Trapezoid.php b/Math/Geometry/Shape/D2/Trapezoid.php index 18bcbcaaf..cd95c73d8 100644 --- a/Math/Geometry/Shape/D2/Trapezoid.php +++ b/Math/Geometry/Shape/D2/Trapezoid.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D2; * * @package phpOMS\Math\Geometry\Shape\D2 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Trapezoid implements D2ShapeInterface diff --git a/Math/Geometry/Shape/D2/Triangle.php b/Math/Geometry/Shape/D2/Triangle.php index b9e64046d..68d0403ec 100644 --- a/Math/Geometry/Shape/D2/Triangle.php +++ b/Math/Geometry/Shape/D2/Triangle.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D2; * * @package phpOMS\Math\Geometry\Shape\D2 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Triangle implements D2ShapeInterface diff --git a/Math/Geometry/Shape/D3/Cone.php b/Math/Geometry/Shape/D3/Cone.php index 9725ea158..afb2df23f 100644 --- a/Math/Geometry/Shape/D3/Cone.php +++ b/Math/Geometry/Shape/D3/Cone.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D3; * * @package phpOMS\Math\Geometry\Shape\D3 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Cone implements D3ShapeInterface diff --git a/Math/Geometry/Shape/D3/Cuboid.php b/Math/Geometry/Shape/D3/Cuboid.php index 1a5b4c598..d41fb9fed 100644 --- a/Math/Geometry/Shape/D3/Cuboid.php +++ b/Math/Geometry/Shape/D3/Cuboid.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D3; * * @package phpOMS\Math\Geometry\Shape\D3 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Cuboid implements D3ShapeInterface diff --git a/Math/Geometry/Shape/D3/Cylinder.php b/Math/Geometry/Shape/D3/Cylinder.php index 49b8c9656..182dc2ef7 100644 --- a/Math/Geometry/Shape/D3/Cylinder.php +++ b/Math/Geometry/Shape/D3/Cylinder.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D3; * * @package phpOMS\Math\Geometry\Shape\D3 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Cylinder implements D3ShapeInterface diff --git a/Math/Geometry/Shape/D3/D3ShapeInterface.php b/Math/Geometry/Shape/D3/D3ShapeInterface.php index cb936ce15..9f189f0b3 100644 --- a/Math/Geometry/Shape/D3/D3ShapeInterface.php +++ b/Math/Geometry/Shape/D3/D3ShapeInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Geometry\Shape\ShapeInterface; * * @package phpOMS\Math\Geometry\Shape\D3 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface D3ShapeInterface extends ShapeInterface diff --git a/Math/Geometry/Shape/D3/Prism.php b/Math/Geometry/Shape/D3/Prism.php index f09576dc8..34012f382 100644 --- a/Math/Geometry/Shape/D3/Prism.php +++ b/Math/Geometry/Shape/D3/Prism.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Geometry\Shape\D3; diff --git a/Math/Geometry/Shape/D3/RectangularPyramid.php b/Math/Geometry/Shape/D3/RectangularPyramid.php index aed7f193b..613e0d131 100644 --- a/Math/Geometry/Shape/D3/RectangularPyramid.php +++ b/Math/Geometry/Shape/D3/RectangularPyramid.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D3; * * @package phpOMS\Math\Geometry\Shape\D3 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class RectangularPyramid implements D3ShapeInterface diff --git a/Math/Geometry/Shape/D3/Sphere.php b/Math/Geometry/Shape/D3/Sphere.php index c20032822..262591197 100644 --- a/Math/Geometry/Shape/D3/Sphere.php +++ b/Math/Geometry/Shape/D3/Sphere.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D3; * * @package phpOMS\Math\Geometry\Shape\D3 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Sphere implements D3ShapeInterface diff --git a/Math/Geometry/Shape/D3/Tetrahedron.php b/Math/Geometry/Shape/D3/Tetrahedron.php index 9faf7ac17..6e36214c1 100644 --- a/Math/Geometry/Shape/D3/Tetrahedron.php +++ b/Math/Geometry/Shape/D3/Tetrahedron.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape\D3; * * @package phpOMS\Math\Geometry\Shape\D3 * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Tetrahedron implements D3ShapeInterface diff --git a/Math/Geometry/Shape/ShapeInterface.php b/Math/Geometry/Shape/ShapeInterface.php index 504f026cb..fd0ded2f3 100644 --- a/Math/Geometry/Shape/ShapeInterface.php +++ b/Math/Geometry/Shape/ShapeInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Geometry\Shape; * * @package phpOMS\Math\Geometry\Shape * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ShapeInterface diff --git a/Math/Integral/Gauss.php b/Math/Integral/Gauss.php index 6ee4a8898..cfc5dfd8c 100644 --- a/Math/Integral/Gauss.php +++ b/Math/Integral/Gauss.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Math/Matrix/CholeskyDecomposition.php b/Math/Matrix/CholeskyDecomposition.php index f43e1ef9d..81aaa9b4c 100644 --- a/Math/Matrix/CholeskyDecomposition.php +++ b/Math/Matrix/CholeskyDecomposition.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Matrix * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class CholeskyDecomposition diff --git a/Math/Matrix/EigenvalueDecomposition.php b/Math/Matrix/EigenvalueDecomposition.php index 5a621d87b..1bcc9a405 100644 --- a/Math/Matrix/EigenvalueDecomposition.php +++ b/Math/Matrix/EigenvalueDecomposition.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\Math\Geometry\Shape\D2\Triangle; * * @package phpOMS\Math\Matrix * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class EigenvalueDecomposition diff --git a/Math/Matrix/Exception/InvalidDimensionException.php b/Math/Matrix/Exception/InvalidDimensionException.php index 02228184a..447ece23c 100644 --- a/Math/Matrix/Exception/InvalidDimensionException.php +++ b/Math/Matrix/Exception/InvalidDimensionException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Matrix\Exception; * * @package phpOMS\Math\Matrix\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class InvalidDimensionException extends \UnexpectedValueException diff --git a/Math/Matrix/IdentityMatrix.php b/Math/Matrix/IdentityMatrix.php index e593eb1a2..32ccbd4eb 100644 --- a/Math/Matrix/IdentityMatrix.php +++ b/Math/Matrix/IdentityMatrix.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Matrix; * * @package phpOMS\Math\Matrix * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class IdentityMatrix extends Matrix diff --git a/Math/Matrix/LUDecomposition.php b/Math/Matrix/LUDecomposition.php index 22e003d7d..55e3423a5 100644 --- a/Math/Matrix/LUDecomposition.php +++ b/Math/Matrix/LUDecomposition.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Matrix * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class LUDecomposition diff --git a/Math/Matrix/Matrix.php b/Math/Matrix/Matrix.php index ff0e8397d..73f076ffb 100644 --- a/Math/Matrix/Matrix.php +++ b/Math/Matrix/Matrix.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Matrix * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Matrix implements \ArrayAccess, \Iterator diff --git a/Math/Matrix/QRDecomposition.php b/Math/Matrix/QRDecomposition.php index 414f7db82..5442ce9e4 100644 --- a/Math/Matrix/QRDecomposition.php +++ b/Math/Matrix/QRDecomposition.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Matrix * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class QRDecomposition diff --git a/Math/Matrix/SingularValueDecomposition.php b/Math/Matrix/SingularValueDecomposition.php index 885ee259c..80f8d08ce 100644 --- a/Math/Matrix/SingularValueDecomposition.php +++ b/Math/Matrix/SingularValueDecomposition.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Geometry\Shape\D2\Triangle; * * @package phpOMS\Math\Matrix * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class SingularValueDecomposition diff --git a/Math/Matrix/Vector.php b/Math/Matrix/Vector.php index d6e2fe224..39bafeccf 100644 --- a/Math/Matrix/Vector.php +++ b/Math/Matrix/Vector.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Matrix; * * @package phpOMS\Math\Matrix * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Vector extends Matrix diff --git a/Math/Number/Complex.php b/Math/Number/Complex.php index 4da33fd24..fe3c0ed21 100644 --- a/Math/Number/Complex.php +++ b/Math/Number/Complex.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Number; * * @package phpOMS\Math\Number * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Complex diff --git a/Math/Number/Integer.php b/Math/Number/Integer.php index 73e57c4fd..abaa0523f 100644 --- a/Math/Number/Integer.php +++ b/Math/Number/Integer.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Number; * * @package phpOMS\Math\Number * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Integer diff --git a/Math/Number/Natural.php b/Math/Number/Natural.php index 23db1cc9c..685eab1bd 100644 --- a/Math/Number/Natural.php +++ b/Math/Number/Natural.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Number; * * @package phpOMS\Math\Number * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Natural diff --git a/Math/Number/NumberType.php b/Math/Number/NumberType.php index 2fb050100..0a432d4fa 100644 --- a/Math/Number/NumberType.php +++ b/Math/Number/NumberType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Math\Number * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class NumberType extends Enum diff --git a/Math/Number/Numbers.php b/Math/Number/Numbers.php index ec94f118b..5587b48ad 100644 --- a/Math/Number/Numbers.php +++ b/Math/Number/Numbers.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Number; * * @package phpOMS\Math\Number * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Numbers diff --git a/Math/Number/OperationInterface.php b/Math/Number/OperationInterface.php index b1f934470..46ab8944f 100644 --- a/Math/Number/OperationInterface.php +++ b/Math/Number/OperationInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Number; * * @package phpOMS\Math\Number * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface OperationInterface diff --git a/Math/Number/Prime.php b/Math/Number/Prime.php index 214723342..c7b473266 100644 --- a/Math/Number/Prime.php +++ b/Math/Number/Prime.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Number; * * @package phpOMS\Math\Number * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Prime diff --git a/Math/Numerics/Interpolation/CubicSplineInterpolation.php b/Math/Numerics/Interpolation/CubicSplineInterpolation.php index 84b0d5caa..d66533187 100644 --- a/Math/Numerics/Interpolation/CubicSplineInterpolation.php +++ b/Math/Numerics/Interpolation/CubicSplineInterpolation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Numerics\Interpolation; * * @package phpOMS\Math\Numerics\Interpolation * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class CubicSplineInterpolation diff --git a/Math/Numerics/Interpolation/LinearInterpolation.php b/Math/Numerics/Interpolation/LinearInterpolation.php index ca7f8a682..3e8e9bf72 100644 --- a/Math/Numerics/Interpolation/LinearInterpolation.php +++ b/Math/Numerics/Interpolation/LinearInterpolation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Numerics\Interpolation; * * @package phpOMS\Math\Numerics\Interpolation * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LinearInterpolation diff --git a/Math/Numerics/Interpolation/PolynomialInterpolation.php b/Math/Numerics/Interpolation/PolynomialInterpolation.php index 65882f82d..97596ff75 100644 --- a/Math/Numerics/Interpolation/PolynomialInterpolation.php +++ b/Math/Numerics/Interpolation/PolynomialInterpolation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Numerics\Interpolation; * * @package phpOMS\Math\Numerics\Interpolation * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class PolynomialInterpolation diff --git a/Math/Parser/Evaluator.php b/Math/Parser/Evaluator.php index 215e82c4f..6ab1e7329 100644 --- a/Math/Parser/Evaluator.php +++ b/Math/Parser/Evaluator.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Parser; * * @package phpOMS\Math\Parser * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Evaluator diff --git a/Math/Statistic/Average.php b/Math/Statistic/Average.php index f6aa8e3a9..6c151c7f7 100644 --- a/Math/Statistic/Average.php +++ b/Math/Statistic/Average.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Statistic * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Average diff --git a/Math/Statistic/Basic.php b/Math/Statistic/Basic.php index 1ac047cf7..00c82716f 100644 --- a/Math/Statistic/Basic.php +++ b/Math/Statistic/Basic.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Statistic; * * @package phpOMS\Math\Statistic * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Basic diff --git a/Math/Statistic/Correlation.php b/Math/Statistic/Correlation.php index 94490ad2c..81789a1b7 100644 --- a/Math/Statistic/Correlation.php +++ b/Math/Statistic/Correlation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Statistic; * * @package phpOMS\Math\Statistic * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Correlation diff --git a/Math/Statistic/Forecast/Error.php b/Math/Statistic/Forecast/Error.php index 7f76260b5..2bf425690 100644 --- a/Math/Statistic/Forecast/Error.php +++ b/Math/Statistic/Forecast/Error.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Math\Statistic\MeasureOfDispersion; * * @package phpOMS\Math\Statistic\Forecast * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Error diff --git a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php index 2d137a4ee..458020ff5 100644 --- a/Math/Statistic/Forecast/ForecastIntervalMultiplier.php +++ b/Math/Statistic/Forecast/ForecastIntervalMultiplier.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Math\Statistic\Forecast * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ForecastIntervalMultiplier extends Enum diff --git a/Math/Statistic/Forecast/Forecasts.php b/Math/Statistic/Forecast/Forecasts.php index 3c00ebc75..55eb67db6 100644 --- a/Math/Statistic/Forecast/Forecasts.php +++ b/Math/Statistic/Forecast/Forecasts.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Statistic\Forecast; * * @package phpOMS\Math\Statistic\Forecast * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Forecasts diff --git a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php index 011528058..8cdc9b333 100644 --- a/Math/Statistic/Forecast/Regression/LevelLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLevelRegression.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Statistic\Forecast\Regression; * * @package phpOMS\Math\Statistic\Forecast\Regression * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LevelLevelRegression extends RegressionAbstract diff --git a/Math/Statistic/Forecast/Regression/LevelLogRegression.php b/Math/Statistic/Forecast/Regression/LevelLogRegression.php index 0ca1ea271..04c166e03 100644 --- a/Math/Statistic/Forecast/Regression/LevelLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LevelLogRegression.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Statistic\Forecast\Regression * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LevelLogRegression extends RegressionAbstract diff --git a/Math/Statistic/Forecast/Regression/LogLevelRegression.php b/Math/Statistic/Forecast/Regression/LogLevelRegression.php index 25f731502..0c1bddc52 100644 --- a/Math/Statistic/Forecast/Regression/LogLevelRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLevelRegression.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Statistic\Forecast\Regression * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LogLevelRegression extends RegressionAbstract diff --git a/Math/Statistic/Forecast/Regression/LogLogRegression.php b/Math/Statistic/Forecast/Regression/LogLogRegression.php index 0a4bcc206..72518a601 100644 --- a/Math/Statistic/Forecast/Regression/LogLogRegression.php +++ b/Math/Statistic/Forecast/Regression/LogLogRegression.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Statistic\Forecast\Regression * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LogLogRegression extends RegressionAbstract diff --git a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php index b89bbf688..c8533afec 100644 --- a/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php +++ b/Math/Statistic/Forecast/Regression/MultipleLinearRegression.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; diff --git a/Math/Statistic/Forecast/Regression/RegressionAbstract.php b/Math/Statistic/Forecast/Regression/RegressionAbstract.php index ff62ca8d5..2029d4284 100644 --- a/Math/Statistic/Forecast/Regression/RegressionAbstract.php +++ b/Math/Statistic/Forecast/Regression/RegressionAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Statistic\Forecast\Regression; @@ -23,7 +23,7 @@ use phpOMS\Math\Statistic\MeasureOfDispersion; * * @package phpOMS\Math\Statistic\Forecast\Regression * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class RegressionAbstract diff --git a/Math/Statistic/MeasureOfDispersion.php b/Math/Statistic/MeasureOfDispersion.php index 2f9b0cc4c..f741d3682 100644 --- a/Math/Statistic/MeasureOfDispersion.php +++ b/Math/Statistic/MeasureOfDispersion.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; * * @package phpOMS\Math\Statistic * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class MeasureOfDispersion diff --git a/Math/Stochastic/Distribution/BernoulliDistribution.php b/Math/Stochastic/Distribution/BernoulliDistribution.php index 643cfc92f..2f01d4da0 100644 --- a/Math/Stochastic/Distribution/BernoulliDistribution.php +++ b/Math/Stochastic/Distribution/BernoulliDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class BernoulliDistribution diff --git a/Math/Stochastic/Distribution/BetaDistribution.php b/Math/Stochastic/Distribution/BetaDistribution.php index 5e473da4a..068f253c1 100644 --- a/Math/Stochastic/Distribution/BetaDistribution.php +++ b/Math/Stochastic/Distribution/BetaDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/BinomialDistribution.php b/Math/Stochastic/Distribution/BinomialDistribution.php index b5bd14dd2..12fc3e281 100644 --- a/Math/Stochastic/Distribution/BinomialDistribution.php +++ b/Math/Stochastic/Distribution/BinomialDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Math\Functions\Functions; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class BinomialDistribution diff --git a/Math/Stochastic/Distribution/CauchyDistribution.php b/Math/Stochastic/Distribution/CauchyDistribution.php index 280ed2a5a..c240ab8d1 100644 --- a/Math/Stochastic/Distribution/CauchyDistribution.php +++ b/Math/Stochastic/Distribution/CauchyDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class CauchyDistribution diff --git a/Math/Stochastic/Distribution/ChiSquaredDistribution.php b/Math/Stochastic/Distribution/ChiSquaredDistribution.php index c456ee97f..7656aec65 100644 --- a/Math/Stochastic/Distribution/ChiSquaredDistribution.php +++ b/Math/Stochastic/Distribution/ChiSquaredDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ChiSquaredDistribution diff --git a/Math/Stochastic/Distribution/ExponentialDistribution.php b/Math/Stochastic/Distribution/ExponentialDistribution.php index db2ec4882..6a6e9b0f4 100644 --- a/Math/Stochastic/Distribution/ExponentialDistribution.php +++ b/Math/Stochastic/Distribution/ExponentialDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ExponentialDistribution diff --git a/Math/Stochastic/Distribution/FDistribution.php b/Math/Stochastic/Distribution/FDistribution.php index 3eb31c2c0..c3e3ae877 100644 --- a/Math/Stochastic/Distribution/FDistribution.php +++ b/Math/Stochastic/Distribution/FDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/GammaDistribution.php b/Math/Stochastic/Distribution/GammaDistribution.php index da41ea4ec..957c9d657 100644 --- a/Math/Stochastic/Distribution/GammaDistribution.php +++ b/Math/Stochastic/Distribution/GammaDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/GeometricDistribution.php b/Math/Stochastic/Distribution/GeometricDistribution.php index 3d0cefdaa..8cd53f5c3 100644 --- a/Math/Stochastic/Distribution/GeometricDistribution.php +++ b/Math/Stochastic/Distribution/GeometricDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class GeometricDistribution diff --git a/Math/Stochastic/Distribution/HypergeometricDistribution.php b/Math/Stochastic/Distribution/HypergeometricDistribution.php index b8bc7e7ec..0e96afe5b 100644 --- a/Math/Stochastic/Distribution/HypergeometricDistribution.php +++ b/Math/Stochastic/Distribution/HypergeometricDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/LaplaceDistribution.php b/Math/Stochastic/Distribution/LaplaceDistribution.php index a349621ed..6ac1fce84 100644 --- a/Math/Stochastic/Distribution/LaplaceDistribution.php +++ b/Math/Stochastic/Distribution/LaplaceDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LaplaceDistribution diff --git a/Math/Stochastic/Distribution/LogDistribution.php b/Math/Stochastic/Distribution/LogDistribution.php index e3605429c..9abbfd1b4 100644 --- a/Math/Stochastic/Distribution/LogDistribution.php +++ b/Math/Stochastic/Distribution/LogDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/LogNormalDistribution.php b/Math/Stochastic/Distribution/LogNormalDistribution.php index a7e52df9d..edcc4ef66 100644 --- a/Math/Stochastic/Distribution/LogNormalDistribution.php +++ b/Math/Stochastic/Distribution/LogNormalDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/LogisticDistribution.php b/Math/Stochastic/Distribution/LogisticDistribution.php index 51e75f038..1d8a48c41 100644 --- a/Math/Stochastic/Distribution/LogisticDistribution.php +++ b/Math/Stochastic/Distribution/LogisticDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/NormalDistribution.php b/Math/Stochastic/Distribution/NormalDistribution.php index d19e64830..3f597e118 100644 --- a/Math/Stochastic/Distribution/NormalDistribution.php +++ b/Math/Stochastic/Distribution/NormalDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class NormalDistribution diff --git a/Math/Stochastic/Distribution/ParetoDistribution.php b/Math/Stochastic/Distribution/ParetoDistribution.php index badb44338..62888b2ad 100644 --- a/Math/Stochastic/Distribution/ParetoDistribution.php +++ b/Math/Stochastic/Distribution/ParetoDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/PoissonDistribution.php b/Math/Stochastic/Distribution/PoissonDistribution.php index 7da9130b9..4bd45f6f4 100644 --- a/Math/Stochastic/Distribution/PoissonDistribution.php +++ b/Math/Stochastic/Distribution/PoissonDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Math\Functions\Gamma; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class PoissonDistribution diff --git a/Math/Stochastic/Distribution/TDistribution.php b/Math/Stochastic/Distribution/TDistribution.php index 156e4167d..6a0226f32 100644 --- a/Math/Stochastic/Distribution/TDistribution.php +++ b/Math/Stochastic/Distribution/TDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/UniformDistributionContinuous.php b/Math/Stochastic/Distribution/UniformDistributionContinuous.php index 76df96271..aef806572 100644 --- a/Math/Stochastic/Distribution/UniformDistributionContinuous.php +++ b/Math/Stochastic/Distribution/UniformDistributionContinuous.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class UniformDistributionContinuous diff --git a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php index 744fd882e..79493a6a2 100644 --- a/Math/Stochastic/Distribution/UniformDistributionDiscrete.php +++ b/Math/Stochastic/Distribution/UniformDistributionDiscrete.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class UniformDistributionDiscrete diff --git a/Math/Stochastic/Distribution/WeibullDistribution.php b/Math/Stochastic/Distribution/WeibullDistribution.php index 0eda48340..b4595cbad 100644 --- a/Math/Stochastic/Distribution/WeibullDistribution.php +++ b/Math/Stochastic/Distribution/WeibullDistribution.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic\Distribution; diff --git a/Math/Stochastic/Distribution/ZTest.php b/Math/Stochastic/Distribution/ZTest.php index dc0663abc..1279719e1 100644 --- a/Math/Stochastic/Distribution/ZTest.php +++ b/Math/Stochastic/Distribution/ZTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Math\Stochastic\Distribution; * * @package phpOMS\Math\Stochastic\Distribution * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ZTest diff --git a/Math/Stochastic/NaiveBayesFilter.php b/Math/Stochastic/NaiveBayesFilter.php index d8a9baa6b..36fcf7fd2 100644 --- a/Math/Stochastic/NaiveBayesFilter.php +++ b/Math/Stochastic/NaiveBayesFilter.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Math\Stochastic; @@ -18,7 +18,7 @@ namespace phpOMS\Math\Stochastic; * * @package phpOMS\Math\Stochastic * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class NaiveBayesFilter diff --git a/Message/Console/Header.php b/Message/Console/Header.php index 22995d4bb..9f050ee10 100644 --- a/Message/Console/Header.php +++ b/Message/Console/Header.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Message\HeaderAbstract; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.Superglobals) diff --git a/Message/Console/Request.php b/Message/Console/Request.php index d10555005..d3ae213d9 100644 --- a/Message/Console/Request.php +++ b/Message/Console/Request.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -26,7 +26,7 @@ use phpOMS\Uri\UriInterface; * * @package phpOMS\Message\Console * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.Superglobals) diff --git a/Message/Console/Response.php b/Message/Console/Response.php index 645de7fb5..e76cf9ef0 100644 --- a/Message/Console/Response.php +++ b/Message/Console/Response.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -27,7 +27,7 @@ use phpOMS\Views\View; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Response extends ResponseAbstract implements RenderableInterface diff --git a/Message/HeaderAbstract.php b/Message/HeaderAbstract.php index 45cdb5d91..9d38d37ae 100644 --- a/Message/HeaderAbstract.php +++ b/Message/HeaderAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Localization\Localization; * * @package phpOMS\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class HeaderAbstract diff --git a/Message/Http/BrowserType.php b/Message/Http/BrowserType.php index 7873b6f6f..0c14e30d5 100644 --- a/Message/Http/BrowserType.php +++ b/Message/Http/BrowserType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class BrowserType extends Enum diff --git a/Message/Http/Header.php b/Message/Http/Header.php index 2728db529..24a66d4b5 100644 --- a/Message/Http/Header.php +++ b/Message/Http/Header.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\System\MimeType; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.Superglobals) diff --git a/Message/Http/OSType.php b/Message/Http/OSType.php index 573661333..63df67664 100644 --- a/Message/Http/OSType.php +++ b/Message/Http/OSType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class OSType extends Enum diff --git a/Message/Http/Request.php b/Message/Http/Request.php index 79f4649a7..ba0e6d47e 100644 --- a/Message/Http/Request.php +++ b/Message/Http/Request.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -26,7 +26,7 @@ use phpOMS\Uri\UriInterface; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.Superglobals) diff --git a/Message/Http/RequestMethod.php b/Message/Http/RequestMethod.php index aa9e9b07c..74f9657f1 100644 --- a/Message/Http/RequestMethod.php +++ b/Message/Http/RequestMethod.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class RequestMethod extends Enum diff --git a/Message/Http/RequestStatus.php b/Message/Http/RequestStatus.php index 3f2988870..50b32f848 100644 --- a/Message/Http/RequestStatus.php +++ b/Message/Http/RequestStatus.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class RequestStatus extends Enum diff --git a/Message/Http/RequestStatusCode.php b/Message/Http/RequestStatusCode.php index 018fbbbef..875cb3ae0 100644 --- a/Message/Http/RequestStatusCode.php +++ b/Message/Http/RequestStatusCode.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Message\Http; @@ -20,7 +20,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class RequestStatusCode extends Enum diff --git a/Message/Http/Response.php b/Message/Http/Response.php index 193903fc7..811166928 100644 --- a/Message/Http/Response.php +++ b/Message/Http/Response.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -27,7 +27,7 @@ use phpOMS\Views\View; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Response extends ResponseAbstract implements RenderableInterface diff --git a/Message/Http/Rest.php b/Message/Http/Rest.php index 090c7b333..062027ace 100644 --- a/Message/Http/Rest.php +++ b/Message/Http/Rest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Message\Http; * * @package phpOMS\Message\Http * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Rest diff --git a/Message/Mail/ContentEncoding.php b/Message/Mail/ContentEncoding.php index 5eccdc42e..17ab578b0 100644 --- a/Message/Mail/ContentEncoding.php +++ b/Message/Mail/ContentEncoding.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message\Mail * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ContentEncoding extends Enum diff --git a/Message/Mail/EmailAbstract.php b/Message/Mail/EmailAbstract.php index cc0bca615..8f6976a24 100644 --- a/Message/Mail/EmailAbstract.php +++ b/Message/Mail/EmailAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Message\Mail; * * @package phpOMS\Message\Mail * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class EmailAbstract diff --git a/Message/Mail/Imap.php b/Message/Mail/Imap.php index d26ec8576..4e2d8332e 100644 --- a/Message/Mail/Imap.php +++ b/Message/Mail/Imap.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Message\Mail; * * @package phpOMS\Message\Mail * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Imap extends EmailAbstract diff --git a/Message/Mail/Mail.php b/Message/Mail/Mail.php index 6950de1bc..16e85cda1 100644 --- a/Message/Mail/Mail.php +++ b/Message/Mail/Mail.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Message\Mail; * * @package phpOMS\Message\Mail * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Mail diff --git a/Message/Mail/Pop3.php b/Message/Mail/Pop3.php index e201f0738..14146a1b1 100644 --- a/Message/Mail/Pop3.php +++ b/Message/Mail/Pop3.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Message\Mail; * * @package phpOMS\Message\Mail * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Pop3 extends EmailAbstract diff --git a/Message/MessageInterface.php b/Message/MessageInterface.php index 895deea7f..002fea33d 100644 --- a/Message/MessageInterface.php +++ b/Message/MessageInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Message; * * @package phpOMS\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface MessageInterface diff --git a/Message/NotificationLevel.php b/Message/NotificationLevel.php index 5fec77ae2..4cb6b83d6 100644 --- a/Message/NotificationLevel.php +++ b/Message/NotificationLevel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class NotificationLevel extends Enum diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 58fa63460..731195152 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Uri\UriInterface; * * @package phpOMS\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class RequestAbstract implements MessageInterface diff --git a/Message/RequestSource.php b/Message/RequestSource.php index 51af67e08..0754e54f7 100644 --- a/Message/RequestSource.php +++ b/Message/RequestSource.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class RequestSource extends Enum diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index 38c5d3b4c..ffab9b77c 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Message; * * @package phpOMS\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable diff --git a/Message/ResponseType.php b/Message/ResponseType.php index af557414d..b16624d33 100644 --- a/Message/ResponseType.php +++ b/Message/ResponseType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ResponseType extends Enum diff --git a/Message/Socket/Request.php b/Message/Socket/Request.php index b5fc42045..2e908dff9 100644 --- a/Message/Socket/Request.php +++ b/Message/Socket/Request.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Message\Socket; diff --git a/Message/Socket/Response.php b/Message/Socket/Response.php index f27da9aa6..6c095b808 100644 --- a/Message/Socket/Response.php +++ b/Message/Socket/Response.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Message\Socket; diff --git a/Message/UploadedFileInterface.php b/Message/UploadedFileInterface.php index e5fc68156..1e4cccd86 100644 --- a/Message/UploadedFileInterface.php +++ b/Message/UploadedFileInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Message; * * @package phpOMS\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface UploadedFileInterface diff --git a/Model/Html/Head.php b/Model/Html/Head.php index 32e550aef..e6334bdc9 100644 --- a/Model/Html/Head.php +++ b/Model/Html/Head.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -25,7 +25,7 @@ use phpOMS\Localization\ISO639x1Enum; * * @package phpOMS\Model\Html * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Head implements RenderableInterface diff --git a/Model/Html/Meta.php b/Model/Html/Meta.php index c455541b5..c243dd558 100644 --- a/Model/Html/Meta.php +++ b/Model/Html/Meta.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Views\ViewAbstract; * * @package phpOMS\Model\Html * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Meta implements RenderableInterface diff --git a/Model/Message/Dom.php b/Model/Message/Dom.php index f91039b77..189d2a3af 100644 --- a/Model/Message/Dom.php +++ b/Model/Message/Dom.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Contract\ArrayableInterface; * * @package phpOMS\Model\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Dom implements \Serializable, ArrayableInterface diff --git a/Model/Message/DomAction.php b/Model/Message/DomAction.php index 95cfd51f8..7736f347d 100644 --- a/Model/Message/DomAction.php +++ b/Model/Message/DomAction.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Model\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class DomAction extends Enum diff --git a/Model/Message/FormValidation.php b/Model/Message/FormValidation.php index a3e92d9d1..d0ce8f4ce 100644 --- a/Model/Message/FormValidation.php +++ b/Model/Message/FormValidation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Contract\ArrayableInterface; * * @package phpOMS\Model\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class FormValidation implements \Serializable, ArrayableInterface, \JsonSerializable diff --git a/Model/Message/Notify.php b/Model/Message/Notify.php index f36f7f034..5a7b63b81 100644 --- a/Model/Message/Notify.php +++ b/Model/Message/Notify.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Contract\ArrayableInterface; * * @package phpOMS\Model\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Notify implements \Serializable, ArrayableInterface, \JsonSerializable diff --git a/Model/Message/NotifyType.php b/Model/Message/NotifyType.php index b9f596010..2b35442d0 100644 --- a/Model/Message/NotifyType.php +++ b/Model/Message/NotifyType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Model\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class NotifyType extends Enum diff --git a/Model/Message/Redirect.php b/Model/Message/Redirect.php index 586614988..2d1dd9a27 100644 --- a/Model/Message/Redirect.php +++ b/Model/Message/Redirect.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Contract\ArrayableInterface; * * @package phpOMS\Model\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Redirect implements \Serializable, ArrayableInterface, \JsonSerializable diff --git a/Model/Message/Reload.php b/Model/Message/Reload.php index a46bb6b58..f7e23b7ea 100644 --- a/Model/Message/Reload.php +++ b/Model/Message/Reload.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Contract\ArrayableInterface; * * @package phpOMS\Model\Message * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Reload implements \Serializable, ArrayableInterface, \JsonSerializable diff --git a/Module/ConsoleInterface.php b/Module/ConsoleInterface.php index 2a27326f4..902020649 100644 --- a/Module/ConsoleInterface.php +++ b/Module/ConsoleInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Module; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ConsoleInterface diff --git a/Module/Exception/InvalidModuleException.php b/Module/Exception/InvalidModuleException.php index 8bb55a1c8..350d4d289 100644 --- a/Module/Exception/InvalidModuleException.php +++ b/Module/Exception/InvalidModuleException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Module\Exception; * * @package phpOMS\Module\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class InvalidModuleException extends \UnexpectedValueException diff --git a/Module/Exception/InvalidThemeException.php b/Module/Exception/InvalidThemeException.php index 36e06c276..dec944787 100644 --- a/Module/Exception/InvalidThemeException.php +++ b/Module/Exception/InvalidThemeException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Module\Exception; * * @package phpOMS\Module\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class InvalidThemeException extends \UnexpectedValueException diff --git a/Module/InfoManager.php b/Module/InfoManager.php index eff6c91cb..b51ad83c1 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\Utils\ArrayUtils; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class InfoManager diff --git a/Module/InstallerAbstract.php b/Module/InstallerAbstract.php index 698380c38..b82095f5e 100644 --- a/Module/InstallerAbstract.php +++ b/Module/InstallerAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -28,7 +28,7 @@ use phpOMS\Utils\Parser\Php\ArrayParser; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class InstallerAbstract diff --git a/Module/ModuleAbstract.php b/Module/ModuleAbstract.php index 1b725459c..d624cf29d 100644 --- a/Module/ModuleAbstract.php +++ b/Module/ModuleAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\System\MimeType; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @todo: maybe move to Modules because this is very project specific and not general enough for a framework diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index 5c82696bd..f42723e3e 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -29,7 +29,7 @@ use phpOMS\System\File\PathException; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class ModuleManager diff --git a/Module/ModuleStatus.php b/Module/ModuleStatus.php index a535ac6df..13390e3da 100644 --- a/Module/ModuleStatus.php +++ b/Module/ModuleStatus.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\Module; @@ -20,7 +20,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ModuleStatus extends Enum diff --git a/Module/NullModule.php b/Module/NullModule.php index 3c147ae8a..0fcc344ce 100644 --- a/Module/NullModule.php +++ b/Module/NullModule.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Module; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class NullModule extends ModuleAbstract diff --git a/Module/PackageManager.php b/Module/PackageManager.php index 0f336082c..109b1c361 100644 --- a/Module/PackageManager.php +++ b/Module/PackageManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -28,7 +28,7 @@ use phpOMS\Utils\StringUtils; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class PackageManager diff --git a/Module/SocketInterface.php b/Module/SocketInterface.php index 507f6b535..d5428a1a4 100644 --- a/Module/SocketInterface.php +++ b/Module/SocketInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Module; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface SocketInterface diff --git a/Module/StatusAbstract.php b/Module/StatusAbstract.php index 713ab10b9..277d67150 100644 --- a/Module/StatusAbstract.php +++ b/Module/StatusAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\DataStorage\Database\Query\Builder; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class StatusAbstract diff --git a/Module/UninstallerAbstract.php b/Module/UninstallerAbstract.php index 353153b87..782c537fa 100644 --- a/Module/UninstallerAbstract.php +++ b/Module/UninstallerAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Schema\Builder as SchemaBuilder; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class UninstallerAbstract diff --git a/Module/UpdaterAbstract.php b/Module/UpdaterAbstract.php index 362ee684a..657ff900b 100644 --- a/Module/UpdaterAbstract.php +++ b/Module/UpdaterAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\DatabasePool; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class UpdaterAbstract diff --git a/Module/WebInterface.php b/Module/WebInterface.php index 19ebec383..ecf763856 100644 --- a/Module/WebInterface.php +++ b/Module/WebInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Module; * * @package phpOMS\Module * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface WebInterface diff --git a/Router/RouteVerb.php b/Router/RouteVerb.php index fd9001aeb..4d4a6a06d 100644 --- a/Router/RouteVerb.php +++ b/Router/RouteVerb.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Router * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class RouteVerb extends Enum diff --git a/Router/Router.php b/Router/Router.php index 3461f54c3..877621870 100644 --- a/Router/Router.php +++ b/Router/Router.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Uri\Http; * * @package phpOMS\Router * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Router diff --git a/Security/PhpCode.php b/Security/PhpCode.php index 46c7a090e..26d63a2fe 100644 --- a/Security/PhpCode.php +++ b/Security/PhpCode.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ namespace phpOMS\Security; * * @package phpOMS\Security * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class PhpCode diff --git a/Socket/Client/Client.php b/Socket/Client/Client.php index 87231e600..8d005308a 100644 --- a/Socket/Client/Client.php +++ b/Socket/Client/Client.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Socket\SocketAbstract; * * @package phpOMS\Socket\Client * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Client extends SocketAbstract diff --git a/Socket/Client/ClientConnection.php b/Socket/Client/ClientConnection.php index 84e8c855a..45206f4fb 100644 --- a/Socket/Client/ClientConnection.php +++ b/Socket/Client/ClientConnection.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Socket\Client; * * @package phpOMS\Socket\Client * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ClientConnection diff --git a/Socket/Client/NullClientConnection.php b/Socket/Client/NullClientConnection.php index 21f933c6d..76c18a1e4 100644 --- a/Socket/Client/NullClientConnection.php +++ b/Socket/Client/NullClientConnection.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Socket\Client; * * @package phpOMS\Socket\Client * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class NullClientConnection extends ClientConnection diff --git a/Socket/CommandManager.php b/Socket/CommandManager.php index b445753ed..26932c8da 100644 --- a/Socket/CommandManager.php +++ b/Socket/CommandManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Socket/Packets/Header.php b/Socket/Packets/Header.php index f0dbe5253..7a6827347 100644 --- a/Socket/Packets/Header.php +++ b/Socket/Packets/Header.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Socket\Packets; * * @package phpOMS\Socket\Packets * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Header implements \Serializable diff --git a/Socket/Packets/PacketAbstract.php b/Socket/Packets/PacketAbstract.php index b487e1acf..78c461184 100644 --- a/Socket/Packets/PacketAbstract.php +++ b/Socket/Packets/PacketAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Socket\Packets; * * @package phpOMS\Socket\Packets * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class PacketAbstract implements \Serializable diff --git a/Socket/Packets/PacketManager.php b/Socket/Packets/PacketManager.php index cb9f45dc8..bf598d51d 100644 --- a/Socket/Packets/PacketManager.php +++ b/Socket/Packets/PacketManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\Socket\Server\ClientManager; * * @package phpOMS\Socket\Packets * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class PacketManager diff --git a/Socket/Packets/PacketType.php b/Socket/Packets/PacketType.php index bb7993847..aa194b323 100644 --- a/Socket/Packets/PacketType.php +++ b/Socket/Packets/PacketType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Socket\Packets * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class PacketType extends Enum diff --git a/Socket/Server/ClientManager.php b/Socket/Server/ClientManager.php index 271d1553b..0fd438c72 100644 --- a/Socket/Server/ClientManager.php +++ b/Socket/Server/ClientManager.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Socket/Server/Server.php b/Socket/Server/Server.php index af2869d1b..9c6a48a37 100644 --- a/Socket/Server/Server.php +++ b/Socket/Server/Server.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\Socket\SocketAbstract; * * @package phpOMS\Socket\Server * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Server extends SocketAbstract diff --git a/Socket/SocketAbstract.php b/Socket/SocketAbstract.php index a70e8a6d0..72d332dd9 100644 --- a/Socket/SocketAbstract.php +++ b/Socket/SocketAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Socket; * * @package phpOMS\Socket * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class SocketAbstract implements SocketInterface diff --git a/Socket/SocketInterface.php b/Socket/SocketInterface.php index 86439ef12..66e41cebc 100644 --- a/Socket/SocketInterface.php +++ b/Socket/SocketInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Socket; * * @package phpOMS\Socket * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface SocketInterface diff --git a/Socket/SocketType.php b/Socket/SocketType.php index 15446e32e..a8e07b015 100644 --- a/Socket/SocketType.php +++ b/Socket/SocketType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Socket * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class SocketType extends Enum diff --git a/Stdlib/Base/Address.php b/Stdlib/Base/Address.php index b4508e9ed..99d1cdbf6 100644 --- a/Stdlib/Base/Address.php +++ b/Stdlib/Base/Address.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Base; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Address implements \JsonSerializable diff --git a/Stdlib/Base/AddressType.php b/Stdlib/Base/AddressType.php index 0f8b688bc..bdb788cb0 100644 --- a/Stdlib/Base/AddressType.php +++ b/Stdlib/Base/AddressType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Base; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class AddressType extends Enum diff --git a/Stdlib/Base/Enum.php b/Stdlib/Base/Enum.php index db7396048..7636f9eee 100644 --- a/Stdlib/Base/Enum.php +++ b/Stdlib/Base/Enum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Stdlib\Base; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class Enum diff --git a/Stdlib/Base/EnumArray.php b/Stdlib/Base/EnumArray.php index b8ced1d07..d519401a5 100644 --- a/Stdlib/Base/EnumArray.php +++ b/Stdlib/Base/EnumArray.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Stdlib\Base; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class EnumArray diff --git a/Stdlib/Base/Exception/InvalidEnumName.php b/Stdlib/Base/Exception/InvalidEnumName.php index 92c79ba5e..76e7c2c86 100644 --- a/Stdlib/Base/Exception/InvalidEnumName.php +++ b/Stdlib/Base/Exception/InvalidEnumName.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Stdlib\Base\Exception; * * @package phpOMS\Stdlib\Base\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class InvalidEnumName extends \UnexpectedValueException diff --git a/Stdlib/Base/Exception/InvalidEnumValue.php b/Stdlib/Base/Exception/InvalidEnumValue.php index 059d0e81d..abd35fdd3 100644 --- a/Stdlib/Base/Exception/InvalidEnumValue.php +++ b/Stdlib/Base/Exception/InvalidEnumValue.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Stdlib\Base\Exception; * * @package phpOMS\Stdlib\Base\Exception * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class InvalidEnumValue extends \UnexpectedValueException diff --git a/Stdlib/Base/Iban.php b/Stdlib/Base/Iban.php index dc3ceddbf..2e3a6c61e 100644 --- a/Stdlib/Base/Iban.php +++ b/Stdlib/Base/Iban.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\Finance\IbanEnum; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Iban implements \Serializable diff --git a/Stdlib/Base/Location.php b/Stdlib/Base/Location.php index 2f8975ba7..9467f9cc0 100644 --- a/Stdlib/Base/Location.php +++ b/Stdlib/Base/Location.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Base; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Location implements \JsonSerializable, \Serializable diff --git a/Stdlib/Base/NullLocation.php b/Stdlib/Base/NullLocation.php index 9a217e73c..83d8b6023 100644 --- a/Stdlib/Base/NullLocation.php +++ b/Stdlib/Base/NullLocation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Base; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class NullLocation extends Location diff --git a/Stdlib/Base/PhoneType.php b/Stdlib/Base/PhoneType.php index 6b0be5fcb..8009b8fd6 100644 --- a/Stdlib/Base/PhoneType.php +++ b/Stdlib/Base/PhoneType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Base; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class PhoneType extends Enum diff --git a/Stdlib/Base/SmartDateTime.php b/Stdlib/Base/SmartDateTime.php index 3f5b4a53a..a6df118ad 100644 --- a/Stdlib/Base/SmartDateTime.php +++ b/Stdlib/Base/SmartDateTime.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Math\Functions\Functions; * * @package phpOMS\Stdlib\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class SmartDateTime extends \DateTime diff --git a/Stdlib/Graph/BinaryTree.php b/Stdlib/Graph/BinaryTree.php index 8b32b48dd..537e8a841 100644 --- a/Stdlib/Graph/BinaryTree.php +++ b/Stdlib/Graph/BinaryTree.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Graph; * * @package phpOMS\Stdlib\Graph * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @todo : there is a bug with Hungary ibans since they have two k (checksums) in their definition diff --git a/Stdlib/Graph/Edge.php b/Stdlib/Graph/Edge.php index f6e9b9a37..b8142754d 100644 --- a/Stdlib/Graph/Edge.php +++ b/Stdlib/Graph/Edge.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Graph; * * @package phpOMS\Stdlib\Graph * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Edge diff --git a/Stdlib/Graph/Graph.php b/Stdlib/Graph/Graph.php index 1832bead0..5bb84df03 100644 --- a/Stdlib/Graph/Graph.php +++ b/Stdlib/Graph/Graph.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Graph; * * @package phpOMS\Stdlib\Graph * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Graph diff --git a/Stdlib/Graph/Node.php b/Stdlib/Graph/Node.php index 3b93b7a81..8afac6f17 100644 --- a/Stdlib/Graph/Node.php +++ b/Stdlib/Graph/Node.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Graph; * * @package phpOMS\Stdlib\Graph * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @todo : there is a bug with Hungary ibans since they have two k (checksums) in their definition diff --git a/Stdlib/Graph/Tree.php b/Stdlib/Graph/Tree.php index 2ed22668b..f7420530e 100644 --- a/Stdlib/Graph/Tree.php +++ b/Stdlib/Graph/Tree.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Stdlib\Graph; * * @package phpOMS\Stdlib\Graph * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Tree extends Graph diff --git a/Stdlib/Map/KeyType.php b/Stdlib/Map/KeyType.php index 80a9b8a0e..09bcc9c87 100644 --- a/Stdlib/Map/KeyType.php +++ b/Stdlib/Map/KeyType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Stdlib\Map * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class KeyType extends Enum diff --git a/Stdlib/Map/MultiMap.php b/Stdlib/Map/MultiMap.php index 3172c872a..a2ed859da 100644 --- a/Stdlib/Map/MultiMap.php +++ b/Stdlib/Map/MultiMap.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Utils\Permutation; * * @package phpOMS\Stdlib\Map * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class MultiMap implements \Countable diff --git a/Stdlib/Map/OrderType.php b/Stdlib/Map/OrderType.php index 0363ed1e9..39238d35e 100644 --- a/Stdlib/Map/OrderType.php +++ b/Stdlib/Map/OrderType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Stdlib\Map * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class OrderType extends Enum diff --git a/Stdlib/Queue/PriorityMode.php b/Stdlib/Queue/PriorityMode.php index f48a553d8..041ca2a34 100644 --- a/Stdlib/Queue/PriorityMode.php +++ b/Stdlib/Queue/PriorityMode.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Stdlib\Queue * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class PriorityMode extends Enum diff --git a/Stdlib/Queue/PriorityQueue.php b/Stdlib/Queue/PriorityQueue.php index 5b0cb61d7..e62fa961f 100644 --- a/Stdlib/Queue/PriorityQueue.php +++ b/Stdlib/Queue/PriorityQueue.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; * * @package phpOMS\Stdlib\Queue * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class PriorityQueue implements \Countable, \Serializable diff --git a/System/File/ContainerInterface.php b/System/File/ContainerInterface.php index 6b897355d..22f935496 100644 --- a/System/File/ContainerInterface.php +++ b/System/File/ContainerInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\System\File; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ContainerInterface diff --git a/System/File/ContentPutMode.php b/System/File/ContentPutMode.php index a6b67b383..8efdd4284 100644 --- a/System/File/ContentPutMode.php +++ b/System/File/ContentPutMode.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ContentPutMode extends Enum diff --git a/System/File/DirectoryInterface.php b/System/File/DirectoryInterface.php index ab7ef88b9..a25480ce2 100644 --- a/System/File/DirectoryInterface.php +++ b/System/File/DirectoryInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\System\File; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface DirectoryInterface extends ContainerInterface, \Iterator, \ArrayAccess diff --git a/System/File/ExtensionType.php b/System/File/ExtensionType.php index 2284d5422..8628e1177 100644 --- a/System/File/ExtensionType.php +++ b/System/File/ExtensionType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ExtensionType extends Enum diff --git a/System/File/FileInterface.php b/System/File/FileInterface.php index 146a6482b..1518a6662 100644 --- a/System/File/FileInterface.php +++ b/System/File/FileInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\System\File; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface FileInterface extends ContainerInterface diff --git a/System/File/FileUtils.php b/System/File/FileUtils.php index 30e397c7a..740340b17 100644 --- a/System/File/FileUtils.php +++ b/System/File/FileUtils.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\System\File; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class FileUtils diff --git a/System/File/Ftp/Directory.php b/System/File/Ftp/Directory.php index dc91d6be1..a47711767 100644 --- a/System/File/Ftp/Directory.php +++ b/System/File/Ftp/Directory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -28,7 +28,7 @@ use phpOMS\Uri\Http; * * @package phpOMS\System\File\Ftp * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Directory extends FileAbstract implements FtpContainerInterface, DirectoryInterface diff --git a/System/File/Ftp/File.php b/System/File/Ftp/File.php index fa296b3b2..5a934785a 100644 --- a/System/File/Ftp/File.php +++ b/System/File/Ftp/File.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -31,7 +31,7 @@ use phpOMS\Uri\Http; * * @package phpOMS\System\File\Ftp * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class File extends FileAbstract implements FileInterface diff --git a/System/File/Ftp/FileAbstract.php b/System/File/Ftp/FileAbstract.php index 9ae8135d6..52c428e34 100644 --- a/System/File/Ftp/FileAbstract.php +++ b/System/File/Ftp/FileAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\System\File\ContainerInterface; * * @package phpOMS\System\File\Ftp * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class FileAbstract implements ContainerInterface diff --git a/System/File/Ftp/FtpContainerInterface.php b/System/File/Ftp/FtpContainerInterface.php index 4bd7ccdca..00951e8d2 100644 --- a/System/File/Ftp/FtpContainerInterface.php +++ b/System/File/Ftp/FtpContainerInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\System\File\Ftp; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface FtpContainerInterface diff --git a/System/File/Ftp/FtpStorage.php b/System/File/Ftp/FtpStorage.php index 20a2d9c78..f999cf50d 100644 --- a/System/File/Ftp/FtpStorage.php +++ b/System/File/Ftp/FtpStorage.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\System\File\StorageAbstract; * * @package phpOMS\System\File\Ftp * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * @codeCoverageIgnore */ diff --git a/System/File/Local/Directory.php b/System/File/Local/Directory.php index 6e534a0f4..60fcada2b 100644 --- a/System/File/Local/Directory.php +++ b/System/File/Local/Directory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -26,7 +26,7 @@ use phpOMS\Utils\StringUtils; * * @package phpOMS\System\File\Local * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Directory extends FileAbstract implements LocalContainerInterface, DirectoryInterface diff --git a/System/File/Local/File.php b/System/File/Local/File.php index 2b84abc63..9304ee0c0 100644 --- a/System/File/Local/File.php +++ b/System/File/Local/File.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -26,7 +26,7 @@ use phpOMS\System\File\PathException; * * @package phpOMS\System\File\Local * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class File extends FileAbstract implements LocalContainerInterface, FileInterface diff --git a/System/File/Local/FileAbstract.php b/System/File/Local/FileAbstract.php index 9c9a62dfd..6381707e6 100644 --- a/System/File/Local/FileAbstract.php +++ b/System/File/Local/FileAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\System\File\ContainerInterface; * * @package phpOMS\System\File\Local * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class FileAbstract implements ContainerInterface diff --git a/System/File/Local/LocalContainerInterface.php b/System/File/Local/LocalContainerInterface.php index 0ba1c6e07..1b08d05e5 100644 --- a/System/File/Local/LocalContainerInterface.php +++ b/System/File/Local/LocalContainerInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\System\File\Local; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface LocalContainerInterface diff --git a/System/File/Local/LocalStorage.php b/System/File/Local/LocalStorage.php index 3d15ad395..290b7ce65 100644 --- a/System/File/Local/LocalStorage.php +++ b/System/File/Local/LocalStorage.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\System\File\StorageAbstract; * * @package phpOMS\System\File\Local * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LocalStorage extends StorageAbstract diff --git a/System/File/PathException.php b/System/File/PathException.php index 713f53702..becf696df 100644 --- a/System/File/PathException.php +++ b/System/File/PathException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\System\File; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class PathException extends \UnexpectedValueException diff --git a/System/File/PermissionException.php b/System/File/PermissionException.php index d5d6f1f12..757f4afbf 100644 --- a/System/File/PermissionException.php +++ b/System/File/PermissionException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\System\File; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class PermissionException extends \RuntimeException diff --git a/System/File/Storage.php b/System/File/Storage.php index b779a30af..82dfd6a10 100644 --- a/System/File/Storage.php +++ b/System/File/Storage.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\System\File; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Storage diff --git a/System/File/StorageAbstract.php b/System/File/StorageAbstract.php index 8c4ca3672..de7fe114d 100644 --- a/System/File/StorageAbstract.php +++ b/System/File/StorageAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\System\File; * * @package phpOMS\System\File * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class StorageAbstract diff --git a/System/MimeType.php b/System/MimeType.php index 197c6b9d0..cd444c53b 100644 --- a/System/MimeType.php +++ b/System/MimeType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\System * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class MimeType extends Enum diff --git a/System/OperatingSystem.php b/System/OperatingSystem.php index 10528647d..ad25c3049 100644 --- a/System/OperatingSystem.php +++ b/System/OperatingSystem.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\System; * * @package phpOMS\System * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class OperatingSystem diff --git a/System/SystemType.php b/System/SystemType.php index eb652f24b..2cfe9b87e 100644 --- a/System/SystemType.php +++ b/System/SystemType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\System * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class SystemType extends Enum diff --git a/System/SystemUtils.php b/System/SystemUtils.php index dc9b42114..4d919c59c 100644 --- a/System/SystemUtils.php +++ b/System/SystemUtils.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\System; * * @package phpOMS\System * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class SystemUtils diff --git a/UnhandledHandler.php b/UnhandledHandler.php index 9351ce97c..0de569c13 100644 --- a/UnhandledHandler.php +++ b/UnhandledHandler.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Uri/Argument.php b/Uri/Argument.php index d851cd798..a9bc24d3a 100644 --- a/Uri/Argument.php +++ b/Uri/Argument.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Utils\StringUtils; * * @package phpOMS\Uri * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.Superglobals) diff --git a/Uri/Http.php b/Uri/Http.php index bc864dda4..3f5e3095b 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Utils\StringUtils; * * @package phpOMS\Uri * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.Superglobals) diff --git a/Uri/InvalidUriException.php b/Uri/InvalidUriException.php index b9ae6bf24..24cf63000 100644 --- a/Uri/InvalidUriException.php +++ b/Uri/InvalidUriException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Uri; * * @package phpOMS\Uri * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class InvalidUriException extends \UnexpectedValueException diff --git a/Uri/UriFactory.php b/Uri/UriFactory.php index ac3a48e2c..aadb59cfb 100644 --- a/Uri/UriFactory.php +++ b/Uri/UriFactory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Uri; * * @package phpOMS\Uri * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class UriFactory diff --git a/Uri/UriInterface.php b/Uri/UriInterface.php index 8ec17ba86..55cd06492 100644 --- a/Uri/UriInterface.php +++ b/Uri/UriInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Uri; * * @package phpOMS\Uri * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface UriInterface diff --git a/Uri/UriScheme.php b/Uri/UriScheme.php index a6c6eb1ae..29c16c491 100644 --- a/Uri/UriScheme.php +++ b/Uri/UriScheme.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Uri * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class UriScheme extends Enum diff --git a/Utils/ArrayUtils.php b/Utils/ArrayUtils.php index 7d063247c..49ca7d0d5 100644 --- a/Utils/ArrayUtils.php +++ b/Utils/ArrayUtils.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils; * * @package phpOMS\Utils * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class ArrayUtils diff --git a/Utils/Barcode/Aztec.php b/Utils/Barcode/Aztec.php index 830433815..7a86642ad 100644 --- a/Utils/Barcode/Aztec.php +++ b/Utils/Barcode/Aztec.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Aztec diff --git a/Utils/Barcode/C128Abstract.php b/Utils/Barcode/C128Abstract.php index 557c1e7fb..b299a34e9 100644 --- a/Utils/Barcode/C128Abstract.php +++ b/Utils/Barcode/C128Abstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCasePropertyName) diff --git a/Utils/Barcode/C128a.php b/Utils/Barcode/C128a.php index 0a32477d5..276db4c09 100644 --- a/Utils/Barcode/C128a.php +++ b/Utils/Barcode/C128a.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCasePropertyName) diff --git a/Utils/Barcode/C128b.php b/Utils/Barcode/C128b.php index 1ef0c131a..20aeb585b 100644 --- a/Utils/Barcode/C128b.php +++ b/Utils/Barcode/C128b.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCasePropertyName) diff --git a/Utils/Barcode/C128c.php b/Utils/Barcode/C128c.php index 0e02ed69d..0ae54cf35 100644 --- a/Utils/Barcode/C128c.php +++ b/Utils/Barcode/C128c.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCasePropertyName) diff --git a/Utils/Barcode/C25.php b/Utils/Barcode/C25.php index f8bda074b..fb177b412 100644 --- a/Utils/Barcode/C25.php +++ b/Utils/Barcode/C25.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCasePropertyName) diff --git a/Utils/Barcode/C39.php b/Utils/Barcode/C39.php index bb52a3471..350788efb 100644 --- a/Utils/Barcode/C39.php +++ b/Utils/Barcode/C39.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCasePropertyName) diff --git a/Utils/Barcode/Codebar.php b/Utils/Barcode/Codebar.php index 3d8891454..b319e000c 100644 --- a/Utils/Barcode/Codebar.php +++ b/Utils/Barcode/Codebar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCasePropertyName) diff --git a/Utils/Barcode/Datamatrix.php b/Utils/Barcode/Datamatrix.php index 9504059ce..6bd6a3a92 100644 --- a/Utils/Barcode/Datamatrix.php +++ b/Utils/Barcode/Datamatrix.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Datamatrix diff --git a/Utils/Barcode/HIBCC.php b/Utils/Barcode/HIBCC.php index 2c6d465ed..cacf3921b 100644 --- a/Utils/Barcode/HIBCC.php +++ b/Utils/Barcode/HIBCC.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class HIBCC diff --git a/Utils/Barcode/OrientationType.php b/Utils/Barcode/OrientationType.php index ae6bbc454..d9832f6d7 100644 --- a/Utils/Barcode/OrientationType.php +++ b/Utils/Barcode/OrientationType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class OrientationType extends Enum diff --git a/Utils/Barcode/QR.php b/Utils/Barcode/QR.php index a4a47d9c8..4279584d0 100644 --- a/Utils/Barcode/QR.php +++ b/Utils/Barcode/QR.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Barcode; * * @package phpOMS\Utils\Barcode * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class QR diff --git a/Utils/ColorUtils.php b/Utils/ColorUtils.php index c17da020a..c622986b6 100644 --- a/Utils/ColorUtils.php +++ b/Utils/ColorUtils.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils; * * @package phpOMS\Utils * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class ColorUtils diff --git a/Utils/Compression/CompressionInterface.php b/Utils/Compression/CompressionInterface.php index 5cea901b5..7c535d430 100644 --- a/Utils/Compression/CompressionInterface.php +++ b/Utils/Compression/CompressionInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Compression; * * @package phpOMS\Utils\Compression * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface CompressionInterface diff --git a/Utils/Compression/LZW.php b/Utils/Compression/LZW.php index 922c65616..9510b2ab7 100644 --- a/Utils/Compression/LZW.php +++ b/Utils/Compression/LZW.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Compression; * * @package phpOMS\Utils\Compression * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LZW implements CompressionInterface diff --git a/Utils/Converter/AngleType.php b/Utils/Converter/AngleType.php index 4b5374921..9b783e012 100644 --- a/Utils/Converter/AngleType.php +++ b/Utils/Converter/AngleType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class AngleType extends Enum diff --git a/Utils/Converter/AreaType.php b/Utils/Converter/AreaType.php index cd8b506cb..cd6136a43 100644 --- a/Utils/Converter/AreaType.php +++ b/Utils/Converter/AreaType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class AreaType extends Enum diff --git a/Utils/Converter/Currency.php b/Utils/Converter/Currency.php index 881187797..d25bf78ed 100644 --- a/Utils/Converter/Currency.php +++ b/Utils/Converter/Currency.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -25,7 +25,7 @@ use phpOMS\Uri\Http; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Currency diff --git a/Utils/Converter/EnergyPowerType.php b/Utils/Converter/EnergyPowerType.php index 37178c313..bd2a8a9c0 100644 --- a/Utils/Converter/EnergyPowerType.php +++ b/Utils/Converter/EnergyPowerType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class EnergyPowerType extends Enum diff --git a/Utils/Converter/File.php b/Utils/Converter/File.php index 8303c2d5e..8cd5fc3ba 100644 --- a/Utils/Converter/File.php +++ b/Utils/Converter/File.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Converter; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class File diff --git a/Utils/Converter/FileSizeType.php b/Utils/Converter/FileSizeType.php index 0047858f7..7549b3497 100644 --- a/Utils/Converter/FileSizeType.php +++ b/Utils/Converter/FileSizeType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class FileSizeType extends Enum diff --git a/Utils/Converter/Ip.php b/Utils/Converter/Ip.php index 019a8f559..06689d51c 100644 --- a/Utils/Converter/Ip.php +++ b/Utils/Converter/Ip.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Converter; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Ip diff --git a/Utils/Converter/LengthType.php b/Utils/Converter/LengthType.php index 69dd5a78d..5d00fb827 100644 --- a/Utils/Converter/LengthType.php +++ b/Utils/Converter/LengthType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class LengthType extends Enum diff --git a/Utils/Converter/Measurement.php b/Utils/Converter/Measurement.php index c6e9f09f0..ea791a027 100644 --- a/Utils/Converter/Measurement.php +++ b/Utils/Converter/Measurement.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Converter; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Measurement diff --git a/Utils/Converter/Numeric.php b/Utils/Converter/Numeric.php index b05dec915..e90b9324b 100644 --- a/Utils/Converter/Numeric.php +++ b/Utils/Converter/Numeric.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Converter; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Numeric diff --git a/Utils/Converter/PressureType.php b/Utils/Converter/PressureType.php index 3dff1aab8..22e6f3c37 100644 --- a/Utils/Converter/PressureType.php +++ b/Utils/Converter/PressureType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class PressureType extends Enum diff --git a/Utils/Converter/SpeedType.php b/Utils/Converter/SpeedType.php index e6f78a3e9..5238e486a 100644 --- a/Utils/Converter/SpeedType.php +++ b/Utils/Converter/SpeedType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class SpeedType extends Enum diff --git a/Utils/Converter/TemperatureType.php b/Utils/Converter/TemperatureType.php index 8e265ca5d..298c5637e 100644 --- a/Utils/Converter/TemperatureType.php +++ b/Utils/Converter/TemperatureType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class TemperatureType extends Enum diff --git a/Utils/Converter/TimeType.php b/Utils/Converter/TimeType.php index f8fb444b1..1c40ab0bd 100644 --- a/Utils/Converter/TimeType.php +++ b/Utils/Converter/TimeType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class TimeType extends Enum diff --git a/Utils/Converter/VolumeType.php b/Utils/Converter/VolumeType.php index e8e68e6ff..b1165c126 100644 --- a/Utils/Converter/VolumeType.php +++ b/Utils/Converter/VolumeType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class VolumeType extends Enum diff --git a/Utils/Converter/WeightType.php b/Utils/Converter/WeightType.php index 9bc8d6a61..15274edfd 100644 --- a/Utils/Converter/WeightType.php +++ b/Utils/Converter/WeightType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\Converter * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class WeightType extends Enum diff --git a/Utils/Encoding/Caesar.php b/Utils/Encoding/Caesar.php index 768e8d87f..0b8591747 100644 --- a/Utils/Encoding/Caesar.php +++ b/Utils/Encoding/Caesar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Encoding; * * @package phpOMS\Utils\Encoding * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Caesar diff --git a/Utils/Encoding/EncodingInterface.php b/Utils/Encoding/EncodingInterface.php index e8526f3b2..d96c2d228 100644 --- a/Utils/Encoding/EncodingInterface.php +++ b/Utils/Encoding/EncodingInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Encoding; * * @package phpOMS\Utils\Encoding * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface EncodingInterface diff --git a/Utils/Encoding/Gray.php b/Utils/Encoding/Gray.php index d7d051c1d..da6b262c1 100644 --- a/Utils/Encoding/Gray.php +++ b/Utils/Encoding/Gray.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Encoding; * * @package phpOMS\Utils\Encoding * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Gray diff --git a/Utils/Encoding/Huffman/Dictionary.php b/Utils/Encoding/Huffman/Dictionary.php index d35b4704f..1de580ead 100644 --- a/Utils/Encoding/Huffman/Dictionary.php +++ b/Utils/Encoding/Huffman/Dictionary.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Encoding\Huffman; * * @package phpOMS\Utils\Encoding\Huffman * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Dictionary diff --git a/Utils/Encoding/Huffman/Huffman.php b/Utils/Encoding/Huffman/Huffman.php index 11256e29e..489c3e257 100644 --- a/Utils/Encoding/Huffman/Huffman.php +++ b/Utils/Encoding/Huffman/Huffman.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Encoding\Huffman; * * @package phpOMS\Utils\Encoding\Huffman * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Huffman diff --git a/Utils/Encoding/XorEncoding.php b/Utils/Encoding/XorEncoding.php index 9f5d0d61e..abe1ee0c2 100644 --- a/Utils/Encoding/XorEncoding.php +++ b/Utils/Encoding/XorEncoding.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Encoding; * * @package phpOMS\Utils\Encoding * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class XorEncoding diff --git a/Utils/Excel/Excel.php b/Utils/Excel/Excel.php index 43fb10c18..12c0ca1ea 100644 --- a/Utils/Excel/Excel.php +++ b/Utils/Excel/Excel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/Git/Author.php b/Utils/Git/Author.php index 2399f43f1..e22b1148f 100644 --- a/Utils/Git/Author.php +++ b/Utils/Git/Author.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Git; * * @package phpOMS\Utils\Git * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Author diff --git a/Utils/Git/Branch.php b/Utils/Git/Branch.php index 8abcff4cc..67a7f6d68 100644 --- a/Utils/Git/Branch.php +++ b/Utils/Git/Branch.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Git; * * @package phpOMS\Utils\Git * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Branch diff --git a/Utils/Git/Commit.php b/Utils/Git/Commit.php index 7bd2bce65..1758d2655 100644 --- a/Utils/Git/Commit.php +++ b/Utils/Git/Commit.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Git; * * @package phpOMS\Utils\Git * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Commit diff --git a/Utils/Git/Git.php b/Utils/Git/Git.php index e582412fa..13f761635 100644 --- a/Utils/Git/Git.php +++ b/Utils/Git/Git.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\System\File\PathException; * * @package phpOMS\Utils\Git * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * @codeCoverageIgnore */ diff --git a/Utils/Git/NullCommit.php b/Utils/Git/NullCommit.php index 60a341b0b..0737e8cbd 100644 --- a/Utils/Git/NullCommit.php +++ b/Utils/Git/NullCommit.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Git; * * @package phpOMS\Utils\Git * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class NullCommit extends Commit diff --git a/Utils/Git/Repository.php b/Utils/Git/Repository.php index 2fcd67008..800862628 100644 --- a/Utils/Git/Repository.php +++ b/Utils/Git/Repository.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Utils\StringUtils; * * @package phpOMS\Utils\Git * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * @codeCoverageIgnore */ diff --git a/Utils/Git/Tag.php b/Utils/Git/Tag.php index a8f5817af..529ab85c7 100644 --- a/Utils/Git/Tag.php +++ b/Utils/Git/Tag.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\Git; * * @package phpOMS\Utils\Git * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Tag diff --git a/Utils/IO/Csv/CsvInterface.php b/Utils/IO/Csv/CsvInterface.php index 0cd650237..586adec2d 100644 --- a/Utils/IO/Csv/CsvInterface.php +++ b/Utils/IO/Csv/CsvInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ namespace phpOMS\Utils\IO\Csv { * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface CsvInterface diff --git a/Utils/IO/Csv/CsvSettings.php b/Utils/IO/Csv/CsvSettings.php index 1e170b7d9..46be6b470 100644 --- a/Utils/IO/Csv/CsvSettings.php +++ b/Utils/IO/Csv/CsvSettings.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/IO/Excel/ExcelDatabaseMapper.php b/Utils/IO/Excel/ExcelDatabaseMapper.php index d41fe2e0a..2fa12b58d 100644 --- a/Utils/IO/Excel/ExcelDatabaseMapper.php +++ b/Utils/IO/Excel/ExcelDatabaseMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/IO/Excel/ExcelInterface.php b/Utils/IO/Excel/ExcelInterface.php index 0eccd50f5..2c924cdaa 100644 --- a/Utils/IO/Excel/ExcelInterface.php +++ b/Utils/IO/Excel/ExcelInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\IO\Excel; * * @package phpOMS\Utils\IO\Excel * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ExcelInterface diff --git a/Utils/IO/ExchangeInterface.php b/Utils/IO/ExchangeInterface.php index c0ace8165..eaba132b9 100644 --- a/Utils/IO/ExchangeInterface.php +++ b/Utils/IO/ExchangeInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,7 +24,7 @@ use phpOMS\Utils\IO\Pdf\PdfInterface; * * @package phpOMS\Utils\IO * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ExchangeInterface extends CsvInterface, JsonInterface, ExcelInterface, PdfInterface diff --git a/Utils/IO/IODatabaseMapper.php b/Utils/IO/IODatabaseMapper.php index d258157bb..74b362d0d 100644 --- a/Utils/IO/IODatabaseMapper.php +++ b/Utils/IO/IODatabaseMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/IO/Json/InvalidJsonException.php b/Utils/IO/Json/InvalidJsonException.php index 3853ddf7a..b047742d2 100644 --- a/Utils/IO/Json/InvalidJsonException.php +++ b/Utils/IO/Json/InvalidJsonException.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\IO\Json; * * @package phpOMS\Utils\IO\Json * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class InvalidJsonException extends \UnexpectedValueException diff --git a/Utils/IO/Json/JsonInterface.php b/Utils/IO/Json/JsonInterface.php index 5b86637be..5f74c9a60 100644 --- a/Utils/IO/Json/JsonInterface.php +++ b/Utils/IO/Json/JsonInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\IO\Json; * * @package phpOMS\Utils\IO\Json * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface JsonInterface diff --git a/Utils/IO/Pdf/PdfInterface.php b/Utils/IO/Pdf/PdfInterface.php index 74032d66d..51add291c 100644 --- a/Utils/IO/Pdf/PdfInterface.php +++ b/Utils/IO/Pdf/PdfInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\IO\Pdf; * * @package phpOMS\Utils\IO\Pdf * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface PdfInterface diff --git a/Utils/IO/Zip/ArchiveInterface.php b/Utils/IO/Zip/ArchiveInterface.php index 470003737..233818a94 100644 --- a/Utils/IO/Zip/ArchiveInterface.php +++ b/Utils/IO/Zip/ArchiveInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\IO\Zip; * * @package phpOMS\Utils\IO\Zip * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ArchiveInterface diff --git a/Utils/IO/Zip/Gz.php b/Utils/IO/Zip/Gz.php index 932bce933..3ccb40de5 100644 --- a/Utils/IO/Zip/Gz.php +++ b/Utils/IO/Zip/Gz.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Utils\IO\Zip; * * @package phpOMS\Utils\IO\Zip * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Gz implements ArchiveInterface diff --git a/Utils/IO/Zip/Tar.php b/Utils/IO/Zip/Tar.php index 9e1c64bdd..bb7e1dc96 100644 --- a/Utils/IO/Zip/Tar.php +++ b/Utils/IO/Zip/Tar.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\System\File\FileUtils; * * @package phpOMS\Utils\IO\Zip * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Tar implements ArchiveInterface diff --git a/Utils/IO/Zip/TarGz.php b/Utils/IO/Zip/TarGz.php index 77b6f85f9..0de2b4067 100644 --- a/Utils/IO/Zip/TarGz.php +++ b/Utils/IO/Zip/TarGz.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\System\File\Local\File; * * @package phpOMS\Utils\IO\Zip * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class TarGz implements ArchiveInterface diff --git a/Utils/IO/Zip/Zip.php b/Utils/IO/Zip/Zip.php index edaa7a32e..64bb76aa7 100644 --- a/Utils/IO/Zip/Zip.php +++ b/Utils/IO/Zip/Zip.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\System\File\FileUtils; * * @package phpOMS\Utils\IO\Zip * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Zip implements ArchiveInterface diff --git a/Utils/ImageUtils.php b/Utils/ImageUtils.php index d41b0ffc5..09beb297a 100644 --- a/Utils/ImageUtils.php +++ b/Utils/ImageUtils.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Utils; * * @package phpOMS\Utils * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class ImageUtils diff --git a/Utils/JsonBuilder.php b/Utils/JsonBuilder.php index d167bb28f..793439006 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils; * * @package phpOMS\Utils * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class JsonBuilder implements \Serializable, \JsonSerializable diff --git a/Utils/PDF/Pdf.php b/Utils/PDF/Pdf.php index 92093e64d..5162b6bd7 100644 --- a/Utils/PDF/Pdf.php +++ b/Utils/PDF/Pdf.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/Parser/Markdown/Markdown.php b/Utils/Parser/Markdown/Markdown.php index b8b77611e..ce51fce97 100644 --- a/Utils/Parser/Markdown/Markdown.php +++ b/Utils/Parser/Markdown/Markdown.php @@ -9,7 +9,7 @@ * @license OMS License 1.0 * @license Original license Emanuil Rusev, erusev.com (MIT) * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Uri\UriFactory; * @package phpOMS\Utils\Parser\Markdown * @license OMS License 1.0 * @license Original license Emanuil Rusev, erusev.com (MIT) - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Markdown diff --git a/Utils/Parser/Php/ArrayParser.php b/Utils/Parser/Php/ArrayParser.php index 51c753879..9603f3183 100644 --- a/Utils/Parser/Php/ArrayParser.php +++ b/Utils/Parser/Php/ArrayParser.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Utils\Parser\Php; * * @package phpOMS\Utils\Parser\Php * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ArrayParser diff --git a/Utils/Permutation.php b/Utils/Permutation.php index 700b579f1..36118286f 100644 --- a/Utils/Permutation.php +++ b/Utils/Permutation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils; * * @package phpOMS\Utils * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Permutation diff --git a/Utils/RnG/Address.php b/Utils/RnG/Address.php index 2c5a0a31e..acdeaefcc 100644 --- a/Utils/RnG/Address.php +++ b/Utils/RnG/Address.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/RnG/ArrayRandomize.php b/Utils/RnG/ArrayRandomize.php index b62ae7d36..0a43f9e2f 100644 --- a/Utils/RnG/ArrayRandomize.php +++ b/Utils/RnG/ArrayRandomize.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\RnG; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class ArrayRandomize diff --git a/Utils/RnG/City.php b/Utils/RnG/City.php index 2d2a5fa08..7fac4315a 100644 --- a/Utils/RnG/City.php +++ b/Utils/RnG/City.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/RnG/DateTime.php b/Utils/RnG/DateTime.php index 0c2af5b18..8b750ce48 100644 --- a/Utils/RnG/DateTime.php +++ b/Utils/RnG/DateTime.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\RnG; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class DateTime diff --git a/Utils/RnG/DistributionType.php b/Utils/RnG/DistributionType.php index 117acb69c..0ea87ae88 100644 --- a/Utils/RnG/DistributionType.php +++ b/Utils/RnG/DistributionType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class DistributionType extends Enum diff --git a/Utils/RnG/Email.php b/Utils/RnG/Email.php index 4e55a87b6..fd2b77c7f 100644 --- a/Utils/RnG/Email.php +++ b/Utils/RnG/Email.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/RnG/File.php b/Utils/RnG/File.php index 990cd3394..fc42d5160 100644 --- a/Utils/RnG/File.php +++ b/Utils/RnG/File.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\RnG; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class File diff --git a/Utils/RnG/Iban.php b/Utils/RnG/Iban.php index 70d02e904..4ebd80f92 100644 --- a/Utils/RnG/Iban.php +++ b/Utils/RnG/Iban.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/RnG/LinearCongruentialGenerator.php b/Utils/RnG/LinearCongruentialGenerator.php index 69e93b227..db85c4df4 100644 --- a/Utils/RnG/LinearCongruentialGenerator.php +++ b/Utils/RnG/LinearCongruentialGenerator.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\RnG; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class LinearCongruentialGenerator diff --git a/Utils/RnG/Name.php b/Utils/RnG/Name.php index fd6ceb3a6..6cd33a5af 100644 --- a/Utils/RnG/Name.php +++ b/Utils/RnG/Name.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\RnG; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Name diff --git a/Utils/RnG/Numeric.php b/Utils/RnG/Numeric.php index 7ecf2a093..61b4c58d2 100644 --- a/Utils/RnG/Numeric.php +++ b/Utils/RnG/Numeric.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/RnG/Phone.php b/Utils/RnG/Phone.php index 27800bfbb..92cb9194c 100644 --- a/Utils/RnG/Phone.php +++ b/Utils/RnG/Phone.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\RnG; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Phone diff --git a/Utils/RnG/PostalZip.php b/Utils/RnG/PostalZip.php index 78e747163..7b180c9fc 100644 --- a/Utils/RnG/PostalZip.php +++ b/Utils/RnG/PostalZip.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/Utils/RnG/StringUtils.php b/Utils/RnG/StringUtils.php index f54faa5d7..e0cae51f9 100644 --- a/Utils/RnG/StringUtils.php +++ b/Utils/RnG/StringUtils.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\RnG; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class StringUtils diff --git a/Utils/RnG/Text.php b/Utils/RnG/Text.php index 89585d1dd..3a6f1b704 100644 --- a/Utils/RnG/Text.php +++ b/Utils/RnG/Text.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\RnG; * * @package phpOMS\Utils\RnG * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Text diff --git a/Utils/StringCompare.php b/Utils/StringCompare.php index 535495612..892c4caa2 100644 --- a/Utils/StringCompare.php +++ b/Utils/StringCompare.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Utils; * * @package phpOMS\Utils * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class StringCompare diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php index bc0292484..45d742295 100644 --- a/Utils/StringUtils.php +++ b/Utils/StringUtils.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -23,7 +23,7 @@ use phpOMS\Contract\RenderableInterface; * * @package phpOMS\Utils * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * * @SuppressWarnings(PHPMD.CamelCaseMethodName) diff --git a/Utils/TaskSchedule/Cron.php b/Utils/TaskSchedule/Cron.php index 6291bf79f..6386524d0 100644 --- a/Utils/TaskSchedule/Cron.php +++ b/Utils/TaskSchedule/Cron.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\TaskSchedule; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * @codeCoverageIgnore */ diff --git a/Utils/TaskSchedule/CronJob.php b/Utils/TaskSchedule/CronJob.php index a1887cae2..b0e4e5ef8 100644 --- a/Utils/TaskSchedule/CronJob.php +++ b/Utils/TaskSchedule/CronJob.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\TaskSchedule; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class CronJob extends TaskAbstract diff --git a/Utils/TaskSchedule/Interval.php b/Utils/TaskSchedule/Interval.php index 7b45ec111..a6e6043ca 100644 --- a/Utils/TaskSchedule/Interval.php +++ b/Utils/TaskSchedule/Interval.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\TaskSchedule; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Interval implements \Serializable diff --git a/Utils/TaskSchedule/NullCronJob.php b/Utils/TaskSchedule/NullCronJob.php index 9a5e5b17a..a287f4977 100644 --- a/Utils/TaskSchedule/NullCronJob.php +++ b/Utils/TaskSchedule/NullCronJob.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\TaskSchedule; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class NullCronJob extends CronJob diff --git a/Utils/TaskSchedule/NullSchedule.php b/Utils/TaskSchedule/NullSchedule.php index 5f0562d3b..6f4658921 100644 --- a/Utils/TaskSchedule/NullSchedule.php +++ b/Utils/TaskSchedule/NullSchedule.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\TaskSchedule; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class NullSchedule extends Schedule diff --git a/Utils/TaskSchedule/Schedule.php b/Utils/TaskSchedule/Schedule.php index 8da657159..b01e598ee 100644 --- a/Utils/TaskSchedule/Schedule.php +++ b/Utils/TaskSchedule/Schedule.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\Base\DateTime; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Schedule extends TaskAbstract diff --git a/Utils/TaskSchedule/SchedulerAbstract.php b/Utils/TaskSchedule/SchedulerAbstract.php index f3644a931..c5ebfc211 100644 --- a/Utils/TaskSchedule/SchedulerAbstract.php +++ b/Utils/TaskSchedule/SchedulerAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\System\File\PathException; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * @codeCoverageIgnore */ diff --git a/Utils/TaskSchedule/SchedulerFactory.php b/Utils/TaskSchedule/SchedulerFactory.php index c42fe2e2b..0b4479c01 100644 --- a/Utils/TaskSchedule/SchedulerFactory.php +++ b/Utils/TaskSchedule/SchedulerFactory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\System\SystemType; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class SchedulerFactory diff --git a/Utils/TaskSchedule/TaskAbstract.php b/Utils/TaskSchedule/TaskAbstract.php index c49b784dc..c6655d854 100644 --- a/Utils/TaskSchedule/TaskAbstract.php +++ b/Utils/TaskSchedule/TaskAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\TaskSchedule; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class TaskAbstract diff --git a/Utils/TaskSchedule/TaskFactory.php b/Utils/TaskSchedule/TaskFactory.php index 27cd30304..8fe853a91 100644 --- a/Utils/TaskSchedule/TaskFactory.php +++ b/Utils/TaskSchedule/TaskFactory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\System\SystemType; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class TaskFactory diff --git a/Utils/TaskSchedule/TaskScheduler.php b/Utils/TaskSchedule/TaskScheduler.php index 3183915ac..89cdf2d4e 100644 --- a/Utils/TaskSchedule/TaskScheduler.php +++ b/Utils/TaskSchedule/TaskScheduler.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Utils\TaskSchedule; * * @package phpOMS\Utils\TaskSchedule * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 * @codeCoverageIgnore */ diff --git a/Utils/TestUtils.php b/Utils/TestUtils.php index 42774c520..364f405d6 100644 --- a/Utils/TestUtils.php +++ b/Utils/TestUtils.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Utils; * * @package phpOMS\Utils * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class TestUtils diff --git a/Validation/Base/DateTime.php b/Validation/Base/DateTime.php index f068942b4..653454c0a 100644 --- a/Validation/Base/DateTime.php +++ b/Validation/Base/DateTime.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\ValidatorAbstract; * * @package phpOMS\Validation\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class DateTime extends ValidatorAbstract diff --git a/Validation/Base/Json.php b/Validation/Base/Json.php index cafba655b..a31d3e1a0 100644 --- a/Validation/Base/Json.php +++ b/Validation/Base/Json.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Validation\ValidatorAbstract; * * @package phpOMS\Validation\Base * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class Json extends ValidatorAbstract diff --git a/Validation/Finance/BIC.php b/Validation/Finance/BIC.php index b61139b65..aacb47f0d 100644 --- a/Validation/Finance/BIC.php +++ b/Validation/Finance/BIC.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\ValidatorAbstract; * * @package phpOMS\Validation\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class BIC extends ValidatorAbstract diff --git a/Validation/Finance/CreditCard.php b/Validation/Finance/CreditCard.php index b22be418c..03f8d2f00 100644 --- a/Validation/Finance/CreditCard.php +++ b/Validation/Finance/CreditCard.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\ValidatorAbstract; * * @package phpOMS\Validation\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class CreditCard extends ValidatorAbstract diff --git a/Validation/Finance/Iban.php b/Validation/Finance/Iban.php index a838c5758..a1c2a002a 100644 --- a/Validation/Finance/Iban.php +++ b/Validation/Finance/Iban.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\ValidatorAbstract; * * @package phpOMS\Validation\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Iban extends ValidatorAbstract diff --git a/Validation/Finance/IbanEnum.php b/Validation/Finance/IbanEnum.php index 88f3a2342..90619a191 100644 --- a/Validation/Finance/IbanEnum.php +++ b/Validation/Finance/IbanEnum.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Validation\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class IbanEnum extends Enum diff --git a/Validation/Finance/IbanErrorType.php b/Validation/Finance/IbanErrorType.php index a51eb0ef0..4cf37bc9d 100644 --- a/Validation/Finance/IbanErrorType.php +++ b/Validation/Finance/IbanErrorType.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package phpOMS\Validation\Finance * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class IbanErrorType extends Enum diff --git a/Validation/Network/Email.php b/Validation/Network/Email.php index 44e282146..148d16dcc 100644 --- a/Validation/Network/Email.php +++ b/Validation/Network/Email.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\ValidatorAbstract; * * @package phpOMS\Validation\Network * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class Email extends ValidatorAbstract diff --git a/Validation/Network/Hostname.php b/Validation/Network/Hostname.php index 9876f6aaf..832f26b3d 100644 --- a/Validation/Network/Hostname.php +++ b/Validation/Network/Hostname.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\ValidatorAbstract; * * @package phpOMS\Validation\Network * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class Hostname extends ValidatorAbstract diff --git a/Validation/Network/Ip.php b/Validation/Network/Ip.php index 65bcfb77b..57b1e639e 100644 --- a/Validation/Network/Ip.php +++ b/Validation/Network/Ip.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Validation\ValidatorAbstract; * * @package phpOMS\Validation\Network * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class Ip extends ValidatorAbstract diff --git a/Validation/Validator.php b/Validation/Validator.php index a30be29fd..e444fc9db 100644 --- a/Validation/Validator.php +++ b/Validation/Validator.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Utils\StringUtils; * * @package phpOMS\Validation * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Validator extends ValidatorAbstract diff --git a/Validation/ValidatorAbstract.php b/Validation/ValidatorAbstract.php index 5ff6e8a1e..4a65eb7d9 100644 --- a/Validation/ValidatorAbstract.php +++ b/Validation/ValidatorAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Validation; * * @package phpOMS\Validation * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ValidatorAbstract implements ValidatorInterface diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index a62f0f5af..05286dfd5 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Validation; * * @package phpOMS\Validation * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ interface ValidatorInterface diff --git a/Version/Version.php b/Version/Version.php index c179b5f6d..336f33744 100644 --- a/Version/Version.php +++ b/Version/Version.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace phpOMS\Version; * * @package phpOMS\Version * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ final class Version diff --git a/Views/PaginationView.php b/Views/PaginationView.php index 275e343e0..21e8dd08b 100644 --- a/Views/PaginationView.php +++ b/Views/PaginationView.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ namespace phpOMS\Views; @@ -17,7 +17,7 @@ namespace phpOMS\Views; * * @package phpOMS\Views * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class PaginationView extends View diff --git a/Views/TableView.php b/Views/TableView.php index e62f9a72b..b3badba58 100644 --- a/Views/TableView.php +++ b/Views/TableView.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,7 +19,7 @@ namespace phpOMS\Views; * * @package phpOMS\Views * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class TableView extends View diff --git a/Views/View.php b/Views/View.php index a04aa1ccf..5e059c04a 100644 --- a/Views/View.php +++ b/Views/View.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -26,7 +26,7 @@ use phpOMS\Module\Exception\InvalidThemeException; * * @package phpOMS\Views * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class View extends ViewAbstract diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index 1a71f18ea..f1ca12b8f 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\System\File\PathException; * * @package phpOMS\Views * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ abstract class ViewAbstract implements RenderableInterface diff --git a/tests/Account/AccountManagerTest.php b/tests/Account/AccountManagerTest.php index 05768f715..8f448ea5d 100644 --- a/tests/Account/AccountManagerTest.php +++ b/tests/Account/AccountManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Account/AccountStatusTest.php b/tests/Account/AccountStatusTest.php index 73deb82cf..9735afe2f 100644 --- a/tests/Account/AccountStatusTest.php +++ b/tests/Account/AccountStatusTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Account/AccountTest.php b/tests/Account/AccountTest.php index 2f55a26ec..4045a4a6f 100644 --- a/tests/Account/AccountTest.php +++ b/tests/Account/AccountTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Account/AccountTypeTest.php b/tests/Account/AccountTypeTest.php index c9d97b34b..c06706be0 100644 --- a/tests/Account/AccountTypeTest.php +++ b/tests/Account/AccountTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Account/GroupStatusTest.php b/tests/Account/GroupStatusTest.php index 7062214a6..3b7a99bf5 100644 --- a/tests/Account/GroupStatusTest.php +++ b/tests/Account/GroupStatusTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Account/GroupTest.php b/tests/Account/GroupTest.php index 4c3d02994..ec4d0b51c 100644 --- a/tests/Account/GroupTest.php +++ b/tests/Account/GroupTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Account/NullAccountTest.php b/tests/Account/NullAccountTest.php index 20199430e..10c3555c1 100644 --- a/tests/Account/NullAccountTest.php +++ b/tests/Account/NullAccountTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Account/PermissionAbstractTest.php b/tests/Account/PermissionAbstractTest.php index 8bf25e686..a157e4e39 100644 --- a/tests/Account/PermissionAbstractTest.php +++ b/tests/Account/PermissionAbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Account/PermissionTypeTest.php b/tests/Account/PermissionTypeTest.php index 8437cc7f2..1cb810146 100644 --- a/tests/Account/PermissionTypeTest.php +++ b/tests/Account/PermissionTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/ApplicationAbstractTest.php b/tests/ApplicationAbstractTest.php index fc45b4d64..7abf94fde 100644 --- a/tests/ApplicationAbstractTest.php +++ b/tests/ApplicationAbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Asset/AssetManagerTest.php b/tests/Asset/AssetManagerTest.php index 83f19e3f6..d5b543e2a 100644 --- a/tests/Asset/AssetManagerTest.php +++ b/tests/Asset/AssetManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Asset/AssetTypeTest.php b/tests/Asset/AssetTypeTest.php index 706368ad3..4bcd8e64f 100644 --- a/tests/Asset/AssetTypeTest.php +++ b/tests/Asset/AssetTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Auth/AuthTest.php b/tests/Auth/AuthTest.php index bcf53db36..2b1b92c4d 100644 --- a/tests/Auth/AuthTest.php +++ b/tests/Auth/AuthTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Auth/LoginReturnTypeTest.php b/tests/Auth/LoginReturnTypeTest.php index e4c628811..04a1a5dce 100644 --- a/tests/Auth/LoginReturnTypeTest.php +++ b/tests/Auth/LoginReturnTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/AutoloadExceptionTest.php b/tests/AutoloadExceptionTest.php index 29070c9c5..25603cf35 100644 --- a/tests/AutoloadExceptionTest.php +++ b/tests/AutoloadExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Autoloader.php b/tests/Autoloader.php index 07c894625..d3039e955 100644 --- a/tests/Autoloader.php +++ b/tests/Autoloader.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ namespace Tests\PHPUnit; * * @package Tests\PHPUnit * @license OMS License 1.0 - * @link http://website.orange-management.de + * @link https://orange-management.org * @since 1.0.0 */ class Autoloader diff --git a/tests/AutoloaderTest.php b/tests/AutoloaderTest.php index d3e319c4c..064212ad0 100644 --- a/tests/AutoloaderTest.php +++ b/tests/AutoloaderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Finance/DepreciationTest.php b/tests/Business/Finance/DepreciationTest.php index 3b08b9d29..b0ac2e810 100644 --- a/tests/Business/Finance/DepreciationTest.php +++ b/tests/Business/Finance/DepreciationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Finance/FinanceFormulasTest.php b/tests/Business/Finance/FinanceFormulasTest.php index 831637b4d..7194c98a4 100644 --- a/tests/Business/Finance/FinanceFormulasTest.php +++ b/tests/Business/Finance/FinanceFormulasTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Finance/LoanTest.php b/tests/Business/Finance/LoanTest.php index eb44dde12..9519ac45d 100644 --- a/tests/Business/Finance/LoanTest.php +++ b/tests/Business/Finance/LoanTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Finance/LorenzkurveTest.php b/tests/Business/Finance/LorenzkurveTest.php index fe98be368..222ba8696 100644 --- a/tests/Business/Finance/LorenzkurveTest.php +++ b/tests/Business/Finance/LorenzkurveTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Finance/StockBondsTest.php b/tests/Business/Finance/StockBondsTest.php index efe3ecf6c..0ab19cbb5 100644 --- a/tests/Business/Finance/StockBondsTest.php +++ b/tests/Business/Finance/StockBondsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Marketing/MetricsTest.php b/tests/Business/Marketing/MetricsTest.php index f730bb95f..8c955371d 100644 --- a/tests/Business/Marketing/MetricsTest.php +++ b/tests/Business/Marketing/MetricsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Marketing/NetPromoterScoreTest.php b/tests/Business/Marketing/NetPromoterScoreTest.php index 64ca63f9b..784bf50a7 100644 --- a/tests/Business/Marketing/NetPromoterScoreTest.php +++ b/tests/Business/Marketing/NetPromoterScoreTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Programming/MetricsTest.php b/tests/Business/Programming/MetricsTest.php index f965e0354..612e95302 100644 --- a/tests/Business/Programming/MetricsTest.php +++ b/tests/Business/Programming/MetricsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Business/Sales/MarketShareEstimationTest.php b/tests/Business/Sales/MarketShareEstimationTest.php index 91db90134..25f13ec2f 100644 --- a/tests/Business/Sales/MarketShareEstimationTest.php +++ b/tests/Business/Sales/MarketShareEstimationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\Business\Sales; diff --git a/tests/Config/OptionsTraitTest.php b/tests/Config/OptionsTraitTest.php index ddafbc4ed..bf7410fcd 100644 --- a/tests/Config/OptionsTraitTest.php +++ b/tests/Config/OptionsTraitTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/CachePoolTest.php b/tests/DataStorage/Cache/CachePoolTest.php index ff7f28e46..ae03375a9 100644 --- a/tests/DataStorage/Cache/CachePoolTest.php +++ b/tests/DataStorage/Cache/CachePoolTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/CacheStatusTest.php b/tests/DataStorage/Cache/CacheStatusTest.php index f3625698d..b4c8da0dc 100644 --- a/tests/DataStorage/Cache/CacheStatusTest.php +++ b/tests/DataStorage/Cache/CacheStatusTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/CacheTypeTest.php b/tests/DataStorage/Cache/CacheTypeTest.php index 238e2c392..f1435cf38 100644 --- a/tests/DataStorage/Cache/CacheTypeTest.php +++ b/tests/DataStorage/Cache/CacheTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Connection/CacheValueTypeTest.php b/tests/DataStorage/Cache/Connection/CacheValueTypeTest.php index 28a0a6dc8..5548727c8 100644 --- a/tests/DataStorage/Cache/Connection/CacheValueTypeTest.php +++ b/tests/DataStorage/Cache/Connection/CacheValueTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Connection/ConnectionFactoryTest.php b/tests/DataStorage/Cache/Connection/ConnectionFactoryTest.php index 7dd36c538..86fbc8962 100644 --- a/tests/DataStorage/Cache/Connection/ConnectionFactoryTest.php +++ b/tests/DataStorage/Cache/Connection/ConnectionFactoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Connection/FileCacheJsonSerializable.php b/tests/DataStorage/Cache/Connection/FileCacheJsonSerializable.php index 6e94d64b9..d7baedec8 100644 --- a/tests/DataStorage/Cache/Connection/FileCacheJsonSerializable.php +++ b/tests/DataStorage/Cache/Connection/FileCacheJsonSerializable.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Connection/FileCacheSerializable.php b/tests/DataStorage/Cache/Connection/FileCacheSerializable.php index bd943209d..5843d4083 100644 --- a/tests/DataStorage/Cache/Connection/FileCacheSerializable.php +++ b/tests/DataStorage/Cache/Connection/FileCacheSerializable.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Connection/FileCacheTest.php b/tests/DataStorage/Cache/Connection/FileCacheTest.php index 5d8eee3b1..e629c0b35 100644 --- a/tests/DataStorage/Cache/Connection/FileCacheTest.php +++ b/tests/DataStorage/Cache/Connection/FileCacheTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Connection/MemCachedTest.php b/tests/DataStorage/Cache/Connection/MemCachedTest.php index 444757f74..4f1bef38c 100644 --- a/tests/DataStorage/Cache/Connection/MemCachedTest.php +++ b/tests/DataStorage/Cache/Connection/MemCachedTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Connection/NullCacheTest.php b/tests/DataStorage/Cache/Connection/NullCacheTest.php index 1947769dd..ff2f37a71 100644 --- a/tests/DataStorage/Cache/Connection/NullCacheTest.php +++ b/tests/DataStorage/Cache/Connection/NullCacheTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Connection/RedisCacheTest.php b/tests/DataStorage/Cache/Connection/RedisCacheTest.php index f621664e8..4e524357c 100644 --- a/tests/DataStorage/Cache/Connection/RedisCacheTest.php +++ b/tests/DataStorage/Cache/Connection/RedisCacheTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php b/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php index a1cb17732..b35c63717 100644 --- a/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php +++ b/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Cookie/CookieJarTest.php b/tests/DataStorage/Cookie/CookieJarTest.php index 26b0a8e63..0a200180f 100644 --- a/tests/DataStorage/Cookie/CookieJarTest.php +++ b/tests/DataStorage/Cookie/CookieJarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php b/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php index 33fa52e40..dd7059713 100644 --- a/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php +++ b/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Connection/MysqlConnectionTest.php b/tests/DataStorage/Database/Connection/MysqlConnectionTest.php index 7ebc13d77..99c12dc37 100644 --- a/tests/DataStorage/Database/Connection/MysqlConnectionTest.php +++ b/tests/DataStorage/Database/Connection/MysqlConnectionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Connection/NullConnectionTest.php b/tests/DataStorage/Database/Connection/NullConnectionTest.php index 7f82535b7..830c266d8 100644 --- a/tests/DataStorage/Database/Connection/NullConnectionTest.php +++ b/tests/DataStorage/Database/Connection/NullConnectionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Connection/PostgresConnectionTest.php b/tests/DataStorage/Database/Connection/PostgresConnectionTest.php index 133b9f2e8..46e37d55e 100644 --- a/tests/DataStorage/Database/Connection/PostgresConnectionTest.php +++ b/tests/DataStorage/Database/Connection/PostgresConnectionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database\Connection; diff --git a/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php b/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php index edf24e3e7..d988a3cf2 100644 --- a/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php +++ b/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database\Connection; diff --git a/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php b/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php index 98288f114..d0e3f4831 100644 --- a/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php +++ b/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/DataMapperAbstractTest.php b/tests/DataStorage/Database/DataMapperAbstractTest.php index c0a9aa8e3..409ebf1c4 100644 --- a/tests/DataStorage/Database/DataMapperAbstractTest.php +++ b/tests/DataStorage/Database/DataMapperAbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database; diff --git a/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php b/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php index 5d4fe0b90..5d5e46d08 100644 --- a/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php +++ b/tests/DataStorage/Database/DatabaseExceptionFactoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/DatabasePoolTest.php b/tests/DataStorage/Database/DatabasePoolTest.php index bd3396bf1..96ab691dd 100644 --- a/tests/DataStorage/Database/DatabasePoolTest.php +++ b/tests/DataStorage/Database/DatabasePoolTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/DatabaseStatusTest.php b/tests/DataStorage/Database/DatabaseStatusTest.php index 112dfeb04..9305cbf8b 100644 --- a/tests/DataStorage/Database/DatabaseStatusTest.php +++ b/tests/DataStorage/Database/DatabaseStatusTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/DatabaseTypeTest.php b/tests/DataStorage/Database/DatabaseTypeTest.php index b9fd4292e..8f1c44ed6 100644 --- a/tests/DataStorage/Database/DatabaseTypeTest.php +++ b/tests/DataStorage/Database/DatabaseTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php index 4b8bc0749..8283b53ae 100644 --- a/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php index e849f91a9..6cf037b2d 100644 --- a/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php index cb67443d4..79c1d1530 100644 --- a/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/BuilderTest.php b/tests/DataStorage/Database/Query/BuilderTest.php index b74729ec7..656ca5314 100644 --- a/tests/DataStorage/Database/Query/BuilderTest.php +++ b/tests/DataStorage/Database/Query/BuilderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/ColumnTest.php b/tests/DataStorage/Database/Query/ColumnTest.php index b8f7fe24c..613ad8ad8 100644 --- a/tests/DataStorage/Database/Query/ColumnTest.php +++ b/tests/DataStorage/Database/Query/ColumnTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/CountTest.php b/tests/DataStorage/Database/Query/CountTest.php index 8850fcd43..1cdc83be5 100644 --- a/tests/DataStorage/Database/Query/CountTest.php +++ b/tests/DataStorage/Database/Query/CountTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/ExpressionTest.php b/tests/DataStorage/Database/Query/ExpressionTest.php index b5249a2ea..761a95273 100644 --- a/tests/DataStorage/Database/Query/ExpressionTest.php +++ b/tests/DataStorage/Database/Query/ExpressionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/FromTest.php b/tests/DataStorage/Database/Query/FromTest.php index 7c824b046..a7d827e9d 100644 --- a/tests/DataStorage/Database/Query/FromTest.php +++ b/tests/DataStorage/Database/Query/FromTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/Grammar/GrammarTest.php b/tests/DataStorage/Database/Query/Grammar/GrammarTest.php index 28ee36b3d..071124757 100644 --- a/tests/DataStorage/Database/Query/Grammar/GrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/GrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php index dc7d707dd..1273e6498 100644 --- a/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/MicrosoftGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php index 257df6b37..9813b2c07 100644 --- a/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/MysqlGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php index 877d57e7b..bf482ebc5 100644 --- a/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php index 371c693c5..1e44dbe27 100644 --- a/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php index 50487b01e..a0e363728 100644 --- a/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/SQLiteGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/IntoTest.php b/tests/DataStorage/Database/Query/IntoTest.php index d0868bef2..1417697a3 100644 --- a/tests/DataStorage/Database/Query/IntoTest.php +++ b/tests/DataStorage/Database/Query/IntoTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/JoinTypeTest.php b/tests/DataStorage/Database/Query/JoinTypeTest.php index 48102a613..57d1326e6 100644 --- a/tests/DataStorage/Database/Query/JoinTypeTest.php +++ b/tests/DataStorage/Database/Query/JoinTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/QueryTypeTest.php b/tests/DataStorage/Database/Query/QueryTypeTest.php index 09ce5ec72..7fdc8290b 100644 --- a/tests/DataStorage/Database/Query/QueryTypeTest.php +++ b/tests/DataStorage/Database/Query/QueryTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/SelectTest.php b/tests/DataStorage/Database/Query/SelectTest.php index 2e9f27e21..edfe13932 100644 --- a/tests/DataStorage/Database/Query/SelectTest.php +++ b/tests/DataStorage/Database/Query/SelectTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Query/WhereTest.php b/tests/DataStorage/Database/Query/WhereTest.php index c5c8e7817..9b900586b 100644 --- a/tests/DataStorage/Database/Query/WhereTest.php +++ b/tests/DataStorage/Database/Query/WhereTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/RelationTypeTest.php b/tests/DataStorage/Database/RelationTypeTest.php index 24e7fd69e..49fa324b0 100644 --- a/tests/DataStorage/Database/RelationTypeTest.php +++ b/tests/DataStorage/Database/RelationTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Schema/BuilderTest.php b/tests/DataStorage/Database/Schema/BuilderTest.php index 88f565455..05bf10cfd 100644 --- a/tests/DataStorage/Database/Schema/BuilderTest.php +++ b/tests/DataStorage/Database/Schema/BuilderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php b/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php index 3acdb6c2d..940711ed6 100644 --- a/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php +++ b/tests/DataStorage/Database/Schema/Exception/TableExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php index 2bb52823b..0569d57f4 100644 --- a/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/GrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php index 14e504eba..6c162110a 100644 --- a/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php index b00b82878..7c3d65113 100644 --- a/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php index ce14bf3fe..9b789b70b 100644 --- a/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php index a405acaa6..b0fb27f02 100644 --- a/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/SQLiteGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database\Schema\Grammar; diff --git a/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php index dde8ff605..323315803 100644 --- a/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/Schema/QueryTypeTest.php b/tests/DataStorage/Database/Schema/QueryTypeTest.php index 45061243f..cea4c7e54 100644 --- a/tests/DataStorage/Database/Schema/QueryTypeTest.php +++ b/tests/DataStorage/Database/Schema/QueryTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/BaseModel.php b/tests/DataStorage/Database/TestModel/BaseModel.php index 67c99da40..0401c3551 100644 --- a/tests/DataStorage/Database/TestModel/BaseModel.php +++ b/tests/DataStorage/Database/TestModel/BaseModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/BaseModelMapper.php b/tests/DataStorage/Database/TestModel/BaseModelMapper.php index 20dd5286d..544ea3966 100644 --- a/tests/DataStorage/Database/TestModel/BaseModelMapper.php +++ b/tests/DataStorage/Database/TestModel/BaseModelMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database\TestModel; diff --git a/tests/DataStorage/Database/TestModel/BelongsToModel.php b/tests/DataStorage/Database/TestModel/BelongsToModel.php index 2afe2c7c7..5299b1c1e 100644 --- a/tests/DataStorage/Database/TestModel/BelongsToModel.php +++ b/tests/DataStorage/Database/TestModel/BelongsToModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/BelongsToModelMapper.php b/tests/DataStorage/Database/TestModel/BelongsToModelMapper.php index 80e114fe1..42a8c3518 100644 --- a/tests/DataStorage/Database/TestModel/BelongsToModelMapper.php +++ b/tests/DataStorage/Database/TestModel/BelongsToModelMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database\TestModel; diff --git a/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php b/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php index a00ac07b3..6958cdf73 100644 --- a/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php +++ b/tests/DataStorage/Database/TestModel/ManyToManyDirectModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/ManyToManyDirectModelMapper.php b/tests/DataStorage/Database/TestModel/ManyToManyDirectModelMapper.php index cabaaf3dd..22553cb2d 100644 --- a/tests/DataStorage/Database/TestModel/ManyToManyDirectModelMapper.php +++ b/tests/DataStorage/Database/TestModel/ManyToManyDirectModelMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database\TestModel; diff --git a/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php b/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php index 9905bbf2a..6503e5b31 100644 --- a/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php +++ b/tests/DataStorage/Database/TestModel/ManyToManyRelModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/ManyToManyRelModelMapper.php b/tests/DataStorage/Database/TestModel/ManyToManyRelModelMapper.php index 795b07a2c..6cbca50c5 100644 --- a/tests/DataStorage/Database/TestModel/ManyToManyRelModelMapper.php +++ b/tests/DataStorage/Database/TestModel/ManyToManyRelModelMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database\TestModel; diff --git a/tests/DataStorage/Database/TestModel/NullBaseModel.php b/tests/DataStorage/Database/TestModel/NullBaseModel.php index d2ecc388b..78754679a 100644 --- a/tests/DataStorage/Database/TestModel/NullBaseModel.php +++ b/tests/DataStorage/Database/TestModel/NullBaseModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/NullBelongsToModel.php b/tests/DataStorage/Database/TestModel/NullBelongsToModel.php index 9ae61822a..b1e0667a6 100644 --- a/tests/DataStorage/Database/TestModel/NullBelongsToModel.php +++ b/tests/DataStorage/Database/TestModel/NullBelongsToModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php b/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php index 95cc205b0..5783f7daa 100644 --- a/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php +++ b/tests/DataStorage/Database/TestModel/NullManyToManyDirectModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php b/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php index ec9496998..212d81a96 100644 --- a/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php +++ b/tests/DataStorage/Database/TestModel/NullManyToManyRelModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php b/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php index 050969f43..c7469edbb 100644 --- a/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php +++ b/tests/DataStorage/Database/TestModel/NullOwnsOneModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/OwnsOneModel.php b/tests/DataStorage/Database/TestModel/OwnsOneModel.php index 72ea877b1..832d5eb4d 100644 --- a/tests/DataStorage/Database/TestModel/OwnsOneModel.php +++ b/tests/DataStorage/Database/TestModel/OwnsOneModel.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Database/TestModel/OwnsOneModelMapper.php b/tests/DataStorage/Database/TestModel/OwnsOneModelMapper.php index 8a99bf166..c67f9b590 100644 --- a/tests/DataStorage/Database/TestModel/OwnsOneModelMapper.php +++ b/tests/DataStorage/Database/TestModel/OwnsOneModelMapper.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\DataStorage\Database\TestModel; diff --git a/tests/DataStorage/File/JsonBuilderTest.php b/tests/DataStorage/File/JsonBuilderTest.php index 6aebb5af6..acf5da580 100644 --- a/tests/DataStorage/File/JsonBuilderTest.php +++ b/tests/DataStorage/File/JsonBuilderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/LockExceptionTest.php b/tests/DataStorage/LockExceptionTest.php index 55af255bd..3fa4981e2 100644 --- a/tests/DataStorage/LockExceptionTest.php +++ b/tests/DataStorage/LockExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/DataStorage/Session/HttpSessionTest.php b/tests/DataStorage/Session/HttpSessionTest.php index bfb91ae3f..4f4135d86 100644 --- a/tests/DataStorage/Session/HttpSessionTest.php +++ b/tests/DataStorage/Session/HttpSessionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Dispatcher/DispatcherTest.php b/tests/Dispatcher/DispatcherTest.php index 27dfb3395..d99c500ca 100644 --- a/tests/Dispatcher/DispatcherTest.php +++ b/tests/Dispatcher/DispatcherTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Dispatcher/TestController.php b/tests/Dispatcher/TestController.php index 7e979b48a..f0d78754d 100644 --- a/tests/Dispatcher/TestController.php +++ b/tests/Dispatcher/TestController.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); namespace phpOMS\tests\Dispatcher; diff --git a/tests/Event/EventManagerTest.php b/tests/Event/EventManagerTest.php index 3b811e17c..f0d76897f 100644 --- a/tests/Event/EventManagerTest.php +++ b/tests/Event/EventManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/ExtensionTest.php b/tests/ExtensionTest.php index 6939dac89..4af20afad 100644 --- a/tests/ExtensionTest.php +++ b/tests/ExtensionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/CityMapperTest.php b/tests/Localization/Defaults/CityMapperTest.php index 42acdca59..e2f321f65 100644 --- a/tests/Localization/Defaults/CityMapperTest.php +++ b/tests/Localization/Defaults/CityMapperTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/CityTest.php b/tests/Localization/Defaults/CityTest.php index 2b2630d1d..cb1829073 100644 --- a/tests/Localization/Defaults/CityTest.php +++ b/tests/Localization/Defaults/CityTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/CountryMapperTest.php b/tests/Localization/Defaults/CountryMapperTest.php index c200cb642..35bf78f01 100644 --- a/tests/Localization/Defaults/CountryMapperTest.php +++ b/tests/Localization/Defaults/CountryMapperTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/CountryTest.php b/tests/Localization/Defaults/CountryTest.php index c27b1e406..3b1742196 100644 --- a/tests/Localization/Defaults/CountryTest.php +++ b/tests/Localization/Defaults/CountryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/CurrencyMapperTest.php b/tests/Localization/Defaults/CurrencyMapperTest.php index 730cf23ee..7267d4610 100644 --- a/tests/Localization/Defaults/CurrencyMapperTest.php +++ b/tests/Localization/Defaults/CurrencyMapperTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/CurrencyTest.php b/tests/Localization/Defaults/CurrencyTest.php index 84c46ac8b..25d6147c3 100644 --- a/tests/Localization/Defaults/CurrencyTest.php +++ b/tests/Localization/Defaults/CurrencyTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/IbanMapperTest.php b/tests/Localization/Defaults/IbanMapperTest.php index 85b549302..c889284f0 100644 --- a/tests/Localization/Defaults/IbanMapperTest.php +++ b/tests/Localization/Defaults/IbanMapperTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/IbanTest.php b/tests/Localization/Defaults/IbanTest.php index 812cd9002..3c56bf652 100644 --- a/tests/Localization/Defaults/IbanTest.php +++ b/tests/Localization/Defaults/IbanTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/LanguageMapperTest.php b/tests/Localization/Defaults/LanguageMapperTest.php index c03a27750..0ecd7e860 100644 --- a/tests/Localization/Defaults/LanguageMapperTest.php +++ b/tests/Localization/Defaults/LanguageMapperTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/Defaults/LanguageTest.php b/tests/Localization/Defaults/LanguageTest.php index f6dbd38e1..4a7b1c04c 100644 --- a/tests/Localization/Defaults/LanguageTest.php +++ b/tests/Localization/Defaults/LanguageTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO3166CharEnumTest.php b/tests/Localization/ISO3166CharEnumTest.php index ee0bb8150..e78f02db9 100644 --- a/tests/Localization/ISO3166CharEnumTest.php +++ b/tests/Localization/ISO3166CharEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO3166NameEnumTest.php b/tests/Localization/ISO3166NameEnumTest.php index a0b9cf5c6..77726d8fa 100644 --- a/tests/Localization/ISO3166NameEnumTest.php +++ b/tests/Localization/ISO3166NameEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO3166NumEnumTest.php b/tests/Localization/ISO3166NumEnumTest.php index b98daf08f..e4faec439 100644 --- a/tests/Localization/ISO3166NumEnumTest.php +++ b/tests/Localization/ISO3166NumEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO3166TwoEnumTest.php b/tests/Localization/ISO3166TwoEnumTest.php index fd415f7f2..73cb433b6 100644 --- a/tests/Localization/ISO3166TwoEnumTest.php +++ b/tests/Localization/ISO3166TwoEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO4217CharEnumTest.php b/tests/Localization/ISO4217CharEnumTest.php index fe7d6b966..bf8bf2dbd 100644 --- a/tests/Localization/ISO4217CharEnumTest.php +++ b/tests/Localization/ISO4217CharEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO4217DecimalEnumTest.php b/tests/Localization/ISO4217DecimalEnumTest.php index 275a0907c..3a0461432 100644 --- a/tests/Localization/ISO4217DecimalEnumTest.php +++ b/tests/Localization/ISO4217DecimalEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO4217EnumTest.php b/tests/Localization/ISO4217EnumTest.php index b67934004..b0bbb8729 100644 --- a/tests/Localization/ISO4217EnumTest.php +++ b/tests/Localization/ISO4217EnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO4217NumEnumTest.php b/tests/Localization/ISO4217NumEnumTest.php index ebf012f2d..6992351e1 100644 --- a/tests/Localization/ISO4217NumEnumTest.php +++ b/tests/Localization/ISO4217NumEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO4217SubUnitEnumTest.php b/tests/Localization/ISO4217SubUnitEnumTest.php index 095a7ee7f..b1c7993a3 100644 --- a/tests/Localization/ISO4217SubUnitEnumTest.php +++ b/tests/Localization/ISO4217SubUnitEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO4217SymbolEnumTest.php b/tests/Localization/ISO4217SymbolEnumTest.php index f80aa4242..da66b630c 100644 --- a/tests/Localization/ISO4217SymbolEnumTest.php +++ b/tests/Localization/ISO4217SymbolEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO639EnumTest.php b/tests/Localization/ISO639EnumTest.php index ca441ea96..c49fc5eae 100644 --- a/tests/Localization/ISO639EnumTest.php +++ b/tests/Localization/ISO639EnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO639x1EnumTest.php b/tests/Localization/ISO639x1EnumTest.php index 56ee4e9d5..24a8fee87 100644 --- a/tests/Localization/ISO639x1EnumTest.php +++ b/tests/Localization/ISO639x1EnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO639x2EnumTest.php b/tests/Localization/ISO639x2EnumTest.php index 05c23f59e..651c43453 100644 --- a/tests/Localization/ISO639x2EnumTest.php +++ b/tests/Localization/ISO639x2EnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/ISO8601EnumArrayTest.php b/tests/Localization/ISO8601EnumArrayTest.php index 78e055823..abcc1ba62 100644 --- a/tests/Localization/ISO8601EnumArrayTest.php +++ b/tests/Localization/ISO8601EnumArrayTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/L11nManagerTest.php b/tests/Localization/L11nManagerTest.php index 63902e643..b44e0c63c 100644 --- a/tests/Localization/L11nManagerTest.php +++ b/tests/Localization/L11nManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/LocalizationTest.php b/tests/Localization/LocalizationTest.php index 43267ce99..3e3b1af7e 100644 --- a/tests/Localization/LocalizationTest.php +++ b/tests/Localization/LocalizationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/MoneyTest.php b/tests/Localization/MoneyTest.php index ed9f3ea50..ecd368e20 100644 --- a/tests/Localization/MoneyTest.php +++ b/tests/Localization/MoneyTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/PhoneEnumTest.php b/tests/Localization/PhoneEnumTest.php index 847a7ecf5..99bfa5f76 100644 --- a/tests/Localization/PhoneEnumTest.php +++ b/tests/Localization/PhoneEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Localization/TimeZoneEnumArrayTest.php b/tests/Localization/TimeZoneEnumArrayTest.php index 69ba9abad..ff3b26266 100644 --- a/tests/Localization/TimeZoneEnumArrayTest.php +++ b/tests/Localization/TimeZoneEnumArrayTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Log/FileLoggerTest.php b/tests/Log/FileLoggerTest.php index 213c2a71a..4420e26f9 100644 --- a/tests/Log/FileLoggerTest.php +++ b/tests/Log/FileLoggerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Log/LogLevelTest.php b/tests/Log/LogLevelTest.php index 03e922393..aa086026c 100644 --- a/tests/Log/LogLevelTest.php +++ b/tests/Log/LogLevelTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Exception/ZeroDevisionExceptionTest.php b/tests/Math/Exception/ZeroDevisionExceptionTest.php index 3f886f928..d1f76b8dc 100644 --- a/tests/Math/Exception/ZeroDevisionExceptionTest.php +++ b/tests/Math/Exception/ZeroDevisionExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Functions/FibunacciTest.php b/tests/Math/Functions/FibunacciTest.php index 14430aecb..ca1cdbe84 100644 --- a/tests/Math/Functions/FibunacciTest.php +++ b/tests/Math/Functions/FibunacciTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Functions/FunctionsTest.php b/tests/Math/Functions/FunctionsTest.php index 57ae8bacc..bceb1d55b 100644 --- a/tests/Math/Functions/FunctionsTest.php +++ b/tests/Math/Functions/FunctionsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Functions/GammaTest.php b/tests/Math/Functions/GammaTest.php index 90f272243..f51b858a3 100644 --- a/tests/Math/Functions/GammaTest.php +++ b/tests/Math/Functions/GammaTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php b/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php index ef1d10186..45c872d1b 100644 --- a/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php +++ b/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D2/CircleTest.php b/tests/Math/Geometry/Shape/D2/CircleTest.php index f0ab82934..1ad8d4363 100644 --- a/tests/Math/Geometry/Shape/D2/CircleTest.php +++ b/tests/Math/Geometry/Shape/D2/CircleTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D2/EllipseTest.php b/tests/Math/Geometry/Shape/D2/EllipseTest.php index 786daf32a..d9b1944d5 100644 --- a/tests/Math/Geometry/Shape/D2/EllipseTest.php +++ b/tests/Math/Geometry/Shape/D2/EllipseTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D2/PolygonTest.php b/tests/Math/Geometry/Shape/D2/PolygonTest.php index 4dfa83d0b..2a2103dd8 100644 --- a/tests/Math/Geometry/Shape/D2/PolygonTest.php +++ b/tests/Math/Geometry/Shape/D2/PolygonTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php b/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php index 1b999a30f..991fd7d18 100644 --- a/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php +++ b/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D2/RectangleTest.php b/tests/Math/Geometry/Shape/D2/RectangleTest.php index 5fccc88ed..674c80b74 100644 --- a/tests/Math/Geometry/Shape/D2/RectangleTest.php +++ b/tests/Math/Geometry/Shape/D2/RectangleTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D2/TrapezoidTest.php b/tests/Math/Geometry/Shape/D2/TrapezoidTest.php index 403ef1166..7865ac996 100644 --- a/tests/Math/Geometry/Shape/D2/TrapezoidTest.php +++ b/tests/Math/Geometry/Shape/D2/TrapezoidTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D2/TriangleTest.php b/tests/Math/Geometry/Shape/D2/TriangleTest.php index 4cd7a32d9..a0e245b80 100644 --- a/tests/Math/Geometry/Shape/D2/TriangleTest.php +++ b/tests/Math/Geometry/Shape/D2/TriangleTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D3/ConeTest.php b/tests/Math/Geometry/Shape/D3/ConeTest.php index 9fdb69f14..25c316f3c 100644 --- a/tests/Math/Geometry/Shape/D3/ConeTest.php +++ b/tests/Math/Geometry/Shape/D3/ConeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D3/CuboidTest.php b/tests/Math/Geometry/Shape/D3/CuboidTest.php index f5b32cc59..32621b37a 100644 --- a/tests/Math/Geometry/Shape/D3/CuboidTest.php +++ b/tests/Math/Geometry/Shape/D3/CuboidTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D3/CylinderTest.php b/tests/Math/Geometry/Shape/D3/CylinderTest.php index 92dd97934..d3f2d9bb0 100644 --- a/tests/Math/Geometry/Shape/D3/CylinderTest.php +++ b/tests/Math/Geometry/Shape/D3/CylinderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D3/PrismTest.php b/tests/Math/Geometry/Shape/D3/PrismTest.php index 2089b0736..fc2332f3a 100644 --- a/tests/Math/Geometry/Shape/D3/PrismTest.php +++ b/tests/Math/Geometry/Shape/D3/PrismTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php b/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php index a3c12c728..71334de1d 100644 --- a/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php +++ b/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D3/SphereTest.php b/tests/Math/Geometry/Shape/D3/SphereTest.php index c7ccb945b..05838cab4 100644 --- a/tests/Math/Geometry/Shape/D3/SphereTest.php +++ b/tests/Math/Geometry/Shape/D3/SphereTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Geometry/Shape/D3/TetrahedronTest.php b/tests/Math/Geometry/Shape/D3/TetrahedronTest.php index 05ee2a1e1..7c1e132b6 100644 --- a/tests/Math/Geometry/Shape/D3/TetrahedronTest.php +++ b/tests/Math/Geometry/Shape/D3/TetrahedronTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Integral/GaussTest.php b/tests/Math/Integral/GaussTest.php index c51828855..802c4e8cc 100644 --- a/tests/Math/Integral/GaussTest.php +++ b/tests/Math/Integral/GaussTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/CholeskyDecompositionTest.php b/tests/Math/Matrix/CholeskyDecompositionTest.php index f9bf18558..66c1386cf 100644 --- a/tests/Math/Matrix/CholeskyDecompositionTest.php +++ b/tests/Math/Matrix/CholeskyDecompositionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/EigenvalueDecompositionTest.php b/tests/Math/Matrix/EigenvalueDecompositionTest.php index 7126225f0..557fabbd5 100644 --- a/tests/Math/Matrix/EigenvalueDecompositionTest.php +++ b/tests/Math/Matrix/EigenvalueDecompositionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php b/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php index c2b3b1208..c960de1cc 100644 --- a/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php +++ b/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/IdentityMatrixTest.php b/tests/Math/Matrix/IdentityMatrixTest.php index 1743089c3..a45bddb35 100644 --- a/tests/Math/Matrix/IdentityMatrixTest.php +++ b/tests/Math/Matrix/IdentityMatrixTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/LUDecompositionTest.php b/tests/Math/Matrix/LUDecompositionTest.php index a4d455ef4..f8fa50b17 100644 --- a/tests/Math/Matrix/LUDecompositionTest.php +++ b/tests/Math/Matrix/LUDecompositionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/MatrixTest.php b/tests/Math/Matrix/MatrixTest.php index 99106cd2e..f7f636357 100644 --- a/tests/Math/Matrix/MatrixTest.php +++ b/tests/Math/Matrix/MatrixTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/QRDecompositionTest.php b/tests/Math/Matrix/QRDecompositionTest.php index ec4f9bfe0..81b78eecc 100644 --- a/tests/Math/Matrix/QRDecompositionTest.php +++ b/tests/Math/Matrix/QRDecompositionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/SingularValueDecompositionTest.php b/tests/Math/Matrix/SingularValueDecompositionTest.php index 8bc7f02cf..19642a603 100644 --- a/tests/Math/Matrix/SingularValueDecompositionTest.php +++ b/tests/Math/Matrix/SingularValueDecompositionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Matrix/VectorTest.php b/tests/Math/Matrix/VectorTest.php index 0290aec0c..3b9a03c22 100644 --- a/tests/Math/Matrix/VectorTest.php +++ b/tests/Math/Matrix/VectorTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Number/ComplexTest.php b/tests/Math/Number/ComplexTest.php index d29096ce8..7b75c6b7a 100644 --- a/tests/Math/Number/ComplexTest.php +++ b/tests/Math/Number/ComplexTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Number/IntegerTest.php b/tests/Math/Number/IntegerTest.php index f7a759d66..3e52dcdae 100644 --- a/tests/Math/Number/IntegerTest.php +++ b/tests/Math/Number/IntegerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Number/NaturalTest.php b/tests/Math/Number/NaturalTest.php index bb4b49d01..86ac61196 100644 --- a/tests/Math/Number/NaturalTest.php +++ b/tests/Math/Number/NaturalTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Number/NumberTypeTest.php b/tests/Math/Number/NumberTypeTest.php index 07a5cdf82..d6084ecfb 100644 --- a/tests/Math/Number/NumberTypeTest.php +++ b/tests/Math/Number/NumberTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Number/NumbersTest.php b/tests/Math/Number/NumbersTest.php index 49d69a57d..98f1891b8 100644 --- a/tests/Math/Number/NumbersTest.php +++ b/tests/Math/Number/NumbersTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Number/PrimeTest.php b/tests/Math/Number/PrimeTest.php index 2b2aeb9de..75d5595e8 100644 --- a/tests/Math/Number/PrimeTest.php +++ b/tests/Math/Number/PrimeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php b/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php index b82bb507b..891e12f16 100644 --- a/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php b/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php index ef312fe07..ef3c0dcfa 100644 --- a/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php b/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php index 5c3a1b1e9..9b1f92d27 100644 --- a/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/PolynomialInterpolationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Parser/EvaluatorTest.php b/tests/Math/Parser/EvaluatorTest.php index 3eda377a3..3b1f93800 100644 --- a/tests/Math/Parser/EvaluatorTest.php +++ b/tests/Math/Parser/EvaluatorTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/AverageTest.php b/tests/Math/Statistic/AverageTest.php index 348526b19..079a60fb7 100644 --- a/tests/Math/Statistic/AverageTest.php +++ b/tests/Math/Statistic/AverageTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/BasicTest.php b/tests/Math/Statistic/BasicTest.php index 29ae7e3b6..09aebe66f 100644 --- a/tests/Math/Statistic/BasicTest.php +++ b/tests/Math/Statistic/BasicTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/CorrelationTest.php b/tests/Math/Statistic/CorrelationTest.php index 493a9bf82..54b100544 100644 --- a/tests/Math/Statistic/CorrelationTest.php +++ b/tests/Math/Statistic/CorrelationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/Forecast/ErrorTest.php b/tests/Math/Statistic/Forecast/ErrorTest.php index 08340266c..fd5741b9c 100644 --- a/tests/Math/Statistic/Forecast/ErrorTest.php +++ b/tests/Math/Statistic/Forecast/ErrorTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php index 241edc4f8..5956323ca 100644 --- a/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php +++ b/tests/Math/Statistic/Forecast/Regression/LevelLevelRegressionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php index 71f7703df..398492cdc 100644 --- a/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php +++ b/tests/Math/Statistic/Forecast/Regression/LevelLogRegressionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php index 40897f4b6..c8f1c9075 100644 --- a/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php +++ b/tests/Math/Statistic/Forecast/Regression/LogLevelRegressionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php b/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php index d42cce411..db36f2a48 100644 --- a/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php +++ b/tests/Math/Statistic/Forecast/Regression/LogLogRegressionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Statistic/MeasureOfDispersionTest.php b/tests/Math/Statistic/MeasureOfDispersionTest.php index a06a95a1e..5022e8a64 100644 --- a/tests/Math/Statistic/MeasureOfDispersionTest.php +++ b/tests/Math/Statistic/MeasureOfDispersionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php b/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php index 0a71c479d..8f97c26c3 100644 --- a/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/BetaDistributionTest.php b/tests/Math/Stochastic/Distribution/BetaDistributionTest.php index e157befb4..c6ec41429 100644 --- a/tests/Math/Stochastic/Distribution/BetaDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BetaDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php b/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php index a1bee75c0..07a5abea7 100644 --- a/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php b/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php index ff0794510..ca98f539b 100644 --- a/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php b/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php index e87bbbb4d..130929cc2 100644 --- a/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php b/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php index 0d8fa9044..048b3adff 100644 --- a/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/FDistributionTest.php b/tests/Math/Stochastic/Distribution/FDistributionTest.php index e5b7492b6..776388f5a 100644 --- a/tests/Math/Stochastic/Distribution/FDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/FDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/GammaDistributionTest.php b/tests/Math/Stochastic/Distribution/GammaDistributionTest.php index eaec61a27..a676ef1de 100644 --- a/tests/Math/Stochastic/Distribution/GammaDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/GammaDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php b/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php index b464237c6..97b909446 100644 --- a/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php b/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php index 8acc98e03..b9bf0e342 100644 --- a/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php b/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php index 87b19fdda..1a2247f57 100644 --- a/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/LogDistributionTest.php b/tests/Math/Stochastic/Distribution/LogDistributionTest.php index 9a1302f74..c044f67dd 100644 --- a/tests/Math/Stochastic/Distribution/LogDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php b/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php index 95434e1f3..14f5b95dd 100644 --- a/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php b/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php index 7b5870a3a..9cb5defcc 100644 --- a/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/NormalDistributionTest.php b/tests/Math/Stochastic/Distribution/NormalDistributionTest.php index 962e3890f..48116b47c 100644 --- a/tests/Math/Stochastic/Distribution/NormalDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/NormalDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php b/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php index 16b8440c8..ef1739951 100644 --- a/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php b/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php index f63758d69..048da2fa8 100644 --- a/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/TDistributionTest.php b/tests/Math/Stochastic/Distribution/TDistributionTest.php index 361f40618..f03ea0dde 100644 --- a/tests/Math/Stochastic/Distribution/TDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/TDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php b/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php index 5a683e15e..7e0fbe60d 100644 --- a/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php +++ b/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php b/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php index bb4e51e60..9ff8bb49c 100644 --- a/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php +++ b/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php b/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php index 3e55dd64b..44241ff77 100644 --- a/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/Distribution/ZTestTest.php b/tests/Math/Stochastic/Distribution/ZTestTest.php index 3831945c4..c47e1d308 100644 --- a/tests/Math/Stochastic/Distribution/ZTestTest.php +++ b/tests/Math/Stochastic/Distribution/ZTestTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Math/Stochastic/NaiveBayesFilterTest.php b/tests/Math/Stochastic/NaiveBayesFilterTest.php index ae3a4d711..c0370df53 100644 --- a/tests/Math/Stochastic/NaiveBayesFilterTest.php +++ b/tests/Math/Stochastic/NaiveBayesFilterTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Console/HeaderTest.php b/tests/Message/Console/HeaderTest.php index dc2aa2737..1c89f1d7d 100644 --- a/tests/Message/Console/HeaderTest.php +++ b/tests/Message/Console/HeaderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Console/RequestTest.php b/tests/Message/Console/RequestTest.php index 7d596be65..a1d59312f 100644 --- a/tests/Message/Console/RequestTest.php +++ b/tests/Message/Console/RequestTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Console/ResponseTest.php b/tests/Message/Console/ResponseTest.php index 651333885..620817b3e 100644 --- a/tests/Message/Console/ResponseTest.php +++ b/tests/Message/Console/ResponseTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/HeaderAbstractTest.php b/tests/Message/HeaderAbstractTest.php index 1dd74ca33..012bf324f 100644 --- a/tests/Message/HeaderAbstractTest.php +++ b/tests/Message/HeaderAbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/BrowserTypeTest.php b/tests/Message/Http/BrowserTypeTest.php index ddd75b24b..f3899dff8 100644 --- a/tests/Message/Http/BrowserTypeTest.php +++ b/tests/Message/Http/BrowserTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/HeaderTest.php b/tests/Message/Http/HeaderTest.php index 641e4a120..cce7333f9 100644 --- a/tests/Message/Http/HeaderTest.php +++ b/tests/Message/Http/HeaderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/OSTypeTest.php b/tests/Message/Http/OSTypeTest.php index 0ca26ee09..f074763f0 100644 --- a/tests/Message/Http/OSTypeTest.php +++ b/tests/Message/Http/OSTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/RequestMethodTest.php b/tests/Message/Http/RequestMethodTest.php index 13133777e..8e4bd5a70 100644 --- a/tests/Message/Http/RequestMethodTest.php +++ b/tests/Message/Http/RequestMethodTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/RequestStatusCodeTest.php b/tests/Message/Http/RequestStatusCodeTest.php index 32a39c16f..10d8d048f 100644 --- a/tests/Message/Http/RequestStatusCodeTest.php +++ b/tests/Message/Http/RequestStatusCodeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/RequestStatusTest.php b/tests/Message/Http/RequestStatusTest.php index 35bec42f5..c403225c5 100644 --- a/tests/Message/Http/RequestStatusTest.php +++ b/tests/Message/Http/RequestStatusTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/RequestTest.php b/tests/Message/Http/RequestTest.php index 91463925a..a6efa44fb 100644 --- a/tests/Message/Http/RequestTest.php +++ b/tests/Message/Http/RequestTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/ResponseTest.php b/tests/Message/Http/ResponseTest.php index 232029260..d2c4726f0 100644 --- a/tests/Message/Http/ResponseTest.php +++ b/tests/Message/Http/ResponseTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Http/RestTest.php b/tests/Message/Http/RestTest.php index b3555a38b..75b1c76d2 100644 --- a/tests/Message/Http/RestTest.php +++ b/tests/Message/Http/RestTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Mail/ImapTest.php b/tests/Message/Mail/ImapTest.php index 1130ba262..7d05b30a8 100644 --- a/tests/Message/Mail/ImapTest.php +++ b/tests/Message/Mail/ImapTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Mail/MailTest.php b/tests/Message/Mail/MailTest.php index 60875a6f5..20be469ae 100644 --- a/tests/Message/Mail/MailTest.php +++ b/tests/Message/Mail/MailTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Mail/NntpTest.php b/tests/Message/Mail/NntpTest.php index 07a69d2e3..594be56c0 100644 --- a/tests/Message/Mail/NntpTest.php +++ b/tests/Message/Mail/NntpTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Mail/Pop3Test.php b/tests/Message/Mail/Pop3Test.php index 7e590923c..41202a3f9 100644 --- a/tests/Message/Mail/Pop3Test.php +++ b/tests/Message/Mail/Pop3Test.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/RequestSourceTest.php b/tests/Message/RequestSourceTest.php index b3a390c40..a1d3f2f13 100644 --- a/tests/Message/RequestSourceTest.php +++ b/tests/Message/RequestSourceTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/ResponseAbstractTest.php b/tests/Message/ResponseAbstractTest.php index 9b7c408c6..0ee24cd26 100644 --- a/tests/Message/ResponseAbstractTest.php +++ b/tests/Message/ResponseAbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/ResponseTypeTest.php b/tests/Message/ResponseTypeTest.php index 0ef514ab4..8c0351248 100644 --- a/tests/Message/ResponseTypeTest.php +++ b/tests/Message/ResponseTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Socket/RequestTest.php b/tests/Message/Socket/RequestTest.php index 46b256e29..c295f95a9 100644 --- a/tests/Message/Socket/RequestTest.php +++ b/tests/Message/Socket/RequestTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Message/Socket/ResponseTest.php b/tests/Message/Socket/ResponseTest.php index 2b21b4342..8995496d4 100644 --- a/tests/Message/Socket/ResponseTest.php +++ b/tests/Message/Socket/ResponseTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Model/Html/HeadTest.php b/tests/Model/Html/HeadTest.php index 5f7488642..a78a6c1ff 100644 --- a/tests/Model/Html/HeadTest.php +++ b/tests/Model/Html/HeadTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Model/Html/MetaTest.php b/tests/Model/Html/MetaTest.php index 3219271b1..841344917 100644 --- a/tests/Model/Html/MetaTest.php +++ b/tests/Model/Html/MetaTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Model/Message/DomActionTest.php b/tests/Model/Message/DomActionTest.php index 8210bf6dd..50807a59f 100644 --- a/tests/Model/Message/DomActionTest.php +++ b/tests/Model/Message/DomActionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Model/Message/DomTest.php b/tests/Model/Message/DomTest.php index a3dea12f0..9c5da3589 100644 --- a/tests/Model/Message/DomTest.php +++ b/tests/Model/Message/DomTest.php @@ -8,7 +8,7 @@ * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ namespace phpOMS\tests\phpOMS\Model\Message; diff --git a/tests/Model/Message/FormValidationTest.php b/tests/Model/Message/FormValidationTest.php index 94f91f2a9..bcc00ff86 100644 --- a/tests/Model/Message/FormValidationTest.php +++ b/tests/Model/Message/FormValidationTest.php @@ -8,7 +8,7 @@ * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ namespace phpOMS\tests\phpOMS\Model\Message; diff --git a/tests/Model/Message/NotifyTest.php b/tests/Model/Message/NotifyTest.php index e63c0243a..cb844345b 100644 --- a/tests/Model/Message/NotifyTest.php +++ b/tests/Model/Message/NotifyTest.php @@ -8,7 +8,7 @@ * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ namespace phpOMS\tests\phpOMS\Model\Message; diff --git a/tests/Model/Message/NotifyTypeTest.php b/tests/Model/Message/NotifyTypeTest.php index a60a21395..0be3ddb42 100644 --- a/tests/Model/Message/NotifyTypeTest.php +++ b/tests/Model/Message/NotifyTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Model/Message/RedirectTest.php b/tests/Model/Message/RedirectTest.php index 218f9974c..4db043a0d 100644 --- a/tests/Model/Message/RedirectTest.php +++ b/tests/Model/Message/RedirectTest.php @@ -8,7 +8,7 @@ * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ namespace phpOMS\tests\phpOMS\Model\Message; diff --git a/tests/Model/Message/ReloadTest.php b/tests/Model/Message/ReloadTest.php index 2444a57f3..cd41657f4 100644 --- a/tests/Model/Message/ReloadTest.php +++ b/tests/Model/Message/ReloadTest.php @@ -8,7 +8,7 @@ * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ namespace phpOMS\tests\phpOMS\Model\Message; diff --git a/tests/Module/Exception/InvalidModuleExceptionTest.php b/tests/Module/Exception/InvalidModuleExceptionTest.php index 5c8278108..84bbb55ed 100644 --- a/tests/Module/Exception/InvalidModuleExceptionTest.php +++ b/tests/Module/Exception/InvalidModuleExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Module/Exception/InvalidThemeExceptionTest.php b/tests/Module/Exception/InvalidThemeExceptionTest.php index e24050333..1f17c84ad 100644 --- a/tests/Module/Exception/InvalidThemeExceptionTest.php +++ b/tests/Module/Exception/InvalidThemeExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Module/InfoManagerTest.php b/tests/Module/InfoManagerTest.php index fde950200..779fedb3e 100644 --- a/tests/Module/InfoManagerTest.php +++ b/tests/Module/InfoManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Module/ModuleAbstractTest.php b/tests/Module/ModuleAbstractTest.php index 2f5c88aa9..a16a8f334 100644 --- a/tests/Module/ModuleAbstractTest.php +++ b/tests/Module/ModuleAbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Module/ModuleManagerTest.php b/tests/Module/ModuleManagerTest.php index d005365f4..fcedc1b41 100644 --- a/tests/Module/ModuleManagerTest.php +++ b/tests/Module/ModuleManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Module/NullModuleTest.php b/tests/Module/NullModuleTest.php index b2cc23f8c..4248c8191 100644 --- a/tests/Module/NullModuleTest.php +++ b/tests/Module/NullModuleTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Module/PackageManagerTest.php b/tests/Module/PackageManagerTest.php index b71d02a6f..276f1869f 100644 --- a/tests/Module/PackageManagerTest.php +++ b/tests/Module/PackageManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Router/RouteVerbTest.php b/tests/Router/RouteVerbTest.php index 6ed9f5179..4b5fbbf93 100644 --- a/tests/Router/RouteVerbTest.php +++ b/tests/Router/RouteVerbTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Router/RouterTest.php b/tests/Router/RouterTest.php index c6750c064..547ce9335 100644 --- a/tests/Router/RouterTest.php +++ b/tests/Router/RouterTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Security/PhpCodeTest.php b/tests/Security/PhpCodeTest.php index 5e4646611..7bd2b210c 100644 --- a/tests/Security/PhpCodeTest.php +++ b/tests/Security/PhpCodeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/Client/ClientConnectionTest.php b/tests/Socket/Client/ClientConnectionTest.php index acac3884e..23a38b685 100644 --- a/tests/Socket/Client/ClientConnectionTest.php +++ b/tests/Socket/Client/ClientConnectionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/Client/ClientTest.php b/tests/Socket/Client/ClientTest.php index 4456a192d..af4e53d7c 100644 --- a/tests/Socket/Client/ClientTest.php +++ b/tests/Socket/Client/ClientTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/Client/NullClientConnectionTest.php b/tests/Socket/Client/NullClientConnectionTest.php index 066d01c00..971eef09c 100644 --- a/tests/Socket/Client/NullClientConnectionTest.php +++ b/tests/Socket/Client/NullClientConnectionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/CommandManagerTest.php b/tests/Socket/CommandManagerTest.php index ef6000b80..03807ec50 100644 --- a/tests/Socket/CommandManagerTest.php +++ b/tests/Socket/CommandManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/Packets/HeaderTest.php b/tests/Socket/Packets/HeaderTest.php index 122bd5ed2..58d7f2bca 100644 --- a/tests/Socket/Packets/HeaderTest.php +++ b/tests/Socket/Packets/HeaderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/Packets/PacketManagerTest.php b/tests/Socket/Packets/PacketManagerTest.php index 4ee2046ab..a87255f71 100644 --- a/tests/Socket/Packets/PacketManagerTest.php +++ b/tests/Socket/Packets/PacketManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/Packets/PacketTypeTest.php b/tests/Socket/Packets/PacketTypeTest.php index 9eff3d5d9..554c79fe5 100644 --- a/tests/Socket/Packets/PacketTypeTest.php +++ b/tests/Socket/Packets/PacketTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/Server/ClientManagerTest.php b/tests/Socket/Server/ClientManagerTest.php index 0c7011c04..b92c0ef19 100644 --- a/tests/Socket/Server/ClientManagerTest.php +++ b/tests/Socket/Server/ClientManagerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/Server/ServerTest.php b/tests/Socket/Server/ServerTest.php index f0fcfbe7b..10c55aa2c 100644 --- a/tests/Socket/Server/ServerTest.php +++ b/tests/Socket/Server/ServerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Socket/SocketTypeTest.php b/tests/Socket/SocketTypeTest.php index 64534486f..7697a74a8 100644 --- a/tests/Socket/SocketTypeTest.php +++ b/tests/Socket/SocketTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/AddressTest.php b/tests/Stdlib/Base/AddressTest.php index 67f990567..8d706a110 100644 --- a/tests/Stdlib/Base/AddressTest.php +++ b/tests/Stdlib/Base/AddressTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/AddressTypeTest.php b/tests/Stdlib/Base/AddressTypeTest.php index e2fed7d67..3a60065a1 100644 --- a/tests/Stdlib/Base/AddressTypeTest.php +++ b/tests/Stdlib/Base/AddressTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/EnumArrayDemo.php b/tests/Stdlib/Base/EnumArrayDemo.php index 7058adc04..4f644f14c 100644 --- a/tests/Stdlib/Base/EnumArrayDemo.php +++ b/tests/Stdlib/Base/EnumArrayDemo.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/EnumArrayTest.php b/tests/Stdlib/Base/EnumArrayTest.php index eb2e96e38..abf9e6d1f 100644 --- a/tests/Stdlib/Base/EnumArrayTest.php +++ b/tests/Stdlib/Base/EnumArrayTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/EnumDemo.php b/tests/Stdlib/Base/EnumDemo.php index a49f98e93..d6bd34a10 100644 --- a/tests/Stdlib/Base/EnumDemo.php +++ b/tests/Stdlib/Base/EnumDemo.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/EnumTest.php b/tests/Stdlib/Base/EnumTest.php index 8a050525e..c6573fe11 100644 --- a/tests/Stdlib/Base/EnumTest.php +++ b/tests/Stdlib/Base/EnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php b/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php index 489f4a481..3b4a95f78 100644 --- a/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php +++ b/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php b/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php index 8469e3fde..1a45465e4 100644 --- a/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php +++ b/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/IbanTest.php b/tests/Stdlib/Base/IbanTest.php index d8a2f20c1..4db245f56 100644 --- a/tests/Stdlib/Base/IbanTest.php +++ b/tests/Stdlib/Base/IbanTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/LocationTest.php b/tests/Stdlib/Base/LocationTest.php index f840c8810..784f41e6f 100644 --- a/tests/Stdlib/Base/LocationTest.php +++ b/tests/Stdlib/Base/LocationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/NullLocationTest.php b/tests/Stdlib/Base/NullLocationTest.php index a86939205..ce08f2d06 100644 --- a/tests/Stdlib/Base/NullLocationTest.php +++ b/tests/Stdlib/Base/NullLocationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/PhoneTypeTest.php b/tests/Stdlib/Base/PhoneTypeTest.php index 3851e3c26..fcc389138 100644 --- a/tests/Stdlib/Base/PhoneTypeTest.php +++ b/tests/Stdlib/Base/PhoneTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Base/SmartDateTimeTest.php b/tests/Stdlib/Base/SmartDateTimeTest.php index 363be99db..85b898108 100644 --- a/tests/Stdlib/Base/SmartDateTimeTest.php +++ b/tests/Stdlib/Base/SmartDateTimeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Graph/BinaryTreeTest.php b/tests/Stdlib/Graph/BinaryTreeTest.php index d2b84b156..a4e89ecb1 100644 --- a/tests/Stdlib/Graph/BinaryTreeTest.php +++ b/tests/Stdlib/Graph/BinaryTreeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Graph/EdgeTest.php b/tests/Stdlib/Graph/EdgeTest.php index 77ee57f67..888b2d650 100644 --- a/tests/Stdlib/Graph/EdgeTest.php +++ b/tests/Stdlib/Graph/EdgeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Graph/GraphTest.php b/tests/Stdlib/Graph/GraphTest.php index ce3644781..36a999fcd 100644 --- a/tests/Stdlib/Graph/GraphTest.php +++ b/tests/Stdlib/Graph/GraphTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Graph/NodeTest.php b/tests/Stdlib/Graph/NodeTest.php index 4c4434955..ef6df54b6 100644 --- a/tests/Stdlib/Graph/NodeTest.php +++ b/tests/Stdlib/Graph/NodeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Graph/TreeTest.php b/tests/Stdlib/Graph/TreeTest.php index 1f91bcee0..f92033e3f 100644 --- a/tests/Stdlib/Graph/TreeTest.php +++ b/tests/Stdlib/Graph/TreeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Map/KeyTypeTest.php b/tests/Stdlib/Map/KeyTypeTest.php index c5ec14fe6..bd2d33f0b 100644 --- a/tests/Stdlib/Map/KeyTypeTest.php +++ b/tests/Stdlib/Map/KeyTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Map/MultiMapTest.php b/tests/Stdlib/Map/MultiMapTest.php index 938bf1e5d..be6afec93 100644 --- a/tests/Stdlib/Map/MultiMapTest.php +++ b/tests/Stdlib/Map/MultiMapTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Map/OrderTypeTest.php b/tests/Stdlib/Map/OrderTypeTest.php index 8241578c9..790ed2a46 100644 --- a/tests/Stdlib/Map/OrderTypeTest.php +++ b/tests/Stdlib/Map/OrderTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Queue/PriorityModeTest.php b/tests/Stdlib/Queue/PriorityModeTest.php index 1ccedd6fe..3ece93d4f 100644 --- a/tests/Stdlib/Queue/PriorityModeTest.php +++ b/tests/Stdlib/Queue/PriorityModeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Stdlib/Queue/PriorityQueueTest.php b/tests/Stdlib/Queue/PriorityQueueTest.php index 5b2452858..7d862487d 100644 --- a/tests/Stdlib/Queue/PriorityQueueTest.php +++ b/tests/Stdlib/Queue/PriorityQueueTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/ContentPutModeTest.php b/tests/System/File/ContentPutModeTest.php index 7028b1905..cd064a956 100644 --- a/tests/System/File/ContentPutModeTest.php +++ b/tests/System/File/ContentPutModeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/ExtensionTypeTest.php b/tests/System/File/ExtensionTypeTest.php index 749cd67aa..c7a2946b0 100644 --- a/tests/System/File/ExtensionTypeTest.php +++ b/tests/System/File/ExtensionTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/FileUtilsTest.php b/tests/System/File/FileUtilsTest.php index c5a7b0b2a..98a73e669 100644 --- a/tests/System/File/FileUtilsTest.php +++ b/tests/System/File/FileUtilsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/Ftp/DirectoryTest.php b/tests/System/File/Ftp/DirectoryTest.php index 7a75c24df..ba6d29036 100644 --- a/tests/System/File/Ftp/DirectoryTest.php +++ b/tests/System/File/Ftp/DirectoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/Ftp/FileTest.php b/tests/System/File/Ftp/FileTest.php index 35dd2ec71..62e616282 100644 --- a/tests/System/File/Ftp/FileTest.php +++ b/tests/System/File/Ftp/FileTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/Local/DirectoryTest.php b/tests/System/File/Local/DirectoryTest.php index ed26a8009..fe2eb80cb 100644 --- a/tests/System/File/Local/DirectoryTest.php +++ b/tests/System/File/Local/DirectoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/Local/FileTest.php b/tests/System/File/Local/FileTest.php index ed092622f..0065c9cdb 100644 --- a/tests/System/File/Local/FileTest.php +++ b/tests/System/File/Local/FileTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/Local/LocalStorageTest.php b/tests/System/File/Local/LocalStorageTest.php index 245a68341..a5a50ea8e 100644 --- a/tests/System/File/Local/LocalStorageTest.php +++ b/tests/System/File/Local/LocalStorageTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/PathExceptionTest.php b/tests/System/File/PathExceptionTest.php index 3cf9895db..da961cb2b 100644 --- a/tests/System/File/PathExceptionTest.php +++ b/tests/System/File/PathExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/PermissionExceptionTest.php b/tests/System/File/PermissionExceptionTest.php index 1f7fe6d39..d520194e4 100644 --- a/tests/System/File/PermissionExceptionTest.php +++ b/tests/System/File/PermissionExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/File/StorageTest.php b/tests/System/File/StorageTest.php index 12a0b06ab..52494cd4d 100644 --- a/tests/System/File/StorageTest.php +++ b/tests/System/File/StorageTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/MimeTypeTest.php b/tests/System/MimeTypeTest.php index 45e45d0da..7fa0c35f8 100644 --- a/tests/System/MimeTypeTest.php +++ b/tests/System/MimeTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/OperatingSystemTest.php b/tests/System/OperatingSystemTest.php index 9f7f6f0a4..74ae0aeca 100644 --- a/tests/System/OperatingSystemTest.php +++ b/tests/System/OperatingSystemTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/SystemTypeTest.php b/tests/System/SystemTypeTest.php index d50bbb655..9b74bf25e 100644 --- a/tests/System/SystemTypeTest.php +++ b/tests/System/SystemTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/System/SystemUtilsTest.php b/tests/System/SystemUtilsTest.php index c62e3c368..a868ff10f 100644 --- a/tests/System/SystemUtilsTest.php +++ b/tests/System/SystemUtilsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/UnhandledHandlerTest.php b/tests/UnhandledHandlerTest.php index 23ae4e221..740658421 100644 --- a/tests/UnhandledHandlerTest.php +++ b/tests/UnhandledHandlerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Uri/ArgumentTest.php b/tests/Uri/ArgumentTest.php index 15783416d..1a46976a8 100644 --- a/tests/Uri/ArgumentTest.php +++ b/tests/Uri/ArgumentTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Uri/HttpTest.php b/tests/Uri/HttpTest.php index 2a652a2d5..41ba750ba 100644 --- a/tests/Uri/HttpTest.php +++ b/tests/Uri/HttpTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Uri/InvalidUriExceptionTest.php b/tests/Uri/InvalidUriExceptionTest.php index 7af5bdfc1..dab020b39 100644 --- a/tests/Uri/InvalidUriExceptionTest.php +++ b/tests/Uri/InvalidUriExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Uri/UriFactoryTest.php b/tests/Uri/UriFactoryTest.php index be0a73cda..0845afe9f 100644 --- a/tests/Uri/UriFactoryTest.php +++ b/tests/Uri/UriFactoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Uri/UriSchemeTest.php b/tests/Uri/UriSchemeTest.php index 226da4d9e..f4399eba5 100644 --- a/tests/Uri/UriSchemeTest.php +++ b/tests/Uri/UriSchemeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/ArrayUtilsTest.php b/tests/Utils/ArrayUtilsTest.php index bd6d52cf3..6fdbe9c1e 100644 --- a/tests/Utils/ArrayUtilsTest.php +++ b/tests/Utils/ArrayUtilsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/AztecTest.php b/tests/Utils/Barcode/AztecTest.php index 3ec02ad90..aee0980fc 100644 --- a/tests/Utils/Barcode/AztecTest.php +++ b/tests/Utils/Barcode/AztecTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/C128AbstractTest.php b/tests/Utils/Barcode/C128AbstractTest.php index 776db8923..c40f6de66 100644 --- a/tests/Utils/Barcode/C128AbstractTest.php +++ b/tests/Utils/Barcode/C128AbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/C128aTest.php b/tests/Utils/Barcode/C128aTest.php index 7c62dc20c..5f2e50add 100644 --- a/tests/Utils/Barcode/C128aTest.php +++ b/tests/Utils/Barcode/C128aTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/C128bTest.php b/tests/Utils/Barcode/C128bTest.php index c79a84943..b6529a92e 100644 --- a/tests/Utils/Barcode/C128bTest.php +++ b/tests/Utils/Barcode/C128bTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/C128cTest.php b/tests/Utils/Barcode/C128cTest.php index 730d0c282..83325879f 100644 --- a/tests/Utils/Barcode/C128cTest.php +++ b/tests/Utils/Barcode/C128cTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/C25Test.php b/tests/Utils/Barcode/C25Test.php index 85505ac3a..d1df8be7b 100644 --- a/tests/Utils/Barcode/C25Test.php +++ b/tests/Utils/Barcode/C25Test.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/C39Test.php b/tests/Utils/Barcode/C39Test.php index 93edfebd7..8388826a1 100644 --- a/tests/Utils/Barcode/C39Test.php +++ b/tests/Utils/Barcode/C39Test.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/CodebarTest.php b/tests/Utils/Barcode/CodebarTest.php index 5a3a1f981..c026e87d9 100644 --- a/tests/Utils/Barcode/CodebarTest.php +++ b/tests/Utils/Barcode/CodebarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/DatamatrixTest.php b/tests/Utils/Barcode/DatamatrixTest.php index f8f0e6216..7fb3a38ba 100644 --- a/tests/Utils/Barcode/DatamatrixTest.php +++ b/tests/Utils/Barcode/DatamatrixTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/HIBCCTest.php b/tests/Utils/Barcode/HIBCCTest.php index 31617c0d8..ebe9ace76 100644 --- a/tests/Utils/Barcode/HIBCCTest.php +++ b/tests/Utils/Barcode/HIBCCTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/OrientationTypeTest.php b/tests/Utils/Barcode/OrientationTypeTest.php index 2fc18342b..b0aa5f73a 100644 --- a/tests/Utils/Barcode/OrientationTypeTest.php +++ b/tests/Utils/Barcode/OrientationTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Barcode/QRTest.php b/tests/Utils/Barcode/QRTest.php index 9e5510c4b..2a122ec86 100644 --- a/tests/Utils/Barcode/QRTest.php +++ b/tests/Utils/Barcode/QRTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/ColorUtilsTest.php b/tests/Utils/ColorUtilsTest.php index 0680e054c..f11ad4231 100644 --- a/tests/Utils/ColorUtilsTest.php +++ b/tests/Utils/ColorUtilsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Compression/LZWTest.php b/tests/Utils/Compression/LZWTest.php index a6b76a1a6..b738de386 100644 --- a/tests/Utils/Compression/LZWTest.php +++ b/tests/Utils/Compression/LZWTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/AngleTypeTest.php b/tests/Utils/Converter/AngleTypeTest.php index 2aba638e9..ab717858a 100644 --- a/tests/Utils/Converter/AngleTypeTest.php +++ b/tests/Utils/Converter/AngleTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/AreaTypeTest.php b/tests/Utils/Converter/AreaTypeTest.php index 246a649c5..3061802e6 100644 --- a/tests/Utils/Converter/AreaTypeTest.php +++ b/tests/Utils/Converter/AreaTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/CurrencyTest.php b/tests/Utils/Converter/CurrencyTest.php index 66316fc8f..f79500af8 100644 --- a/tests/Utils/Converter/CurrencyTest.php +++ b/tests/Utils/Converter/CurrencyTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/EnergyPowerTypeTest.php b/tests/Utils/Converter/EnergyPowerTypeTest.php index 4230038dd..ee07c08cf 100644 --- a/tests/Utils/Converter/EnergyPowerTypeTest.php +++ b/tests/Utils/Converter/EnergyPowerTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/FileSizeTypeTest.php b/tests/Utils/Converter/FileSizeTypeTest.php index 061ff17ce..931a22976 100644 --- a/tests/Utils/Converter/FileSizeTypeTest.php +++ b/tests/Utils/Converter/FileSizeTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/FileTest.php b/tests/Utils/Converter/FileTest.php index 28be2f592..bc3c20472 100644 --- a/tests/Utils/Converter/FileTest.php +++ b/tests/Utils/Converter/FileTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/IpTest.php b/tests/Utils/Converter/IpTest.php index cab1cd395..e5d8b3590 100644 --- a/tests/Utils/Converter/IpTest.php +++ b/tests/Utils/Converter/IpTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/LengthTypeTest.php b/tests/Utils/Converter/LengthTypeTest.php index ce90b2c8e..ecc322756 100644 --- a/tests/Utils/Converter/LengthTypeTest.php +++ b/tests/Utils/Converter/LengthTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/MeasurementTest.php b/tests/Utils/Converter/MeasurementTest.php index d5bc19729..923936f62 100644 --- a/tests/Utils/Converter/MeasurementTest.php +++ b/tests/Utils/Converter/MeasurementTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/NumericTest.php b/tests/Utils/Converter/NumericTest.php index 00fcd36e2..a7d7de721 100644 --- a/tests/Utils/Converter/NumericTest.php +++ b/tests/Utils/Converter/NumericTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/PressureTypeTest.php b/tests/Utils/Converter/PressureTypeTest.php index 5bce64667..00a9f1546 100644 --- a/tests/Utils/Converter/PressureTypeTest.php +++ b/tests/Utils/Converter/PressureTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/SpeedTypeTest.php b/tests/Utils/Converter/SpeedTypeTest.php index 3effc45d1..5163a7d51 100644 --- a/tests/Utils/Converter/SpeedTypeTest.php +++ b/tests/Utils/Converter/SpeedTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/TemperatureTypeTest.php b/tests/Utils/Converter/TemperatureTypeTest.php index a8652cd22..cf717bc75 100644 --- a/tests/Utils/Converter/TemperatureTypeTest.php +++ b/tests/Utils/Converter/TemperatureTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/TimeTypeTest.php b/tests/Utils/Converter/TimeTypeTest.php index 802e78f61..f226f6118 100644 --- a/tests/Utils/Converter/TimeTypeTest.php +++ b/tests/Utils/Converter/TimeTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/VolumeTypeTest.php b/tests/Utils/Converter/VolumeTypeTest.php index a7379be02..2cc2d4b83 100644 --- a/tests/Utils/Converter/VolumeTypeTest.php +++ b/tests/Utils/Converter/VolumeTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Converter/WeightTypeTest.php b/tests/Utils/Converter/WeightTypeTest.php index 14db6ba09..bd7600f14 100644 --- a/tests/Utils/Converter/WeightTypeTest.php +++ b/tests/Utils/Converter/WeightTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Encoding/CaesarTest.php b/tests/Utils/Encoding/CaesarTest.php index 3e1bdd89d..b9fd747bc 100644 --- a/tests/Utils/Encoding/CaesarTest.php +++ b/tests/Utils/Encoding/CaesarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Encoding/GrayTest.php b/tests/Utils/Encoding/GrayTest.php index 64a2c4e38..2547b2cd4 100644 --- a/tests/Utils/Encoding/GrayTest.php +++ b/tests/Utils/Encoding/GrayTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Encoding/Huffman/DictionaryTest.php b/tests/Utils/Encoding/Huffman/DictionaryTest.php index 565c6da58..c4d194552 100644 --- a/tests/Utils/Encoding/Huffman/DictionaryTest.php +++ b/tests/Utils/Encoding/Huffman/DictionaryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Encoding/Huffman/HuffmanTest.php b/tests/Utils/Encoding/Huffman/HuffmanTest.php index 3cd57d189..02fceb4b0 100644 --- a/tests/Utils/Encoding/Huffman/HuffmanTest.php +++ b/tests/Utils/Encoding/Huffman/HuffmanTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Encoding/XorEncodingTest.php b/tests/Utils/Encoding/XorEncodingTest.php index f3f96d83d..46dabee5a 100644 --- a/tests/Utils/Encoding/XorEncodingTest.php +++ b/tests/Utils/Encoding/XorEncodingTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Excel/ExcelTest.php b/tests/Utils/Excel/ExcelTest.php index ab97c7ac2..9e73be73e 100644 --- a/tests/Utils/Excel/ExcelTest.php +++ b/tests/Utils/Excel/ExcelTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Git/AuthorTest.php b/tests/Utils/Git/AuthorTest.php index b797c29a9..6385a9bfd 100644 --- a/tests/Utils/Git/AuthorTest.php +++ b/tests/Utils/Git/AuthorTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Git/BranchTest.php b/tests/Utils/Git/BranchTest.php index 3561160ba..fcae38b2d 100644 --- a/tests/Utils/Git/BranchTest.php +++ b/tests/Utils/Git/BranchTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Git/CommitTest.php b/tests/Utils/Git/CommitTest.php index 539b1718b..3ede8fda1 100644 --- a/tests/Utils/Git/CommitTest.php +++ b/tests/Utils/Git/CommitTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Git/GitTest.php b/tests/Utils/Git/GitTest.php index 58c3aa6dc..2a58318de 100644 --- a/tests/Utils/Git/GitTest.php +++ b/tests/Utils/Git/GitTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Git/RepositoryTest.php b/tests/Utils/Git/RepositoryTest.php index d5fedca60..c78744927 100644 --- a/tests/Utils/Git/RepositoryTest.php +++ b/tests/Utils/Git/RepositoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Git/TagTest.php b/tests/Utils/Git/TagTest.php index 3d605116e..f27dc41a0 100644 --- a/tests/Utils/Git/TagTest.php +++ b/tests/Utils/Git/TagTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/IO/Csv/CsvSettingsTest.php b/tests/Utils/IO/Csv/CsvSettingsTest.php index d8189fd5c..32db642f7 100644 --- a/tests/Utils/IO/Csv/CsvSettingsTest.php +++ b/tests/Utils/IO/Csv/CsvSettingsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/IO/Excel/ExcelDatabaseMapperTest.php b/tests/Utils/IO/Excel/ExcelDatabaseMapperTest.php index 350fe0823..0f140c7d3 100644 --- a/tests/Utils/IO/Excel/ExcelDatabaseMapperTest.php +++ b/tests/Utils/IO/Excel/ExcelDatabaseMapperTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/IO/IODatabaseMapperTest.php b/tests/Utils/IO/IODatabaseMapperTest.php index 1b1608a2a..708268f53 100644 --- a/tests/Utils/IO/IODatabaseMapperTest.php +++ b/tests/Utils/IO/IODatabaseMapperTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/IO/Json/InvalidJsonExceptionTest.php b/tests/Utils/IO/Json/InvalidJsonExceptionTest.php index ccdb0ee76..e46acff6e 100644 --- a/tests/Utils/IO/Json/InvalidJsonExceptionTest.php +++ b/tests/Utils/IO/Json/InvalidJsonExceptionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/IO/Zip/GzTest.php b/tests/Utils/IO/Zip/GzTest.php index c709a8049..6f039fc49 100644 --- a/tests/Utils/IO/Zip/GzTest.php +++ b/tests/Utils/IO/Zip/GzTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/IO/Zip/TarGzTest.php b/tests/Utils/IO/Zip/TarGzTest.php index fd53d7393..f4991a0f2 100644 --- a/tests/Utils/IO/Zip/TarGzTest.php +++ b/tests/Utils/IO/Zip/TarGzTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/IO/Zip/TarTest.php b/tests/Utils/IO/Zip/TarTest.php index b19c2411a..b85043480 100644 --- a/tests/Utils/IO/Zip/TarTest.php +++ b/tests/Utils/IO/Zip/TarTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/IO/Zip/ZipTest.php b/tests/Utils/IO/Zip/ZipTest.php index c2820fd6e..4b2feaa05 100644 --- a/tests/Utils/IO/Zip/ZipTest.php +++ b/tests/Utils/IO/Zip/ZipTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/ImageUtilsTest.php b/tests/Utils/ImageUtilsTest.php index 055f5f8a8..1356169ed 100644 --- a/tests/Utils/ImageUtilsTest.php +++ b/tests/Utils/ImageUtilsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/JsonBuilderTest.php b/tests/Utils/JsonBuilderTest.php index 09851703c..67c93897b 100644 --- a/tests/Utils/JsonBuilderTest.php +++ b/tests/Utils/JsonBuilderTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/PDF/PdfTest.php b/tests/Utils/PDF/PdfTest.php index 7203a4f27..1b8793a47 100644 --- a/tests/Utils/PDF/PdfTest.php +++ b/tests/Utils/PDF/PdfTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Parser/Markdown/MarkdownTest.php b/tests/Utils/Parser/Markdown/MarkdownTest.php index 7070a4430..703458733 100644 --- a/tests/Utils/Parser/Markdown/MarkdownTest.php +++ b/tests/Utils/Parser/Markdown/MarkdownTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/Parser/Php/ArrayParserTest.php b/tests/Utils/Parser/Php/ArrayParserTest.php index d4ede5d93..c80836453 100644 --- a/tests/Utils/Parser/Php/ArrayParserTest.php +++ b/tests/Utils/Parser/Php/ArrayParserTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/PermutationTest.php b/tests/Utils/PermutationTest.php index 839ab4bd6..0e2942cec 100644 --- a/tests/Utils/PermutationTest.php +++ b/tests/Utils/PermutationTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/AddressTest.php b/tests/Utils/RnG/AddressTest.php index b47e7c3db..76069a063 100644 --- a/tests/Utils/RnG/AddressTest.php +++ b/tests/Utils/RnG/AddressTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/ArrayRandomizeTest.php b/tests/Utils/RnG/ArrayRandomizeTest.php index 380c909bd..318c24548 100644 --- a/tests/Utils/RnG/ArrayRandomizeTest.php +++ b/tests/Utils/RnG/ArrayRandomizeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/CityTest.php b/tests/Utils/RnG/CityTest.php index c9836e530..f0427db03 100644 --- a/tests/Utils/RnG/CityTest.php +++ b/tests/Utils/RnG/CityTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/DateTimeTest.php b/tests/Utils/RnG/DateTimeTest.php index 61f2caae4..d60edcc7b 100644 --- a/tests/Utils/RnG/DateTimeTest.php +++ b/tests/Utils/RnG/DateTimeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/DistributionTypeTest.php b/tests/Utils/RnG/DistributionTypeTest.php index a310a6b7c..84edba9f1 100644 --- a/tests/Utils/RnG/DistributionTypeTest.php +++ b/tests/Utils/RnG/DistributionTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/EmailTest.php b/tests/Utils/RnG/EmailTest.php index f7ae2e257..23937511e 100644 --- a/tests/Utils/RnG/EmailTest.php +++ b/tests/Utils/RnG/EmailTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/FileTest.php b/tests/Utils/RnG/FileTest.php index fe0b536cf..aa03c37b5 100644 --- a/tests/Utils/RnG/FileTest.php +++ b/tests/Utils/RnG/FileTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/IBANTest.php b/tests/Utils/RnG/IBANTest.php index df6bdc21d..d091db622 100644 --- a/tests/Utils/RnG/IBANTest.php +++ b/tests/Utils/RnG/IBANTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/LinearCongruentialGeneratorTest.php b/tests/Utils/RnG/LinearCongruentialGeneratorTest.php index 37e3c35ae..ae3087631 100644 --- a/tests/Utils/RnG/LinearCongruentialGeneratorTest.php +++ b/tests/Utils/RnG/LinearCongruentialGeneratorTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/NameTest.php b/tests/Utils/RnG/NameTest.php index 293453ba7..a6eb76deb 100644 --- a/tests/Utils/RnG/NameTest.php +++ b/tests/Utils/RnG/NameTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/NumericTest.php b/tests/Utils/RnG/NumericTest.php index 71a25cac5..5c0c76e90 100644 --- a/tests/Utils/RnG/NumericTest.php +++ b/tests/Utils/RnG/NumericTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/PhoneTest.php b/tests/Utils/RnG/PhoneTest.php index 42b9627da..7f0f5ecb9 100644 --- a/tests/Utils/RnG/PhoneTest.php +++ b/tests/Utils/RnG/PhoneTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/PostalZipTest.php b/tests/Utils/RnG/PostalZipTest.php index 7c8bf789b..45ca35bb3 100644 --- a/tests/Utils/RnG/PostalZipTest.php +++ b/tests/Utils/RnG/PostalZipTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/StringUtilsTest.php b/tests/Utils/RnG/StringUtilsTest.php index b5c0b9f06..c66491d12 100644 --- a/tests/Utils/RnG/StringUtilsTest.php +++ b/tests/Utils/RnG/StringUtilsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/RnG/TextTest.php b/tests/Utils/RnG/TextTest.php index 922dcb439..54df5534c 100644 --- a/tests/Utils/RnG/TextTest.php +++ b/tests/Utils/RnG/TextTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/StringCompareTest.php b/tests/Utils/StringCompareTest.php index 847919ea0..20931a6b5 100644 --- a/tests/Utils/StringCompareTest.php +++ b/tests/Utils/StringCompareTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/StringUtilsTest.php b/tests/Utils/StringUtilsTest.php index 851d904c9..c4d766b70 100644 --- a/tests/Utils/StringUtilsTest.php +++ b/tests/Utils/StringUtilsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/CronJobTest.php b/tests/Utils/TaskSchedule/CronJobTest.php index fe73eaf3e..b5ff7a78c 100644 --- a/tests/Utils/TaskSchedule/CronJobTest.php +++ b/tests/Utils/TaskSchedule/CronJobTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/CronTest.php b/tests/Utils/TaskSchedule/CronTest.php index 0eec6451e..682fc91fe 100644 --- a/tests/Utils/TaskSchedule/CronTest.php +++ b/tests/Utils/TaskSchedule/CronTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/IntervalTest.php b/tests/Utils/TaskSchedule/IntervalTest.php index 2d432b7c7..7f38d844c 100644 --- a/tests/Utils/TaskSchedule/IntervalTest.php +++ b/tests/Utils/TaskSchedule/IntervalTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/ScheduleTest.php b/tests/Utils/TaskSchedule/ScheduleTest.php index bd6b03863..f97dbbc45 100644 --- a/tests/Utils/TaskSchedule/ScheduleTest.php +++ b/tests/Utils/TaskSchedule/ScheduleTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/SchedulerAbstractTest.php b/tests/Utils/TaskSchedule/SchedulerAbstractTest.php index 189e09338..852ec4005 100644 --- a/tests/Utils/TaskSchedule/SchedulerAbstractTest.php +++ b/tests/Utils/TaskSchedule/SchedulerAbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/SchedulerFactoryTest.php b/tests/Utils/TaskSchedule/SchedulerFactoryTest.php index 0a25a0a3e..0f251803d 100644 --- a/tests/Utils/TaskSchedule/SchedulerFactoryTest.php +++ b/tests/Utils/TaskSchedule/SchedulerFactoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/TaskAbstractTest.php b/tests/Utils/TaskSchedule/TaskAbstractTest.php index 3657dd5cb..bcc12ece9 100644 --- a/tests/Utils/TaskSchedule/TaskAbstractTest.php +++ b/tests/Utils/TaskSchedule/TaskAbstractTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/TaskFactoryTest.php b/tests/Utils/TaskSchedule/TaskFactoryTest.php index 313acece3..4414e2156 100644 --- a/tests/Utils/TaskSchedule/TaskFactoryTest.php +++ b/tests/Utils/TaskSchedule/TaskFactoryTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TaskSchedule/TaskSchedulerTest.php b/tests/Utils/TaskSchedule/TaskSchedulerTest.php index 9c7dda89f..604185bed 100644 --- a/tests/Utils/TaskSchedule/TaskSchedulerTest.php +++ b/tests/Utils/TaskSchedule/TaskSchedulerTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TestUtilsClass.php b/tests/Utils/TestUtilsClass.php index 744138037..a7975d39b 100644 --- a/tests/Utils/TestUtilsClass.php +++ b/tests/Utils/TestUtilsClass.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Utils/TestUtilsTest.php b/tests/Utils/TestUtilsTest.php index a328345d8..fec34a73e 100644 --- a/tests/Utils/TestUtilsTest.php +++ b/tests/Utils/TestUtilsTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Base/DateTimeTest.php b/tests/Validation/Base/DateTimeTest.php index 67cdeac12..751f1d29d 100644 --- a/tests/Validation/Base/DateTimeTest.php +++ b/tests/Validation/Base/DateTimeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Base/JsonTest.php b/tests/Validation/Base/JsonTest.php index 3fed81f1a..0ec8a5fe7 100644 --- a/tests/Validation/Base/JsonTest.php +++ b/tests/Validation/Base/JsonTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Finance/BICTest.php b/tests/Validation/Finance/BICTest.php index 8b0792125..41d10158a 100644 --- a/tests/Validation/Finance/BICTest.php +++ b/tests/Validation/Finance/BICTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Finance/CreditCardTest.php b/tests/Validation/Finance/CreditCardTest.php index e8c872710..72ccfb6cd 100644 --- a/tests/Validation/Finance/CreditCardTest.php +++ b/tests/Validation/Finance/CreditCardTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Finance/IbanEnumTest.php b/tests/Validation/Finance/IbanEnumTest.php index 054f9ab3b..446d2c0e3 100644 --- a/tests/Validation/Finance/IbanEnumTest.php +++ b/tests/Validation/Finance/IbanEnumTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Finance/IbanErrorTypeTest.php b/tests/Validation/Finance/IbanErrorTypeTest.php index 9ecb87996..3ef73f536 100644 --- a/tests/Validation/Finance/IbanErrorTypeTest.php +++ b/tests/Validation/Finance/IbanErrorTypeTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Finance/IbanTest.php b/tests/Validation/Finance/IbanTest.php index 2b6c91d5e..94f6354c7 100644 --- a/tests/Validation/Finance/IbanTest.php +++ b/tests/Validation/Finance/IbanTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Network/EmailTest.php b/tests/Validation/Network/EmailTest.php index 7ad15d90d..eead3fe03 100644 --- a/tests/Validation/Network/EmailTest.php +++ b/tests/Validation/Network/EmailTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Network/HostnameTest.php b/tests/Validation/Network/HostnameTest.php index 31a23cd72..26ccb5e52 100644 --- a/tests/Validation/Network/HostnameTest.php +++ b/tests/Validation/Network/HostnameTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/Network/IpTest.php b/tests/Validation/Network/IpTest.php index 43b4922b4..266fb556a 100644 --- a/tests/Validation/Network/IpTest.php +++ b/tests/Validation/Network/IpTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Validation/ValidatorTest.php b/tests/Validation/ValidatorTest.php index f368d391b..f22352c57 100644 --- a/tests/Validation/ValidatorTest.php +++ b/tests/Validation/ValidatorTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Version/VersionTest.php b/tests/Version/VersionTest.php index 5f4747027..60d1745a9 100644 --- a/tests/Version/VersionTest.php +++ b/tests/Version/VersionTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Views/PaginationViewTest.php b/tests/Views/PaginationViewTest.php index 9b405b588..3406b1722 100644 --- a/tests/Views/PaginationViewTest.php +++ b/tests/Views/PaginationViewTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1); diff --git a/tests/Views/ViewTest.php b/tests/Views/ViewTest.php index 5d9f71c7e..71f161940 100644 --- a/tests/Views/ViewTest.php +++ b/tests/Views/ViewTest.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 - * @link http://website.orange-management.de + * @link https://orange-management.org */ declare(strict_types=1);