1 | <?php |
||
17 | class DispatchingEntityIdForTermLookup implements ItemIdForTermLookup, PropertyIdForTermLookup, EntityIdForTermLookup { |
||
18 | |||
19 | /** |
||
20 | * @var EntityIdForTermLookup |
||
21 | */ |
||
22 | private $entityIdForTermLookup; |
||
23 | |||
24 | /** |
||
25 | * @param EntityIdForTermLookup $entityIdForTermLookup |
||
26 | */ |
||
27 | 5 | public function __construct( EntityIdForTermLookup $entityIdForTermLookup ) { |
|
30 | |||
31 | /** |
||
32 | * @see EntityDocumentForTermLookup:getEntityDocumentsForTerm |
||
33 | */ |
||
34 | 1 | public function getEntityIdsForTerm( Term $term, $entityType = null ) { |
|
37 | |||
38 | /** |
||
39 | * @see ItemForTermLookup::getItemForTerm |
||
40 | */ |
||
41 | 3 | public function getItemIdsForTerm( Term $term ) { |
|
44 | |||
45 | /** |
||
46 | * @see PropertyForTermLookup::getPropertyForTerm |
||
47 | */ |
||
48 | 3 | public function getPropertyIdsForTerm( Term $term ) { |
|
51 | } |
||
52 |