Updated PocketMine Math dependency

This commit is contained in:
Dylan K. Taylor
2018-03-18 18:08:24 +00:00
parent e48ec9fb71
commit 3d89bf5693
5 changed files with 9 additions and 13 deletions

View File

@ -104,10 +104,8 @@ class Position extends Vector3{
* @param int $step
*
* @return Position
*
* @throws LevelException
*/
public function getSide($side, $step = 1){
public function getSide(int $side, int $step = 1){
assert($this->isValid());
return Position::fromObject(parent::getSide($side, $step), $this->level);