| 1 | <?php |
||
| 14 | final class BeforeCreateBookmarkEvent extends BeforeEvent |
||
| 15 | { |
||
| 16 | /** @var \eZ\Publish\API\Repository\Values\Content\Location */ |
||
| 17 | private $location; |
||
| 18 | |||
| 19 | public function __construct(Location $location) |
||
| 20 | { |
||
| 21 | $this->location = $location; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getLocation(): Location |
||
| 28 | } |
||
| 29 |