| 1 | <?php |
||
| 16 | final class StackBuilder implements StackBuilderInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var StackFactoryInterface |
||
| 20 | */ |
||
| 21 | private $stackFactory; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var FilterFactoryCollection |
||
| 25 | */ |
||
| 26 | private $filterFactoryCollection; |
||
| 27 | |||
| 28 | public function __construct(StackFactoryInterface $stackFactory, FilterFactoryCollection $filterFactoryCollection) |
||
| 33 | |||
| 34 | public function build(string $stackName, array $stackData): StackInterface |
||
| 51 | } |
||
| 52 |