Blackfire\Player\Scenario::__construct PHP Method

__construct() public method

public __construct ( $title = null, array $values = [] )
$values array
    public function __construct($title = null, array $values = [])
    {
        $this->root = new Step();
        $this->title = null === $title ? 'Untitled Scenario' : $title;
        $this->values = $values;
    }