pocketmine\event\TranslationContainer::setParameter PHP Method

setParameter() public method

public setParameter ( integer $i, string $str )
$i integer
$str string
    public function setParameter($i, $str)
    {
        if ($i < 0 or $i > count($this->params)) {
            //Intended, allow to set the last
            throw new \InvalidArgumentException("Invalid index {$i}, have " . count($this->params));
        }
        $this->params[(int) $i] = $str;
    }