PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Helpers
/
Editing: ObjectHelpers.php
<?php declare(strict_types=1); namespace Saloon\Helpers; /** * @internal */ final class ObjectHelpers { /** * Get an item from an object using "dot" notation. */ public static function get(object $object, string $key, mixed $default = null): mixed { // Split the dot notation into individual keys $keys = explode('.', $key); // Navigate through the object properties foreach ($keys as $dot) { // Check if the object is an array or object and if the key exists if (is_object($object) && isset($object->{$dot})) { $object = $object->{$dot}; } elseif (is_array($object) && isset($object[$dot])) { $object = $object[$dot]; } else { // Return null if the key doesn't exist return null; } } return $object; } }
SAVE
CANCEL