Alex\BehatLauncher\Behat\Project::__construct PHP Method

__construct() public method

Creates a new Behat Launcher project, to execute runs on it.
public __construct ( string $name = null, string $path = null, array $properties = [] )
$name string project name
$path string path to the Behat project
$properties array an array of ProjectProperty objects
    public function __construct($name = null, $path = null, array $properties = array())
    {
        $this->name = $name;
        $this->path = $path;
        foreach ($properties as $property) {
            $this->addProperty($property);
        }
    }