removed int return from getSeed

This commit is contained in:
Intyre 2016-02-22 13:03:27 +01:00
parent 068ad5e924
commit eb00dee8a6
No known key found for this signature in database
GPG Key ID: B06D41D26935005A
2 changed files with 2 additions and 2 deletions

View File

@ -88,5 +88,5 @@ interface ChunkManager{
* *
* @return int * @return int
*/ */
public function getSeed() : int; public function getSeed();
} }

View File

@ -128,7 +128,7 @@ class SimpleChunkManager implements ChunkManager{
* *
* @return int * @return int
*/ */
public function getSeed() : int{ public function getSeed() {
return $this->seed; return $this->seed;
} }
} }