dynamic branding options (#1205)

This commit is contained in:
Kevin Papst
2019-10-30 14:22:34 +01:00
committed by GitHub
parent 48aefb1862
commit f4fcfeba9d
11 changed files with 135 additions and 7 deletions

View File

@@ -33,6 +33,10 @@ final class Configuration
* @var string
*/
private $type;
/**
* @var array
*/
private $options = [];
/**
* @var bool
*/
@@ -155,4 +159,16 @@ final class Configuration
return $this;
}
public function getOptions(): array
{
return $this->options;
}
public function setOptions(array $options): Configuration
{
$this->options = $options;
return $this;
}
}