1 | <?php |
||
4 | trait CollectionComparatorTrait |
||
5 | { |
||
6 | /** |
||
7 | * merge |
||
8 | * reindexing of the keys |
||
9 | * |
||
10 | * @param mixed $collection |
||
11 | * @return self |
||
|
|||
12 | */ |
||
13 | 1 | public function merge($collection /*, ...*/) |
|
17 | |||
18 | /** |
||
19 | * merge without reindexing and override value with a priority by the left |
||
20 | * |
||
21 | * @param mixed $collection |
||
22 | * @return self |
||
23 | */ |
||
24 | 1 | public function mergeA($collection /*, ...*/) |
|
28 | |||
29 | /** |
||
30 | * compare the values |
||
31 | * no reindexing |
||
32 | * |
||
33 | * @param mixed $collection |
||
34 | * @return self |
||
35 | */ |
||
36 | 1 | public function diff($collection /*, ...*/) |
|
40 | |||
41 | /** |
||
42 | * compare the key/value pairs |
||
43 | * no reindexing |
||
44 | * |
||
45 | * @param mixed $collection |
||
46 | * @return self |
||
47 | */ |
||
48 | 1 | public function diffA($collection /*, ...*/) |
|
52 | |||
53 | /** |
||
54 | * compare only the keys |
||
55 | * no reindexing |
||
56 | * |
||
57 | * @param mixed $collection |
||
58 | * @return self |
||
59 | */ |
||
60 | 1 | public function diffK($collection /*, ...*/) |
|
64 | |||
65 | /** |
||
66 | * |
||
67 | * |
||
68 | * @param mixed $collection |
||
69 | * @return self |
||
70 | */ |
||
71 | 1 | public function intersect($collection /*, ...*/) |
|
75 | |||
76 | /** |
||
77 | * |
||
78 | * |
||
79 | * @param mixed $collection |
||
80 | * @return self |
||
81 | */ |
||
82 | 1 | public function intersectA($collection /*, ...*/) |
|
86 | |||
87 | /** |
||
88 | * |
||
89 | * |
||
90 | * @param mixed $collection |
||
91 | * @return self |
||
92 | */ |
||
93 | 1 | public function intersectK($collection /*, ...*/) |
|
97 | |||
98 | /** |
||
99 | * Calls a php native function with $collectionList as args. |
||
100 | * Returns a new instance of Collection as result. |
||
101 | * |
||
102 | * @param string $functionName |
||
103 | * @param array $collectionList |
||
104 | * @return self |
||
105 | */ |
||
106 | 8 | private function apply($functionName, array $collectionList) |
|
110 | |||
111 | /** |
||
112 | * Transforms a list of mixed in an simple array. |
||
113 | * |
||
114 | * @param array $collectionList |
||
115 | * @return array |
||
116 | */ |
||
117 | 8 | private function parseCollectionsListToArray(array $collectionList) |
|
126 | |||
127 | /** |
||
128 | * Unshifts $this to $array. |
||
129 | * |
||
130 | * @param array $array |
||
131 | * @return array |
||
132 | */ |
||
133 | 8 | private function prepareCollections(array $array) |
|
138 | } |
||
139 |
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.