1 | <?php |
||
17 | class NotFactory implements Factory |
||
18 | { |
||
19 | /** |
||
20 | * @var Registry |
||
21 | */ |
||
22 | private $registry; |
||
23 | |||
24 | /** |
||
25 | * @param Registry $registry |
||
26 | */ |
||
27 | 6 | public function __construct(Registry $registry) |
|
31 | |||
32 | /** |
||
33 | * {inheritdoc} |
||
34 | */ |
||
35 | 2 | public function create(Specification $spec, QueryBuilder $qb) |
|
47 | } |
||
48 |