We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf1975 commit 282cc02Copy full SHA for 282cc02
ecs.php
@@ -0,0 +1,22 @@
1
+<?php
2
+
3
+/**
4
+ * Rules for Nette Coding Standard
5
+ * https://github.com/nette/coding-standard
6
+ */
7
8
+declare(strict_types=1);
9
10
11
+return function (Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator $containerConfigurator): void {
12
+ $containerConfigurator->import(PRESET_DIR . '/php71.php');
13
14
+ $parameters = $containerConfigurator->parameters();
15
16
+ $parameters->set('skip', [
17
+ // Resource typehint
18
+ PhpCsFixer\Fixer\Phpdoc\PhpdocTypesFixer::class => [
19
+ 'src/Security/Permission.php',
20
+ ],
21
+ ]);
22
+};
0 commit comments