Completed
Push — master ( b96c3f...17a0ce )
by Florian
15s queued 11s
created

src/Link/Filter.php (1 issue)

1
<?php
2
3
namespace Cocur\Chain\Link;
4
5
/**
6
 * Filter.
7
 *
8
 * @author    Florian Eckerstorfer
9
 * @copyright 2015-2018 Florian Eckerstorfer
10
 */
11
trait Filter
12
{
13
    /**
14
     * Filters elements of an array using a callback function.
15
     *
16
     * Iterates over each value in the array passing them to the `callback` function. If the callback functions returns
17
     * true the current value from the array stays in the array, otherwise they are removed. Array keys are preserved.
18
     *
19
     * @param callable $callback the callback function to use
20
     *
21
     * @return self
22
     */
23 2
    public function filter(callable $callback): self
24
    {
25 2
        $this->array = array_filter($this->array, $callback, ARRAY_FILTER_USE_BOTH);
1 ignored issue
show
Bug Best Practice introduced by
The property array does not exist. Although not strictly required by PHP, it is generally a best practice to declare properties explicitly.
Loading history...
26
27 2
        return $this;
28
    }
29
}
30