Collection.php 319 B

123456789101112131415161718
  1. <?php
  2. namespace addons\epay\library;
  3. class Collection extends \Yansongda\Supports\Collection
  4. {
  5. /**
  6. * 创建 Collection 实例
  7. * @access public
  8. * @param array $items 数据
  9. * @return static
  10. */
  11. public static function make($items = [])
  12. {
  13. return new static($items);
  14. }
  15. }