123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Utils;
- use ArrayAccess;
- use Hyperf\Macroable\Macroable;
- class Optional implements ArrayAccess
- {
- use Macroable {
- __call as macroCall;
- }
- /**
- * The underlying object.
- *
- * @var mixed
- */
- protected $value;
- /**
- * Create a new optional instance.
- *
- * @param mixed $value
- */
- public function __construct($value)
- {
- $this->value = $value;
- }
- /**
- * Dynamically access a property on the underlying object.
- *
- * @param string $key
- * @return mixed
- */
- public function __get($key)
- {
- if (is_object($this->value)) {
- return $this->value->{$key} ?? null;
- }
- return null;
- }
- /**
- * Dynamically check a property exists on the underlying object.
- *
- * @param mixed $name
- * @return bool
- */
- public function __isset($name)
- {
- if (is_object($this->value)) {
- return isset($this->value->{$name});
- }
- return false;
- }
- /**
- * Dynamically pass a method to the underlying object.
- *
- * @param string $method
- * @param array $parameters
- * @return mixed
- */
- public function __call($method, $parameters)
- {
- if (static::hasMacro($method)) {
- return $this->macroCall($method, $parameters);
- }
- if (is_object($this->value)) {
- return $this->value->{$method}(...$parameters);
- }
- }
- /**
- * Determine if an item exists at an offset.
- *
- * @param mixed $key
- * @return bool
- */
- public function offsetExists($key)
- {
- return Arr::accessible($this->value) && Arr::exists($this->value, $key);
- }
- /**
- * Get an item at a given offset.
- *
- * @param mixed $key
- * @return mixed
- */
- public function offsetGet($key)
- {
- return Arr::get($this->value, $key);
- }
- /**
- * Set the item at a given offset.
- *
- * @param mixed $key
- * @param mixed $value
- */
- public function offsetSet($key, $value)
- {
- if (Arr::accessible($this->value)) {
- $this->value[$key] = $value;
- }
- }
- /**
- * Unset the item at a given offset.
- *
- * @param string $key
- */
- public function offsetUnset($key)
- {
- if (Arr::accessible($this->value)) {
- unset($this->value[$key]);
- }
- }
- }
|