1 | <?php |
||
14 | class SlugEvent extends Event |
||
15 | { |
||
16 | private $entity; |
||
17 | private $property; |
||
18 | |||
19 | /** |
||
20 | * SlugEvent constructor. |
||
21 | * @param $entity object |
||
22 | * @param $property string |
||
23 | */ |
||
24 | public function __construct($entity, $property) |
||
35 | |||
36 | /** |
||
37 | * @return object |
||
38 | */ |
||
39 | public function getEntity() |
||
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | public function getProperty() |
||
51 | } |
||
52 |