Completed
Push — develop ( 45a861...2daf7c )
by Greg
01:55
created
app/Console/Commands/AbstractExportCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,11 +122,11 @@
 block discarded – undo
122 122
      *
123 123
      * @return App\Account
124 124
      */
125
-    final protected function fecthAccounts($filter=null)
125
+    final protected function fecthAccounts($filter = null)
126 126
     {
127 127
         $query = Account::where('status', Account::ACCOUNT_ENABLE);
128 128
 
129
-        if(is_null($filter) === false && is_array($filter)) {
129
+        if (is_null($filter) === false && is_array($filter)) {
130 130
           $query = $query->where($filter);
131 131
         }
132 132
 
Please login to merge, or discard this patch.