Completed
Push — develop ( 6b6db5...3783b6 )
by Stuart
02:43
created
utils/typeinspector_run_dataset.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
     $varDump = ob_get_clean();
13 13
 
14 14
     $output = '```php' . PHP_EOL
15
-         . $code . PHP_EOL . PHP_EOL
16
-         . "// outputs" . PHP_EOL
17
-         . "//" . PHP_EOL;
15
+            . $code . PHP_EOL . PHP_EOL
16
+            . "// outputs" . PHP_EOL
17
+            . "//" . PHP_EOL;
18 18
 
19 19
     foreach (explode("\n", trim($varDump)) as $line) {
20 20
         $output .= "// {$line}" . PHP_EOL;
Please login to merge, or discard this patch.
src/trace-functions.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -43,13 +43,13 @@
 block discarded – undo
43 43
 
44 44
 use GanbaroDigital\MissingBits\TraceInspectors\GetCaller;
45 45
 
46
- /**
47
-  * work out who has called a piece of code
48
-  *
49
-  * @param  array $filterList
50
-  *         a list of namespaces and classes to skip over
51
-  * @return StackFrame
52
-  */
46
+    /**
47
+     * work out who has called a piece of code
48
+     *
49
+     * @param  array $filterList
50
+     *         a list of namespaces and classes to skip over
51
+     * @return StackFrame
52
+     */
53 53
 function get_caller(array $filterList = [])
54 54
 {
55 55
     // we supply the trace
Please login to merge, or discard this patch.
src/TypeInspectors/GetDuckTypes.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      *
60 60
      * @param  mixed $item
61 61
      *         the item to examine
62
-     * @return array
62
+     * @return string[]
63 63
      *         the list of type(s) that this item can be
64 64
      */
65 65
     public function __invoke($item)
Please login to merge, or discard this patch.