コード例 #1
0
ファイル: NotificationsSpec.php プロジェクト: rojtjo/notifier
 function let()
 {
     $this->beConstructedWith([Notification::success('It is successful'), Notification::error('It is an error')]);
 }
コード例 #2
0
 /**
  * @return Notifications
  */
 private function createNotifications()
 {
     return new Notifications([Notification::success('It is successful'), Notification::error('It is an error'), Notification::warning('It is a warning'), Notification::info('It is info')]);
 }