Completed
Push — master ( 29c7dc...1875a0 )
by Antonio Carlos
02:00
created

src/Support/HigherOrderCollectionProxy.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace IlluminateAgnostic\Arr\Support;
4
5
/**
6
 * @mixin \IlluminateAgnostic\Arr\Support\Collection
7
 */
8
class HigherOrderCollectionProxy
9
{
10
    /**
11
     * The collection being operated on.
12
     *
13
     * @var \IlluminateAgnostic\Arr\Support\Collection
14
     */
15
    protected $collection;
16
17
    /**
18
     * The method being proxied.
19
     *
20
     * @var string
21
     */
22
    protected $method;
23
24
    /**
25
     * Create a new proxy instance.
26
     *
27
     * @param  \IlluminateAgnostic\Arr\Support\Collection  $collection
28
     * @param  string  $method
29
     * @return void
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
30
     */
31 11
    public function __construct(Collection $collection, $method)
32
    {
33 11
        $this->method = $method;
34 11
        $this->collection = $collection;
35 11
    }
36
37
    /**
38
     * Proxy accessing an attribute onto the collection items.
39
     *
40
     * @param  string  $key
41
     * @return mixed
42
     */
43
    public function __get($key)
44
    {
45 9
        return $this->collection->{$this->method}(function ($value) use ($key) {
46 9
            return is_array($value) ? $value[$key] : $value->{$key};
47 9
        });
48
    }
49
50
    /**
51
     * Proxy a method call onto the collection items.
52
     *
53
     * @param  string  $method
54
     * @param  array  $parameters
55
     * @return mixed
56
     */
57
    public function __call($method, $parameters)
58
    {
59 4
        return $this->collection->{$this->method}(function ($value) use ($method, $parameters) {
60 4
            return $value->{$method}(...$parameters);
61 4
        });
62
    }
63
}
64