DotNotation Collection

A DotNotation Collection extends Collection and implements Peak\Blueprint\Collection\Dictionary which give you 4 new methods to manage your collection easily:

The Dot . can be used to access elements in your collection. Imagine you have a collection like this:

 $coll = new DotNotationCollection([
    'customer' => [
        'name' => 'Jane'
        'age'  => 26,
        'address' => [
            'street' => 'FooBar Boulevard'
            'city' => 'New Bar City',
            'state' => 'ZZ',
            'zip' => '1ab2c3',
            'country' => 'Republica of Banana',
        ]
        'hobbies' => [
            'kayak', 'skiing', 'surfing'
        ]
    ]
 ]);

With DotNotationCollection, you can simply access to street with get() with dots instead of array brackets. By default, if a property doesn’t exists, null is returned. You can change the default by passing a second argument to get() with the default value you want

$street = $coll->get('customer.address.street');
// with a default value
$street = $coll->get('customer.address.street', 'unknown');

You can check if a property exists with has():

if ($coll->has('customer.address.street')) {
    // ...
}

You can change a property value(s) with set():

$coll->set('customer.address.street', '123 Abc Blvd');

Dealing with numeric array keys

Accessing to a element of array is straightforward:

$hobby = $coll->get('customer.hobbies.1'); // return skiing