REBELinBLUE\Deployer\Presenters\ProjectPresenter::presentAppStatus PHP Method

presentAppStatus() public method

Show the application status.
public presentAppStatus ( ) : string
return string
    public function presentAppStatus()
    {
        $status = $this->applicationCheckUrlStatus();
        if ($status['length'] === 0) {
            return Lang::get('app.not_applicable');
        }
        return $status['length'] - $status['missed'] . ' / ' . $status['length'];
    }