Passed
Push — master ( 7df7a9...eea192 )
by Alain
02:24
created
src/FunctionInvokerTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     public function invokeFunction($function, array $args = array())
41 41
     {
42 42
 
43
-        if (! $function || ! is_string($function) || '' === $function) {
43
+        if ( ! $function || ! is_string($function) || '' === $function) {
44 44
             throw new InvalidArgumentException(_('Missing valid function to invoke.'));
45 45
         }
46 46
 
Please login to merge, or discard this patch.
src/MethodInvokerTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     public function invokeMethod($object, $method, array $args = [])
42 42
     {
43 43
 
44
-        if (! $method || ! is_string($method) || '' === $method) {
44
+        if ( ! $method || ! is_string($method) || '' === $method) {
45 45
             throw new InvalidArgumentException(_('Missing valid method to invoke.'));
46 46
         }
47 47
 
Please login to merge, or discard this patch.