Completed
Push — develop ( cc98d7...6a1d06 )
by Stuart
05:02
created
src/string-functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
         // in case a named parameter appears multiple times in the format string
100 100
         if ($paramKeys[$paramName] === -1) {
101 101
             // no - it needs a home
102
-            $messageData[$nextData] =& $args[$paramName];
102
+            $messageData[$nextData] = & $args[$paramName];
103 103
             $paramKeys[$paramName] = $nextData;
104 104
             $nextData++;
105 105
         }
Please login to merge, or discard this patch.
src/TypeInspectors/GetPrintableType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
         }
128 128
 
129 129
         // $data contains an <object, method> pair
130
-        return "callable<" . get_class($data[0]). "::" . $data[1] . ">";
130
+        return "callable<" . get_class($data[0]) . "::" . $data[1] . ">";
131 131
     }
132 132
 
133 133
     /**
Please login to merge, or discard this patch.
src/type-functions.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,6 @@
 block discarded – undo
60 60
 /**
61 61
  * what PHP type is $data?
62 62
  *
63
- * @param  mixed $data
64
- *         the data to examine
65 63
  * @param  int $flags
66 64
  *         options to change what we put in the return value
67 65
  * @return string
Please login to merge, or discard this patch.