Passed
Pull Request — master (#120)
by
unknown
02:28
created
src/ModelFinder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         });
45 45
 
46 46
         if(!count($whitelistModels)) {
47
-          return $collection->diff($ignoreModels)->sort();
47
+            return $collection->diff($ignoreModels)->sort();
48 48
         }
49 49
 
50 50
         return $collection->filter(function (string $className) use ($whitelistModels) {
Please login to merge, or discard this patch.
src/GraphBuilder.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,8 +78,8 @@
 block discarded – undo
78 78
                     
79 79
                     if ($relatedModel) {
80 80
                         $output .= "- **" . $relation->getType() . "** `" . $relation->getName() . "` to " . 
81
-                                  $relatedModel->getLabel() . " (Local Key: `" . $relation->getLocalKey() . 
82
-                                  "`, Foreign Key: `" . $relation->getForeignKey() . "`)\n";
81
+                                    $relatedModel->getLabel() . " (Local Key: `" . $relation->getLocalKey() . 
82
+                                    "`, Foreign Key: `" . $relation->getForeignKey() . "`)\n";
83 83
                     }
84 84
                 }
85 85
                 
Please login to merge, or discard this patch.