/home/techb158/ileadtechnology.com/vendor/laravel/framework/src/Illuminate/Support
NameSizeModeActions
Facades/-0755rm
Testing/-0755rm
Traits/-0755rm
AggregateServiceProvider.php9950644editdlrm
Arr.php160750755editdlrm
Carbon.php1150644editdlrm
Collection.php325900644editdlrm
composer.json15450644editdlrm
Composer.php23900644editdlrm
ConfigurationUrlParser.php43890644editdlrm
DateFactory.php80220644editdlrm
Enumerable.php220740644editdlrm
Env.php26930644editdlrm
Fluent.php38790755editdlrm
helpers.php135340755editdlrm
HigherOrderCollectionProxy.php14080644editdlrm
HigherOrderTapProxy.php6650644editdlrm
HigherOrderWhenProxy.php13070644editdlrm
HtmlString.php8770644editdlrm
InteractsWithTime.php15880644editdlrm
LazyCollection.php333220644editdlrm
LICENSE.md10750644editdlrm
Manager.php40760755editdlrm
MessageBag.php97500755editdlrm
NamespacedItemResolver.php32690755editdlrm
Optional.php26410644editdlrm
Pluralizer.php32070755editdlrm
ProcessUtils.php20500644editdlrm
Reflector.php26720644editdlrm
ServiceProvider.php95180755editdlrm
Str.php194140644editdlrm
Stringable.php163360644editdlrm
ViewErrorBag.php26220644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/laravel/framework/src/Illuminate/Support/Optional.php (2641B)
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; } } /** * 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}); } if (is_array($this->value) || $this->value instanceof ArrayObject) { return isset($this->value[$name]); } return false; } /** * 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 * @return void */ public function offsetSet($key, $value) { if (Arr::accessible($this->value)) { $this->value[$key] = $value; } } /** * Unset the item at a given offset. * * @param string $key * @return void */ public function offsetUnset($key) { if (Arr::accessible($this->value)) { unset($this->value[$key]); } } /** * 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); } } }