GrumPHP\Locator\ExternalCommand::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( string $binDir, ExecutableFinder $executableFinder )
$binDir string
$executableFinder Symfony\Component\Process\ExecutableFinder
    public function __construct($binDir, ExecutableFinder $executableFinder)
    {
        $this->binDir = rtrim($binDir, '/\\');
        $this->executableFinder = $executableFinder;
    }
ExternalCommand