| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 13 | class CommentEvent extends Event |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var CommentModel |
||
| 17 | */ |
||
| 18 | private $_commentModel; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return CommentModel |
||
| 22 | */ |
||
| 23 | public function getCommentModel() |
||
| 24 | { |
||
| 25 | return $this->_commentModel; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param CommentModel $commentModel |
||
| 30 | */ |
||
| 31 | public function setCommentModel(CommentModel $commentModel) |
||
| 34 | } |
||
| 35 | } |
||
| 36 |