Moved more helper methods out to the utility classes.

This commit is contained in:
2022-03-12 06:00:16 +02:00
parent 3331a4c28d
commit ec827b7369
20 changed files with 824 additions and 793 deletions

View File

@@ -14,7 +14,9 @@ namespace VDM\Joomla\Utilities;
/**
* Some array tricks helper
* Some array tricks helper
*
* @since 3.0.9
*/
abstract class ArrayHelper
{
@@ -24,6 +26,8 @@ abstract class ArrayHelper
* @input array The array to check
*
* @returns bool/int number of items in array on success
*
* @since 3.0.9
*/
public static function check($array, $removeEmptyString = false)
{
@@ -52,6 +56,8 @@ abstract class ArrayHelper
* @input array The arrays you would like to merge
*
* @returns array on success
*
* @since 3.0.9
*/
public static function merge($arrays)
{