nozavroni / collections

🐧 Just another collections library for PHP5.6+
Other
1 stars 0 forks source link

Add collapse method #36

Open nozavroni opened 7 years ago

nozavroni commented 7 years ago

Add a collapse method to MultiCollection that collapses a multi-dimensional array/collection into a one-dimensional one. So this:

users:
    luke: 
        firstname: luke
        lastname: visinoni
        email: luke.visinoni@gmail.com
    dude: 
        firstname: the
        lastname: dude
        email: thedude@lebowski.com
    jeff: 
        firstname: jeff
        lastname: lebowski
        email: jlebowski@whereisbunny.com

Becomes this:

NOT SURE: Look at how Laravel handles it
nozavroni commented 7 years ago

Dot notation: see issue #27