Esempio n. 1
0
 /**
  * @param array $notifications
  * @return Notifications
  */
 public static function mapFromArray(array $notifications)
 {
     $mapped = array_map(function (array $notification) {
         return Notification::fromArray($notification);
     }, $notifications);
     return new Notifications($mapped);
 }