Fix indentation issues

This commit is contained in:
Tautvidas Sipavičius
2016-06-30 13:29:23 +03:00
parent 8a9d14319b
commit b7d8d482fe
14 changed files with 97 additions and 76 deletions

View File

@ -293,11 +293,10 @@ class Import {
);
}
}
$query = Subscriber::selectMany(
array(
'id',
'email'
));
$query = Subscriber::selectMany(array(
'id',
'email'
));
$query = ($action === 'update') ?
$query->where('updated_at', $this->updated_at) :
$query->where('created_at', $this->created_at);
@ -373,4 +372,4 @@ class Import {
$profiler_end = microtime(true);
return ($profiler_end - $this->profiler_start) / 60;
}
}
}