Clockwork\Support\Laravel\ClockworkSupport::isEnabled PHP Метод

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

public isEnabled ( )
    public function isEnabled()
    {
        $is_enabled = $this->getConfig('enable', null);
        if ($is_enabled === null) {
            $is_enabled = $this->app['config']->get('app.debug');
        }
        return $is_enabled;
    }