Edit File: RequestContext.php
<?php namespace Laravel\Octane; use ArrayAccess; class RequestContext implements ArrayAccess { public function __construct(public array $data = []) { } #[\ReturnTypeWillChange] public function offsetExists($offset) { return isset($this->data[$offset]); } #[\ReturnTypeWillChange] public function offsetGet($offset) { return $this->data[$offset]; } #[\ReturnTypeWillChange] public function offsetSet($offset, $value) { $this->data[$offset] = $value; } #[\ReturnTypeWillChange] public function offsetUnset($offset) { unset($this->data[$offset]); } public function __get($key) { return $this->data[$key]; } public function __set($key, $value) { $this->data[$key] = $value; } }
Back to File Manager