예제 #1
0
파일: ItemCollection.php 프로젝트: n8b/VMN
 /**
  * Create a new group from a mixed data set
  *
  * @param array $data Data set
  * @return ItemCollection
  */
 public static function create($data)
 {
     $group = new ItemCollection();
     return $group->add($data);
 }