Contao\CoreBundle\Cache\ContaoCacheWarmer::isCompleteInstallation PHP Method

isCompleteInstallation() private method

Checks if the installation is complete.
private isCompleteInstallation ( ) : boolean
return boolean
    private function isCompleteInstallation()
    {
        try {
            $this->connection->query('SELECT COUNT(*) FROM tl_page');
        } catch (\Exception $e) {
            return false;
        }
        return true;
    }