Completed
Push — master ( f9f23c...8f70e2 )
by Alex
23:34 queued 28s
created
Tests/Controller/AbstractGeneratorControllerTest.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
     use RequestTestTrait;
28 28
 
29 29
     /**
30
-     * @param MockObject|StepResolverInterface    $resolver
31
-     * @param MockObject|TranslatorInterface      $translator
32
-     * @param MockObject|RouterInterface          $router
33
-     * @param MockObject|ActionsRegistryInterface $actionsRegistry
30
+     * @param StepResolverInterface    $resolver
31
+     * @param TranslatorInterface      $translator
32
+     * @param RouterInterface          $router
33
+     * @param ActionsRegistryInterface $actionsRegistry
34 34
      *
35 35
      * @return GeneratorController
36 36
      */
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.