| 1 | <?php |
||
| 22 | class ContentContentInfoProxy extends APIContentInfo |
||
| 23 | { |
||
| 24 | use GeneratorProxyTrait; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var \eZ\Publish\API\Repository\Values\Content\ContentInfo|null |
||
| 28 | */ |
||
| 29 | protected $object; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var ContentProxy |
||
| 33 | */ |
||
| 34 | protected $proxy; |
||
| 35 | |||
| 36 | public function __construct(ContentProxy $proxy, int $id, $status = APIContentInfo::STATUS_PUBLISHED) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the inner content Info value object from ContentProxy. |
||
| 47 | */ |
||
| 48 | protected function loadObject() |
||
| 53 | } |
||
| 54 |