Completed
Push — v1.ns ( 9a41ce...96d67d )
by Timo
03:43
created
src/Service/SplittingServiceActivator.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     public function callService(\PEIP\INF\Message\Message $message){
37 37
         if(is_callable($this->serviceCallable)){
38 38
             $res = call_user_func_array($this->serviceCallable, $message->getContent());
39
-        }elseif(is_object($this->serviceCallable) && method_exists($this->serviceCallable, 'handle')){
39
+        } elseif(is_object($this->serviceCallable) && method_exists($this->serviceCallable, 'handle')){
40 40
             $res = call_user_func_array(array($this->serviceCallable, 'handle'), $message->getContent());               
41 41
         }
42 42
         return $res;
Please login to merge, or discard this patch.