mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 12:34:18 +00:00
19 lines
309 B
PHP
19 lines
309 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Segments\Services;
|
|
|
|
class AddItemToConstantValueArray
|
|
{
|
|
|
|
/**
|
|
* @param array $array
|
|
* @param $item
|
|
* @return array
|
|
*/
|
|
public function execute($array, $item): array {
|
|
$array[] = $item;
|
|
sort($array);
|
|
return $array;
|
|
}
|
|
|
|
} |