| 1 | <?php |
||
| 15 | class NotFactory implements Factory |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var Registry |
||
| 19 | */ |
||
| 20 | private $registry; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Registry $registry |
||
| 24 | */ |
||
| 25 | public function __construct(Registry $registry) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {inheritdoc} |
||
| 32 | */ |
||
| 33 | public function create(Specification $spec, QueryBuilder $qb) |
||
| 45 | } |
||
| 46 |