芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/predis/MinMaxModifier.php
'MIN', 'max' => 'MAX', ]; public function resolveModifier(int $offset, array &$arguments): void { if ($offset >= count($arguments)) { $arguments[$offset] = $this->modifierEnum['min']; return; } if (!is_string($arguments[$offset]) || !array_key_exists($arguments[$offset], $this->modifierEnum)) { throw new UnexpectedValueException('Wrong type of modifier given'); } $arguments[$offset] = $this->modifierEnum[$arguments[$offset]]; } }