Completed
Push — develop ( 9b69c7...41bf30 )
by Stuart
02:05
created
utils/typeinspector_run_dataset.php 2 patches
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.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,7 @@
 block discarded – undo
42 42
 
43 43
     $successList = $failureList = [];
44 44
 
45
-    foreach ($dataSet as $dataItem)
46
-    {
45
+    foreach ($dataSet as $dataItem) {
47 46
         $failed = false;
48 47
         list($retval, $output) = typeinspector_run_dataitem($inspectorName, $dataItem);
49 48
         foreach ($failureTypes as $failureType) {
Please login to merge, or discard this patch.