1 | <?php |
||
7 | abstract class AbstractDiscoverStrategy implements FormatDiscoverStrategyInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var FormatFactoryInterface[] |
||
11 | */ |
||
12 | protected $formatFactories; |
||
13 | |||
14 | 33 | public function __construct(array $formatFactories = array()) |
|
18 | |||
19 | 2 | public function addFormatFactory($id, FormatFactoryInterface $factory) |
|
23 | } |
||
24 |