1 | <?php namespace Modules\Blog\Events; |
||
5 | class PostWasDeleted implements DeletingMedia |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $postClass; |
||
11 | /** |
||
12 | * @var int |
||
13 | */ |
||
14 | private $postId; |
||
15 | |||
16 | public function __construct($postId, $postClass) |
||
21 | |||
22 | /** |
||
23 | * Get the entity ID |
||
24 | * @return int |
||
25 | */ |
||
26 | public function getEntityId() |
||
30 | |||
31 | /** |
||
32 | * Get the class name the imageables |
||
33 | * @return string |
||
34 | */ |
||
35 | public function getClassName() |
||
39 | } |
||
40 |