Remove some fully qualified function calls

PhpStorm can't see these or understand how they are being called, which is very annoying for bug hunting. Additionally, we already have the CodeOptimizer for this.
This commit is contained in:
Dylan K. Taylor
2018-06-18 12:23:19 +01:00
parent 49f80830a7
commit 2d3ce9e8b0
8 changed files with 11 additions and 11 deletions

View File

@ -215,7 +215,7 @@ abstract class Projectile extends Entity{
}elseif($blockHit !== null){
$ev = new ProjectileHitBlockEvent($this, $hitResult, $blockHit);
}else{
\assert(false, "unknown hit type");
assert(false, "unknown hit type");
}
if($ev !== null){