Skip to content

Instantly share code, notes, and snippets.

@dorianneto
Last active January 19, 2018 20:49
Show Gist options
  • Save dorianneto/363bebbb8352d857bc11a810126d7929 to your computer and use it in GitHub Desktop.
Save dorianneto/363bebbb8352d857bc11a810126d7929 to your computer and use it in GitHub Desktop.
Post: Torne-se um ninja das funções com Early Return
<?php
public static function formatDate($date)
{
$format = DateTime::ATOM;
if ($date instanceof DateTime) {
return $date->format($format);
}
if (is_numeric($date)) {
return date($format, $date);
}
return (string) $date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment