Blackfire\Player\Scenario::__construct PHP Метод

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

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;
    }