Completed
Push — master ( f9f23c...8f70e2 )
by Alex
23:34 queued 28s
created
Tests/DependencyInjection/StepsPassTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
 
54 54
     public function provideNonWorkingConfigurations()
55 55
     {
56
-        $dir = __DIR__ . '/../Fixtures/App/compiler_pass_test_non_working/';
56
+        $dir = __DIR__.'/../Fixtures/App/compiler_pass_test_non_working/';
57 57
 
58
-        $configFiles = glob($dir . 'compiler_config_*.yaml');
58
+        $configFiles = glob($dir.'compiler_config_*.yaml');
59 59
 
60 60
         sort($configFiles);
61 61
 
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 
169 169
         $inlineStub1 = new class extends ConcreteAbstractActionStub
170 170
         {};
171
-        $inlineStub2 = new class extends ConcreteAbstractActionStub{};
171
+        $inlineStub2 = new class extends ConcreteAbstractActionStub {};
172 172
 
173 173
         $container->setParameter('pierstoval_character_manager.managers', [
174 174
             'main' => [
Please login to merge, or discard this patch.
Action/AbstractStepAction.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -102,14 +102,14 @@
 block discarded – undo
102 102
         $this->translator = $translator;
103 103
     }
104 104
 
105
-     public function getStep(): StepInterface
106
-     {
107
-         if (!$this->step) {
108
-             throw new \RuntimeException('Step is not defined in current step action. Did you run the "configure()" method?');
109
-         }
110
-
111
-         return $this->step;
112
-     }
105
+        public function getStep(): StepInterface
106
+        {
107
+            if (!$this->step) {
108
+                throw new \RuntimeException('Step is not defined in current step action. Did you run the "configure()" method?');
109
+            }
110
+
111
+            return $this->step;
112
+        }
113 113
 
114 114
     /**
115 115
      * {@inheritdoc}
Please login to merge, or discard this patch.