Completed
Push — develop ( 8f230d...a92548 )
by Greg
02:10
created
app/Account.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,12 +13,12 @@
 block discarded – undo
13 13
     const ACCOUNT_ENABLE = 1;
14 14
 
15 15
     const ACCOUNT_STATUS = [
16
-        0 => [  'text' => 'accounts.disabled',
16
+        0 => ['text' => 'accounts.disabled',
17 17
                 'icon' => 'fa-ban',
18
-                'unicon' => '' ],
19
-        1 => [  'text' => 'accounts.enabled',
18
+                'unicon' => ''],
19
+        1 => ['text' => 'accounts.enabled',
20 20
                 'icon' => 'fa-globe',
21
-                'unicon' => '' ]
21
+                'unicon' => '']
22 22
     ];
23 23
 
24 24
     const SEARCH_CRITERIA = [
Please login to merge, or discard this patch.
app/Console/Commands/ExportCategories.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
              return;
65 65
          }
66 66
 
67
-         foreach ($categories as $category){
67
+         foreach ($categories as $category) {
68 68
              $name = static::stringNormalise($category->name);
69 69
              $filename = "{$this->exportFolder}/{$name}{$this->exportFileExt}";
70 70
              $accounts = Account::where('status', Account::ACCOUNT_ENABLE)
Please login to merge, or discard this patch.
app/Console/Commands/ExportGroups.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
              return;
65 65
          }
66 66
 
67
-         foreach ($groups as $group){
67
+         foreach ($groups as $group) {
68 68
              $name = static::stringNormalise($group->name);
69 69
              $filename = "{$this->exportFolder}/{$name}{$this->exportFileExt}";
70 70
              $accounts = Account::where('status', Account::ACCOUNT_ENABLE)
Please login to merge, or discard this patch.