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)]);
 }