Added some missing typehints

This commit is contained in:
Dylan K. Taylor
2018-06-10 17:18:55 +01:00
parent 89643ff9af
commit c4c6c58615
19 changed files with 27 additions and 27 deletions

View File

@ -39,7 +39,7 @@ class SimpleChunkManager implements ChunkManager{
* @param int $seed
* @param int $worldHeight
*/
public function __construct($seed, int $worldHeight = Level::Y_MAX){
public function __construct(int $seed, int $worldHeight = Level::Y_MAX){
$this->seed = $seed;
$this->worldHeight = $worldHeight;
}