diff --git a/.php_cs b/.php_cs index 25586d616..c1651276c 100644 --- a/.php_cs +++ b/.php_cs @@ -23,6 +23,7 @@ return PhpCsFixer\Config::create() 'no_unused_imports' => true, 'no_whitespace_in_blank_line' => true, 'method_argument_space' => false, + 'declare_strict_types' => true, ]) ->setFinder($finder) ; diff --git a/sources/AppBundle/AppBundle.php b/sources/AppBundle/AppBundle.php index 05123b678..931ea9720 100644 --- a/sources/AppBundle/AppBundle.php +++ b/sources/AppBundle/AppBundle.php @@ -1,5 +1,7 @@