pocketmine\Server::setConfigInt PHP Method

setConfigInt() public method

public setConfigInt ( string $variable, integer $value )
$variable string
$value integer
    public function setConfigInt($variable, $value)
    {
        $this->properties->set($variable, (int) $value);
    }
Server