Skip to content

Commit

Permalink
Fix syntax error for PHP 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotchance committed Nov 9, 2014
1 parent 7f0b25f commit e8e65b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Concise/Services/TimeFormatter.php
Expand Up @@ -24,7 +24,7 @@ public function format($seconds)
return '0 seconds';
}

$r = [];
$r = array();
$this->part($r, $seconds, 3600, 'hour');
$this->part($r, $seconds, 60, 'minute');
$this->part($r, $seconds, 1, 'second');
Expand Down

0 comments on commit e8e65b1

Please sign in to comment.