Completed
Pull Request — master (#156)
by Lucas
02:51
created

Extract::extract()   A

Complexity

Conditions 2
Paths 1

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 9.9332
c 0
b 0
f 0
cc 2
nc 1
nop 0
1
<?php
2
3
namespace Spatie\CollectionMacros\Macros;
4
5
use Illuminate\Support\Collection;
6
7
class Extract
8
{
9
    /**
10
     * Extract keys from a collection, like `only`, except:
11
     * - If a value doesn't exist, it returns null instead of omitting it
12
     * - It returns a collection without keys, so `list()` can be used.
13
     *
14
     * @return \Illuminate\Support\Collection
15
     */
16
    public function extract()
17
    {
18
        return function ($keys): Collection {
19
            $keys = is_array($keys) ? $keys : func_get_args();
20
21
            return array_reduce($keys, function ($extracted, $key) {
22
                return $extracted->push(data_get($this->items, $key));
0 ignored issues
show
Bug introduced by
The property items does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
23
            }, new static());
24
        };
25
    }
26
}
27