Completed
Push — develop ( b810b7...744efc )
by Greg
14s queued 11s
created
app/Console/Commands/Export.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
     protected $description = 'Export accounts, groups and categories at once';
24 24
 
25 25
     protected $commands = [
26
-      'export:accounts',
27
-      'export:groups',
28
-      'export:categories'
26
+        'export:accounts',
27
+        'export:groups',
28
+        'export:categories'
29 29
     ];
30 30
 
31 31
     /**
@@ -46,10 +46,10 @@  discard block
 block discarded – undo
46 46
     public function handle()
47 47
     {
48 48
         foreach ($this->commands as $cmd) {
49
-          $this->call($cmd, [
49
+            $this->call($cmd, [
50 50
             '--ci' => $this->option('ci'),
51 51
             'output' => $this->argument('output'),
52
-          ]);
52
+            ]);
53 53
         }
54 54
     }
55 55
 }
Please login to merge, or discard this patch.
app/Console/Commands/AbstractExportCommand.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $count = count($accounts);
98 98
 
99 99
         if ($flagCI === false) {
100
-          $bar = $this->output->createProgressBar($count);
100
+            $bar = $this->output->createProgressBar($count);
101 101
         }
102 102
 
103 103
         foreach ($accounts as $account) {
@@ -105,13 +105,13 @@  discard block
 block discarded – undo
105 105
             $record .= $password ? ":{$account->netpass}" : '';
106 106
             $this->storage->prepend($filename, $record);
107 107
             if (isset($bar)) {
108
-              $bar->advance();
108
+                $bar->advance();
109 109
             }
110 110
         }
111 111
 
112 112
         if (isset($bar)) {
113
-          $bar->finish();
114
-          $this->info("\n");
113
+            $bar->finish();
114
+            $this->info("\n");
115 115
         }
116 116
 
117 117
         return $count;
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         $query = Account::where('status', Account::ACCOUNT_ENABLE);
130 130
 
131 131
         if(is_null($filter) === false && is_array($filter)) {
132
-          $query = $query->where($filter);
132
+            $query = $query->where($filter);
133 133
         }
134 134
 
135 135
         return $query->orderBy('netlogin', 'desc')->get();
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
                     if ($this->confirm("Overwrite existing '$target' ?")) {
152 152
                         $fs->delete($target);
153 153
                     } else {
154
-                      throw new \Exception();
154
+                        throw new \Exception();
155 155
                     }
156 156
                 }
157 157
             }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
             $fs->rename($source, $target);
160 160
 
161 161
         } else {
162
-          $target = $source;
162
+            $target = $source;
163 163
         }
164 164
 
165 165
         return $target;
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
      *
125 125
      * @return App\Account
126 126
      */
127
-    final protected function fecthAccounts($filter=null)
127
+    final protected function fecthAccounts($filter = null)
128 128
     {
129 129
         $query = Account::where('status', Account::ACCOUNT_ENABLE);
130 130
 
131
-        if(is_null($filter) === false && is_array($filter)) {
131
+        if (is_null($filter) === false && is_array($filter)) {
132 132
           $query = $query->where($filter);
133 133
         }
134 134
 
@@ -139,12 +139,12 @@  discard block
 block discarded – undo
139 139
     {
140 140
         $source = $this->storage->path($filename);
141 141
 
142
-        if($this->argument('output')) {
143
-            $target = $this->argument('output') . '/' . $filename;
142
+        if ($this->argument('output')) {
143
+            $target = $this->argument('output').'/'.$filename;
144 144
 
145 145
             $fs = new Filesystem(new Local('/'));
146 146
 
147
-            if ($fs->has($target) ) {
147
+            if ($fs->has($target)) {
148 148
                 if ($this->option('ci')) {
149 149
                     $fs->delete($target);
150 150
                 } else {
Please login to merge, or discard this patch.
app/Console/Commands/ExportAccounts.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
         try {
57 57
             $url = $this->exportToLocation($filename);
58
-        } catch(\Exception $e) {
58
+        } catch (\Exception $e) {
59 59
             $this->error('Export cancelled by user!');
60 60
             return;
61 61
         }
Please login to merge, or discard this patch.