Passed
Push — master ( 4f7625...7e107f )
by Akpé Aurelle Emmanuel Moïse
02:19
created
src/Shortcut.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         
24 24
         public static function SetShortcutForAll($bool)
25 25
         {
26
-            self::$SHORTCUT_FOR_ALL=(bool)$bool;
26
+            self::$SHORTCUT_FOR_ALL=(bool) $bool;
27 27
         }
28 28
         public static function create($classname, $name=self::CAN_NEVER_EVER_CHOOSE_THIS_AS_FUNCTION_NAME)
29 29
         {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         
89 89
         private static function getParameterDeclaration(\reflectionParameter $param, &$tmp, &$count, $method)
90 90
         {
91
-            $tmp=$param->isPassedByReference()?'&$'.$param->getName():'$'.$param->getName();
91
+            $tmp=$param->isPassedByReference() ? '&$'.$param->getName() : '$'.$param->getName();
92 92
             if ($param->isOptional()) {
93 93
                 $count++;
94 94
                 if ($method->isInternal()) {
Please login to merge, or discard this patch.