PhpBench\Environment\Provider\Git::getGitPath PHP Method

getGitPath() private method

private getGitPath ( )
    private function getGitPath()
    {
        if (null !== $this->exePath) {
            return $this->exePath;
        }
        $this->exePath = $this->exeFinder->find($this->exeName, false);
        return $this->exePath;
    }