Completed
Push — master ( 9f22d1...f046fa )
by Iman
06:44
created
src/Situations/EventSituations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
 
17 17
     public function whenYouReachCheckPoint($name)
18 18
     {
19
-        $this->whenEventHappens('heyman_checkpoint_'.$name);
19
+        $this->whenEventHappens('heyman_checkpoint_' . $name);
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
src/MakeSure/HttpClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 
98 98
     public function whenYouReachCheckPoint($name)
99 99
     {
100
-        return $this->whenEventHappens('heyman_checkpoint_'.$name);
100
+        return $this->whenEventHappens('heyman_checkpoint_' . $name);
101 101
     }
102 102
 
103 103
     public function __destruct()
Please login to merge, or discard this patch.
src/HeyMan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,6 +29,6 @@
 block discarded – undo
29 29
 
30 30
     public function checkPoint($pointName)
31 31
     {
32
-        event('heyman_checkpoint_'.$pointName);
32
+        event('heyman_checkpoint_' . $pointName);
33 33
     }
34 34
 }
Please login to merge, or discard this patch.