Event: remove useless @var $this annotations

we are not in a trait here, the scope is always Event.
This commit is contained in:
Dylan K. Taylor 2019-12-04 10:15:04 +00:00
parent bc76b1cafe
commit 753a8a6937

View File

@ -56,7 +56,6 @@ abstract class Event{
throw new \BadMethodCallException(get_class($this) . " is not Cancellable");
}
/** @var Event $this */
return $this->isCancelled;
}
@ -70,7 +69,6 @@ abstract class Event{
throw new \BadMethodCallException(get_class($this) . " is not Cancellable");
}
/** @var Event $this */
$this->isCancelled = $value;
}