Added type hint to BlockEvent::getBlock()

This commit is contained in:
Shoghi Cervantes 2014-09-11 21:57:56 +02:00
parent 0bd7ab9def
commit cfcf515f62

View File

@ -38,6 +38,9 @@ abstract class BlockEvent extends Event{
$this->block = $block;
}
/**
* @return Block
*/
public function getBlock(){
return $this->block;
}