for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Boduch\Grid\Decorators;
use Carbon\Carbon;
class DateTimeLocalized extends DateTime
{
/**
* @param $dateTime
* @return string
*/
protected function formatDateTime($dateTime)
return Carbon::parse($dateTime)->formatLocalized($this->format);
}