1 | <?php |
||
12 | final class CollectionPersister |
||
13 | { |
||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | private $association; |
||
18 | /** |
||
19 | * @var ApiMetadata |
||
20 | */ |
||
21 | private $metadata; |
||
22 | /** |
||
23 | * @var Selectable |
||
24 | */ |
||
25 | private $matcher; |
||
26 | |||
27 | /** |
||
28 | * CollectionPersister constructor. |
||
29 | * |
||
30 | * @param ApiMetadata $metadata |
||
31 | * @param Selectable $matcher |
||
32 | * @param array $association |
||
33 | * |
||
34 | * @internal param CrudsApiInterface $api |
||
35 | */ |
||
36 | 1 | public function __construct(ApiMetadata $metadata, Selectable $matcher, array $association) |
|
42 | |||
43 | 1 | public function getManyToManyCollection(array $identifiers) |
|
61 | } |
||
62 |