pharext\Task\Phpize::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $cwd, string $prefix = null, string $common_name = "php" )
$cwd string working directory
$prefix string install prefix, e.g. /usr/local
$common_name string PHP program common name, e.g. php5
    public function __construct($cwd, $prefix = null, $common_name = "php")
    {
        $this->cwd = $cwd;
        $cmd = $common_name . "ize";
        if (isset($prefix)) {
            $cmd = $prefix . "/bin/" . $cmd;
        }
        $this->phpize = $cmd;
    }