Completed
Push — master ( 1477f1...cc4abd )
by claudio
06:12 queued 01:19
created
app/Console/Commands/MeetingsList.php 1 patch
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,10 +39,11 @@
 block discarded – undo
39 39
     {
40 40
         //
41 41
         $companyId = $this->argument('companyId');
42
-        if (is_numeric($companyId))
43
-            print_r(Company::with(self::withFilter())->findOrFail($companyId)->toArray());
44
-        else
45
-            print_r(Company::with(self::withFilter())->select('id')->get()->toArray());
42
+        if (is_numeric($companyId)) {
43
+                    print_r(Company::with(self::withFilter())->findOrFail($companyId)->toArray());
44
+        } else {
45
+                    print_r(Company::with(self::withFilter())->select('id')->get()->toArray());
46
+        }
46 47
     }
47 48
 
48 49
     private static function withFilter()
Please login to merge, or discard this patch.