for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BrainExe\Core\EventDispatcher;
use Symfony\Component\EventDispatcher\Event;
/**
* @api
*/
abstract class AbstractEvent extends Event
{
* @todo private
This check looks TODO comments that have been left in the code.
TODO
``TODO``s show that something is left unfinished and should be attended to.
* @var string
public $eventName;
* @param string $eventName
public function __construct($eventName)
$this->eventName = $eventName;
}
* @return string
public function getEventName()
return $this->eventName;
This check looks
TODOcomments that have been left in the code.``TODO``s show that something is left unfinished and should be attended to.