alexia\mar\tests::getPHPBinaryPath PHP Method

getPHPBinaryPath() public method

Return the PHP binary location.
public getPHPBinaryPath ( ) : string
return string PHP binary location.
    public function getPHPBinaryPath()
    {
        $binary = 'php';
        if ($this->php !== null) {
            $binary = $this->php;
        }
        return $binary;
    }