Completed
Push — master ( 6cb927...1b49b3 )
by Ariel
06:13
created
src/Calendar/Calendar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     public function __call($name, $arguments)
25 25
     {
26
-        if(method_exists($this->strategy, $name))
26
+        if (method_exists($this->strategy, $name))
27 27
         {
28 28
             return $this->strategy->$name($arguments);
29 29
         }
Please login to merge, or discard this patch.
src/Concierge.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,10 +44,10 @@
 block discarded – undo
44 44
         $comments = $request['comments'];
45 45
 
46 46
         $vacancies = $this->calendar()
47
-                          ->forService($service->id)
48
-                          ->forDate($request['date'])
49
-                          ->atTime($request['time'])
50
-                          ->find();
47
+                            ->forService($service->id)
48
+                            ->forDate($request['date'])
49
+                            ->atTime($request['time'])
50
+                            ->find();
51 51
 
52 52
         if ($vacancies->count() == 0) {
53 53
             // Log failure feedback message
Please login to merge, or discard this patch.