diff --git a/src/Autoloader.php b/src/Autoloader.php index e9885cb..052a981 100644 --- a/src/Autoloader.php +++ b/src/Autoloader.php @@ -13,6 +13,8 @@ * @since 5.0.0 */ +declare(strict_types=1); + namespace Cervo; /** diff --git a/src/Config/ArrayConfig.php b/src/Config/ArrayConfig.php index 28bc01c..c4f8929 100644 --- a/src/Config/ArrayConfig.php +++ b/src/Config/ArrayConfig.php @@ -13,6 +13,8 @@ * @since 5.0.0 */ +declare(strict_types=1); + namespace Cervo\Config; /** diff --git a/src/Config/BaseConfig.php b/src/Config/BaseConfig.php index 73f13dc..9aa8f64 100644 --- a/src/Config/BaseConfig.php +++ b/src/Config/BaseConfig.php @@ -13,6 +13,8 @@ * @since 5.0.0 */ +declare(strict_types=1); + namespace Cervo\Config; /** diff --git a/src/Config/JsonConfig.php b/src/Config/JsonConfig.php index 743a5fe..5d078cb 100644 --- a/src/Config/JsonConfig.php +++ b/src/Config/JsonConfig.php @@ -13,6 +13,8 @@ * @since 5.0.0 */ +declare(strict_types=1); + namespace Cervo\Config; /** diff --git a/src/Context.php b/src/Context.php index 13f7344..e46589c 100644 --- a/src/Context.php +++ b/src/Context.php @@ -13,6 +13,8 @@ * @since 5.0.0 */ +declare(strict_types=1); + namespace Cervo; use Cervo\Config\BaseConfig; diff --git a/src/ControllerReflection.php b/src/ControllerReflection.php index 4664772..3257de0 100644 --- a/src/ControllerReflection.php +++ b/src/ControllerReflection.php @@ -13,6 +13,8 @@ * @since 5.0.0 */ +declare(strict_types=1); + namespace Cervo; use Cervo\Exceptions\ControllerReflection\InvalidControllerException; diff --git a/src/Core.php b/src/Core.php index b3b2e89..db7fe31 100644 --- a/src/Core.php +++ b/src/Core.php @@ -13,6 +13,8 @@ * @since 5.0.0 */ +declare(strict_types=1); + namespace Cervo; use Cervo\Config\BaseConfig; diff --git a/src/Events.php b/src/Events.php index ce3a9ab..ded9311 100644 --- a/src/Events.php +++ b/src/Events.php @@ -13,6 +13,8 @@ * @since 5.0.0 */ +declare(strict_types=1); + namespace Cervo; use Cervo\Interfaces\SingletonInterface; diff --git a/src/Exceptions/Context/InvalidProviderException.php b/src/Exceptions/Context/InvalidProviderException.php index 3021392..e0665ad 100644 --- a/src/Exceptions/Context/InvalidProviderException.php +++ b/src/Exceptions/Context/InvalidProviderException.php @@ -1,7 +1,5 @@