We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9df900 commit 67f8de3Copy full SHA for 67f8de3
1 file changed
.php-cs-fixer.dist.php
@@ -1,5 +1,7 @@
1
<?php
2
3
+declare(strict_types=1);
4
+
5
use CodeIgniter\CodingStandard\CodeIgniter4;
6
use Nexus\CsConfig\Factory;
7
use PhpCsFixer\Finder;
@@ -13,7 +15,10 @@
13
15
->exclude('build')
14
16
->append([__FILE__]);
17
-$overrides = [];
18
+$overrides = [
19
+ 'declare_strict_types' => true,
20
+ 'void_return' => true,
21
+];
22
23
$options = [
24
'finder' => $finder,
0 commit comments