1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Models/DatetimeFormat.php

25 lines
358 B
PHP
Raw Normal View History

2019-09-22 11:30:03 +02:00
<?php
namespace App\Models;
/**
* Class DatetimeFormat.
*/
class DatetimeFormat extends StaticModel
{
/**
* @var bool
*/
public $timestamps = false;
/**
* @return bool|string
*/
public function __toString()
{
$date = mktime(0, 0, 0, 12, 31, date('Y'));
return date($this->format, $date);
}
}