pocketmine\level\GameRules::areSameType PHP Method

areSameType() public method

public areSameType ( $key, $otherValue )
    public function areSameType($key, $otherValue)
    {
        $value = $this->theGameRules[$key];
        return $value != null && gettype($value) == gettype($otherValue);
    }