1 | <?php |
||
17 | class Mapper |
||
18 | { |
||
19 | /** |
||
20 | * Creates a Bookmark from $createStruct. |
||
21 | * |
||
22 | * @param \eZ\Publish\SPI\Persistence\Bookmark\CreateStruct $createStruct |
||
23 | * @return \eZ\Publish\SPI\Persistence\Bookmark\Bookmark |
||
24 | */ |
||
25 | public function createBookmarkFromCreateStruct(CreateStruct $createStruct): Bookmark |
||
34 | |||
35 | /** |
||
36 | * Extracts Bookmark objects from $rows. |
||
37 | * |
||
38 | * @param array $rows |
||
39 | * @return \eZ\Publish\SPI\Persistence\Bookmark\Bookmark[] |
||
40 | */ |
||
41 | public function extractBookmarksFromRows(array $rows): array |
||
50 | |||
51 | /** |
||
52 | * Extract Bookmark object from $row. |
||
53 | * |
||
54 | * @param array $row |
||
55 | * @return \eZ\Publish\SPI\Persistence\Bookmark\Bookmark |
||
56 | */ |
||
57 | private function extractBookmarkFromRow(array $row): Bookmark |
||
67 | } |
||
68 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.