Exemplo n.º 1
0
 public static function getOnceAwards()
 {
     $awards = [];
     foreach (Award::getAwards() as $type) {
         $type = (object) $type;
         if (Award::isOnce($type->name)) {
             array_push($awards, $type);
         }
     }
     return $awards;
 }