phpmock\functions\FixedDateFunction::getCallable PHP Метод

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

Returns the mocked date() function.
public getCallable ( ) : callable
Результат callable The callable for this object.
    public function getCallable()
    {
        return function ($format, $timestamp = null) {
            if (is_null($timestamp)) {
                $timestamp = $this->timestamp;
            }
            return \date($format, $timestamp);
        };
    }