/home/techb158/ileadtechnology.com/vendor/stripe/stripe-php/lib/Util
NameSizeModeActions
CaseInsensitiveArray.php22210644editdlrm
DefaultLogger.php7930644editdlrm
LoggerInterface.php11240644editdlrm
ObjectTypes.php79510644editdlrm
RandomGenerator.php8140644editdlrm
RequestOptions.php52230644editdlrm
Set.php8200644editdlrm
Util.php74070644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/stripe/stripe-php/lib/Util/CaseInsensitiveArray.php (2221B)
container = \array_change_key_case($initial_array, \CASE_LOWER); } #[\ReturnTypeWillChange] public function count() { return \count($this->container); } /** * @return \ArrayIterator */ #[\ReturnTypeWillChange] public function getIterator() { return new \ArrayIterator($this->container); } /** * @return void */ #[\ReturnTypeWillChange] public function offsetSet($offset, $value) { $offset = static::maybeLowercase($offset); if (null === $offset) { $this->container[] = $value; } else { $this->container[$offset] = $value; } } /** * @return bool */ #[\ReturnTypeWillChange] public function offsetExists($offset) { $offset = static::maybeLowercase($offset); return isset($this->container[$offset]); } /** * @return void */ #[\ReturnTypeWillChange] public function offsetUnset($offset) { $offset = static::maybeLowercase($offset); unset($this->container[$offset]); } /** * @return mixed */ #[\ReturnTypeWillChange] public function offsetGet($offset) { $offset = static::maybeLowercase($offset); return isset($this->container[$offset]) ? $this->container[$offset] : null; } private static function maybeLowercase($v) { if (\is_string($v)) { return \strtolower($v); } return $v; } }