Completed
Push — master ( 916455...a9a34e )
by
unknown
01:23
created
src/Console/StatusCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             $rowsTotal = $model->count();
69 69
             $recordsDifference = $rowsTotal - $rowsIndexed;
70 70
 
71
-            if($recordsDifference == 0) {
71
+            if ($recordsDifference == 0) {
72 72
                 $recordsDifference = '<fg=green>Synchronized</>';
73 73
             } else {
74 74
                 $recordsDifference = "<fg=red>$recordsDifference</>";
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     private function getSearchableModels()
122 122
     {
123
-        $searchableModels = (array)$this->argument('model');
123
+        $searchableModels = (array) $this->argument('model');
124 124
         if (empty($searchableModels)) {
125 125
             $searchableModels = $this->getSearchableModelsFromClasses();
126 126
         }
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      */
135 135
     private function isSearchableModel($trait)
136 136
     {
137
-        return function ($className) use ($trait) {
137
+        return function($className) use ($trait) {
138 138
             $traits = class_uses($className);
139 139
 
140 140
             return isset($traits[$trait]);
Please login to merge, or discard this patch.