@@ -901,20 +901,20 @@ discard block |
||
901 | 901 | } |
902 | 902 | |
903 | 903 | /** |
904 | - * alias: for "Arrayy->keys()" |
|
905 | - * |
|
906 | - * @return Arrayy |
|
907 | - */ |
|
904 | + * alias: for "Arrayy->keys()" |
|
905 | + * |
|
906 | + * @return Arrayy |
|
907 | + */ |
|
908 | 908 | public function getKeys() |
909 | 909 | { |
910 | 910 | return $this->keys(); |
911 | 911 | } |
912 | 912 | |
913 | 913 | /** |
914 | - * Get all keys from the current array. |
|
915 | - * |
|
916 | - * @return Arrayy |
|
917 | - */ |
|
914 | + * Get all keys from the current array. |
|
915 | + * |
|
916 | + * @return Arrayy |
|
917 | + */ |
|
918 | 918 | public function keys() |
919 | 919 | { |
920 | 920 | $array = array_keys((array)$this->array); |
@@ -1034,10 +1034,10 @@ discard block |
||
1034 | 1034 | } |
1035 | 1035 | |
1036 | 1036 | /** |
1037 | - * Get the min value from an array. |
|
1038 | - * |
|
1039 | - * @return mixed |
|
1040 | - */ |
|
1037 | + * Get the min value from an array. |
|
1038 | + * |
|
1039 | + * @return mixed |
|
1040 | + */ |
|
1041 | 1041 | public function min() |
1042 | 1042 | { |
1043 | 1043 | if ($this->count() === 0) { |
@@ -1067,10 +1067,10 @@ discard block |
||
1067 | 1067 | } |
1068 | 1068 | |
1069 | 1069 | /** |
1070 | - * WARNING!!! -> Clear the current array. |
|
1071 | - * |
|
1072 | - * @return $this This will always return an empty Arrayy object. |
|
1073 | - */ |
|
1070 | + * WARNING!!! -> Clear the current array. |
|
1071 | + * |
|
1072 | + * @return $this This will always return an empty Arrayy object. |
|
1073 | + */ |
|
1074 | 1074 | public function clear() |
1075 | 1075 | { |
1076 | 1076 | $this->array = array(); |
@@ -1189,12 +1189,12 @@ discard block |
||
1189 | 1189 | } |
1190 | 1190 | |
1191 | 1191 | /** |
1192 | - * Return a boolean flag which indicates whether the two input arrays have any common elements. |
|
1193 | - * |
|
1194 | - * @param array $search |
|
1195 | - * |
|
1196 | - * @return bool |
|
1197 | - */ |
|
1192 | + * Return a boolean flag which indicates whether the two input arrays have any common elements. |
|
1193 | + * |
|
1194 | + * @param array $search |
|
1195 | + * |
|
1196 | + * @return bool |
|
1197 | + */ |
|
1198 | 1198 | public function intersects(array $search) |
1199 | 1199 | { |
1200 | 1200 | return count($this->intersection($search)->array) > 0; |
@@ -1251,10 +1251,10 @@ discard block |
||
1251 | 1251 | } |
1252 | 1252 | |
1253 | 1253 | /** |
1254 | - * Pop a specified value off the end of the current array. |
|
1255 | - * |
|
1256 | - * @return mixed The popped element from the current array. |
|
1257 | - */ |
|
1254 | + * Pop a specified value off the end of the current array. |
|
1255 | + * |
|
1256 | + * @return mixed The popped element from the current array. |
|
1257 | + */ |
|
1258 | 1258 | public function pop() |
1259 | 1259 | { |
1260 | 1260 | return array_pop($this->array); |