phpdoc: populate missing parameter typeinfo

This commit is contained in:
Dylan K. Taylor
2020-01-11 21:53:24 +00:00
parent c329ff7d4f
commit 17720041a3
20 changed files with 260 additions and 3 deletions

View File

@ -31,6 +31,9 @@ class MethodEventExecutor implements EventExecutor{
/** @var string */
private $method;
/**
* @param string $method
*/
public function __construct($method){
$this->method = $method;
}
@ -39,6 +42,9 @@ class MethodEventExecutor implements EventExecutor{
$listener->{$this->getMethod()}($event);
}
/**
* @return string
*/
public function getMethod(){
return $this->method;
}