| 1 | <?php |
||
| 15 | class Mapper |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Creates a URL from the given update $struct. |
||
| 19 | * |
||
| 20 | * @param \eZ\Publish\SPI\Persistence\URL\URLUpdateStruct $struct |
||
| 21 | * @return \eZ\Publish\SPI\Persistence\URL\URL |
||
| 22 | */ |
||
| 23 | public function createURLFromUpdateStruct(URLUpdateStruct $struct) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Extracts URL objects from $rows. |
||
| 37 | * |
||
| 38 | * @param array $rows |
||
| 39 | * @return \eZ\Publish\SPI\Persistence\URL\URL[] |
||
| 40 | */ |
||
| 41 | public function extractURLsFromRows(array $rows) |
||
| 60 | } |
||
| 61 |