Passed
Push — master ( de7dac...398850 )
by Zing
16:53 queued 01:16
created
ecs.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@  discard block
 block discarded – undo
6 6
 use Symplify\EasyCodingStandard\Configuration\Option;
7 7
 use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
8 8
 
9
-return static function (ContainerConfigurator $containerConfigurator): void {
10
-    $containerConfigurator->import(__DIR__ . '/vendor/zing/coding-standard/config/config.php');
11
-    $parameters = $containerConfigurator->parameters();
9
+return static function(ContainerConfigurator $containerConfigurator): void {
10
+    $containerConfigurator->import(__DIR__.'/vendor/zing/coding-standard/config/config.php');
11
+    $parameters=$containerConfigurator->parameters();
12 12
     $parameters->set(
13 13
         Option::SETS,
14 14
         [
@@ -23,10 +23,10 @@  discard block
 block discarded – undo
23 23
     $parameters->set(
24 24
         Option::PATHS,
25 25
         [
26
-            __DIR__ . '/src',
27
-            __DIR__ . '/tests',
28
-            __DIR__ . '/ecs.php',
29
-            __DIR__ . '/rector.php',
26
+            __DIR__.'/src',
27
+            __DIR__.'/tests',
28
+            __DIR__.'/ecs.php',
29
+            __DIR__.'/rector.php',
30 30
         ]
31 31
     );
32 32
 };
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
 use Rector\SOLID\Rector\ClassMethod\ChangeReadOnlyVariableWithDefaultValueToConstantRector;
10 10
 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
11 11
 
12
-return static function (ContainerConfigurator $containerConfigurator): void {
13
-    $parameters = $containerConfigurator->parameters();
12
+return static function(ContainerConfigurator $containerConfigurator): void {
13
+    $parameters=$containerConfigurator->parameters();
14 14
     $parameters->set(
15 15
         Option::SETS,
16 16
         [
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
     $parameters->set(
39 39
         Option::PATHS,
40 40
         [
41
-            __DIR__ . '/src',
42
-            __DIR__ . '/tests',
43
-            __DIR__ . '/ecs.php',
44
-            __DIR__ . '/rector.php',
41
+            __DIR__.'/src',
42
+            __DIR__.'/tests',
43
+            __DIR__.'/ecs.php',
44
+            __DIR__.'/rector.php',
45 45
         ]
46 46
     );
47 47
 };
Please login to merge, or discard this patch.