1 | <?php |
||
13 | class FormWallPostDelete extends Model |
||
14 | { |
||
15 | public $id; |
||
16 | |||
17 | private $_post; |
||
18 | |||
19 | /** |
||
20 | * FormWallPostDelete constructor. Pass wall post active record object inside model |
||
21 | * @param WallPost $post |
||
22 | */ |
||
23 | public function __construct(WallPost $post) |
||
28 | |||
29 | /** |
||
30 | * Set post id based on post active record |
||
31 | */ |
||
32 | public function before() |
||
36 | |||
37 | /** |
||
38 | * Delete wall post object from db |
||
39 | */ |
||
40 | public function make() |
||
45 | |||
46 | |||
47 | } |