| 1 | <?php |
||
| 10 | abstract class AbstractEvent extends Event |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @todo private |
||
|
|
|||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | public $eventName; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $eventName |
||
| 21 | 23 | */ |
|
| 22 | public function __construct($eventName) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function getEventName() |
||
| 34 | } |
||
| 35 |
This check looks
TODOcomments that have been left in the code.``TODO``s show that something is left unfinished and should be attended to.