createOrThrowException() публичный статический Метод

public static createOrThrowException ( array $notifiers = [] ) : Joli\JoliNotif\Notifier
$notifiers array
Результат Joli\JoliNotif\Notifier
Пример #1
0
 /** @expectedException \Joli\JoliNotif\Exception\NoSupportedNotifierException */
 public function testCreateOrThrowExceptionWithNoSupportedNotifiersThrowsException()
 {
     NotifierFactory::createOrThrowException([new ConfigurableNotifier(false), new ConfigurableNotifier(false)]);
 }