| 1 | <?php |
||
| 8 | class FeatureStarter |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Feature[] |
||
| 12 | */ |
||
| 13 | private $features; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param Feature[] $features |
||
| 17 | */ |
||
| 18 | 2 | public function __construct(array $features) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @param BuilderInterface $builder |
||
| 25 | * @param BusContextInterface $busContext |
||
| 26 | */ |
||
| 27 | 1 | public function startFeatures(BuilderInterface $builder, BusContextInterface $busContext) |
|
| 35 | } |
||
| 36 |