/home/techb158/immovalet.ca/Client/stripe-php/lib/Util
NameSizeModeActions
AutoPagingIterator.php15990666editdlrm
CaseInsensitiveArray.php17350666editdlrm
DefaultLogger.php5060666editdlrm
LoggerInterface.php12090666editdlrm
RandomGenerator.php8340666editdlrm
RequestOptions.php33220666editdlrm
Set.php7890666editdlrm
Util.php139920666editdlrm
Edit: /home/techb158/immovalet.ca/Client/stripe-php/lib/Util/CaseInsensitiveArray.php (1735B)
container = array_map("strtolower", $initial_array); } public function offsetSet($offset, $value) { $offset = static::maybeLowercase($offset); if (is_null($offset)) { $this->container[] = $value; } else { $this->container[$offset] = $value; } } public function offsetExists($offset) { $offset = static::maybeLowercase($offset); return isset($this->container[$offset]); } public function offsetUnset($offset) { $offset = static::maybeLowercase($offset); unset($this->container[$offset]); } 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); } else { return $v; } } }