HippoPHP\Hippo\CheckRepository::buildIfNecessary PHP Method

buildIfNecessary() private method

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;
        }
    }