Add space between for and ‘(‘

[MAILPOET-1791]
This commit is contained in:
Ján Mikláš
2019-02-13 12:48:07 +01:00
committed by M. Shull
parent b2e5952896
commit fba2914392
20 changed files with 44 additions and 44 deletions

View File

@@ -67,7 +67,7 @@ class DateTime {
$formatted_time = $start_time;
$timestamp = strtotime($formatted_time);
for($step = 0; $step < $total_steps; $step += 1) {
for ($step = 0; $step < $total_steps; $step += 1) {
$formatted_time = $this->formatTime($timestamp, self::DEFAULT_TIME_FORMAT);
$label_time = $this->formatTime($timestamp);
$steps[$formatted_time] = $label_time;