= $argumentsLength || false === $arguments[static::$withHashArgumentPositionOffset] ) { parent::setArguments($arguments); return; } $argument = $arguments[static::$withHashArgumentPositionOffset]; if (true === $argument) { $argument = 'WITHHASH'; } else { throw new UnexpectedValueException('Wrong WITHHASH argument type'); } $argumentsBefore = array_slice($arguments, 0, static::$withHashArgumentPositionOffset); $argumentsAfter = array_slice($arguments, static::$withHashArgumentPositionOffset + 1); parent::setArguments(array_merge($argumentsBefore, [$argument], $argumentsAfter)); } }