You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 satır
230B

  1. <?php
  2. namespace App\Util;
  3. use Illuminate\Support\Collection;
  4. class CollectionUtil
  5. {
  6. public static function pushAll($base, $append)
  7. {
  8. foreach ($append as $ele) {
  9. $base->push($ele);
  10. }
  11. }
  12. }