Пример #1
0
 /**
  * Gathers labels from beans. This function loops through the beans,
  * collects the values of the name properties of each individual bean
  * and stores the names in a new array. The array then gets sorted using the
  * default sort function of PHP (sort).
  *
  * @param array $beans list of beans to loop
  *
  * @return array
  */
 public static function gatherLabels($beans)
 {
     return self::$labelMaker->gatherLabels($beans);
 }
 /**
  * Gathers labels from beans. This function loops through the beans,
  * collects the values of the name properties of each individual bean
  * and stores the names in a new array. The array then gets sorted using the
  * default sort function of PHP (sort).
  *
  * @param array $beans list of beans to loop
  *
  * @return array
  */
 public function gatherLabels($beans)
 {
     return $this->labelMaker->gatherLabels($beans);
 }