@@ -53,9 +53,9 @@ discard block |
||
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 |
||
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' => [ |
@@ -102,14 +102,14 @@ |
||
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} |