@@ -921,20 +921,20 @@ discard block |
||
921 | 921 | } |
922 | 922 | |
923 | 923 | /** |
924 | - * alias: for "Arrayy->keys()" |
|
925 | - * |
|
926 | - * @return Arrayy |
|
927 | - */ |
|
924 | + * alias: for "Arrayy->keys()" |
|
925 | + * |
|
926 | + * @return Arrayy |
|
927 | + */ |
|
928 | 928 | public function getKeys() |
929 | 929 | { |
930 | 930 | return $this->keys(); |
931 | 931 | } |
932 | 932 | |
933 | 933 | /** |
934 | - * Get all keys from the current array. |
|
935 | - * |
|
936 | - * @return Arrayy |
|
937 | - */ |
|
934 | + * Get all keys from the current array. |
|
935 | + * |
|
936 | + * @return Arrayy |
|
937 | + */ |
|
938 | 938 | public function keys() |
939 | 939 | { |
940 | 940 | $array = array_keys((array)$this->array); |
@@ -1054,10 +1054,10 @@ discard block |
||
1054 | 1054 | } |
1055 | 1055 | |
1056 | 1056 | /** |
1057 | - * Get the min value from an array. |
|
1058 | - * |
|
1059 | - * @return mixed |
|
1060 | - */ |
|
1057 | + * Get the min value from an array. |
|
1058 | + * |
|
1059 | + * @return mixed |
|
1060 | + */ |
|
1061 | 1061 | public function min() |
1062 | 1062 | { |
1063 | 1063 | if ($this->count() === 0) { |
@@ -1087,10 +1087,10 @@ discard block |
||
1087 | 1087 | } |
1088 | 1088 | |
1089 | 1089 | /** |
1090 | - * WARNING!!! -> Clear the current array. |
|
1091 | - * |
|
1092 | - * @return $this Return this Arrayy object, with an empty array. |
|
1093 | - */ |
|
1090 | + * WARNING!!! -> Clear the current array. |
|
1091 | + * |
|
1092 | + * @return $this Return this Arrayy object, with an empty array. |
|
1093 | + */ |
|
1094 | 1094 | public function clear() |
1095 | 1095 | { |
1096 | 1096 | $this->array = array(); |
@@ -1209,12 +1209,12 @@ discard block |
||
1209 | 1209 | } |
1210 | 1210 | |
1211 | 1211 | /** |
1212 | - * Return a boolean flag which indicates whether the two input arrays have any common elements. |
|
1213 | - * |
|
1214 | - * @param array $search |
|
1215 | - * |
|
1216 | - * @return bool |
|
1217 | - */ |
|
1212 | + * Return a boolean flag which indicates whether the two input arrays have any common elements. |
|
1213 | + * |
|
1214 | + * @param array $search |
|
1215 | + * |
|
1216 | + * @return bool |
|
1217 | + */ |
|
1218 | 1218 | public function intersects(array $search) |
1219 | 1219 | { |
1220 | 1220 | return count($this->intersection($search)->array) > 0; |
@@ -1271,10 +1271,10 @@ discard block |
||
1271 | 1271 | } |
1272 | 1272 | |
1273 | 1273 | /** |
1274 | - * Pop a specified value off the end of the current array. |
|
1275 | - * |
|
1276 | - * @return mixed The popped element from the current array. |
|
1277 | - */ |
|
1274 | + * Pop a specified value off the end of the current array. |
|
1275 | + * |
|
1276 | + * @return mixed The popped element from the current array. |
|
1277 | + */ |
|
1278 | 1278 | public function pop() |
1279 | 1279 | { |
1280 | 1280 | return array_pop($this->array); |