Skip to content

Commit

Permalink
Apply fixes from StyleCI (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
XavRsl authored May 24, 2019
1 parent 256f0d8 commit ba8676b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Support/DateHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static function dateFromDateParts(array $parts)
return '';
}

list($year, $month, $day) = array_merge($parts, [1, 1, 1]);
[$year, $month, $day] = array_merge($parts, [1, 1, 1]);

return static::formatForParts(
Carbon::createFromDate($year, $month, $day),
Expand Down

0 comments on commit ba8676b

Please sign in to comment.