Completed
Push — master ( f9f23c...8f70e2 )
by Alex
23:34 queued 28s
created
Resolver/StepResolver.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $managerName = $this->resolveManagerName($managerName);
40 40
 
41 41
         if (!isset($this->steps[$managerName][$stepName])) {
42
-            throw new StepNotFoundException("Step $stepName does not exist in manager $managerName.");
42
+            throw new StepNotFoundException("step $stepName does not exist in manager $managerName.");
43 43
         }
44 44
 
45 45
         return $this->steps[$managerName][$stepName];
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         }
107 107
 
108 108
         if (!isset($this->managersConfiguration[$managerName])) {
109
-            throw new \InvalidArgumentException("Manager $managerName does not exist, or is not initialized yet.");
109
+            throw new \InvalidArgumentException("manager $managerName does not exist, or is not initialized yet.");
110 110
         }
111 111
 
112 112
         return $managerName;
Please login to merge, or discard this patch.