Imbo\Http\Response\Formatter\Formatter::__construct PHP Метод

__construct() публичный Метод

Class constructor
public __construct ( Imbo\Helpers\DateFormatter $formatter = null )
$formatter Imbo\Helpers\DateFormatter An instance of the date formatter helper
    public function __construct(DateFormatter $formatter = null)
    {
        if ($formatter === null) {
            $formatter = new DateFormatter();
        }
        $this->dateFormatter = $formatter;
    }