HippoPHP\Hippo\CheckRepository::buildIfNecessary PHP Метод

buildIfNecessary() приватный Метод

If the checks haven't been ran, then we need to run them.
private buildIfNecessary ( )
    private function buildIfNecessary()
    {
        if (!$this->hasBeenBuilt) {
            $this->build();
            $this->hasBeenBuilt = true;
        }
    }