Skip to content

Commit

Permalink
Merge pull request jenssegers#197 from jenssegers/analysis-qx0Ng0
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
jenssegers committed Mar 6, 2016
2 parents ae89c4f + 2efc150 commit 52699be
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@

$translations = array();

foreach ($months as $month)
{
foreach ($months as $month) {
$date = new Date($month);
$translation = strftime('%B', $date->getTimestamp());
$translations[$month] = $translation;
Expand All @@ -44,8 +43,7 @@

echo "\n";

foreach ($days as $day)
{
foreach ($days as $day) {
$date = new Date($day);
$translation = strftime('%A', $date->getTimestamp());
$translations[$day] = $translation;
Expand Down

0 comments on commit 52699be

Please sign in to comment.