| 1 | <?php |
||
| 15 | class ItemApiLookup implements ItemLookup { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var EntityLookup |
||
| 19 | */ |
||
| 20 | private $entityLookup; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param EntityLookup $entityLookup |
||
| 24 | */ |
||
| 25 | 2 | public function __construct( EntityLookup $entityLookup ) { |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @see ItemLookup::getItemForId |
||
| 31 | */ |
||
| 32 | 2 | public function getItemForId( ItemId $itemId ) { |
|
| 37 | } |
||
| 38 |