pharext\Task\PharBuild::__construct PHP Method

__construct() public method

public __construct ( pharext\SourceDir $source = null, string $stub, array $meta = null, boolean $readonly = true )
$source pharext\SourceDir extension source directory
$stub string path to phar stub
$meta array phar meta data
$readonly boolean whether the stub has -dphar.readonly=1 set
    public function __construct(SourceDir $source = null, $stub, array $meta = null, $readonly = true)
    {
        $this->source = $source;
        $this->stub = $stub;
        $this->meta = $meta;
        $this->readonly = $readonly;
    }