1 | <?php |
||
15 | class ExcelBuilderFactory |
||
16 | { |
||
17 | /** @var ContainerInterface */ |
||
18 | protected $container; |
||
19 | |||
20 | /** |
||
21 | * @param ContainerInterface $container |
||
22 | */ |
||
23 | public function __construct(ContainerInterface $container) |
||
27 | |||
28 | /** |
||
29 | * Creates an $builder for the given arguments |
||
30 | * |
||
31 | * @param string $class The class of the $builder |
||
32 | * @param array $options The options of the $builder |
||
33 | * |
||
34 | * @return ExcelBuilderInterface |
||
35 | */ |
||
36 | public function create($class, array $options = array()) |
||
46 | } |
||
47 |