示例#1
0
文件: Alert.php 项目: bztrn/alerts
 /**
  * Constructor.
  *
  * @param  \Cartalyst\Alerts\Native\AlertsBootstrapper  $bootstrapper
  * @return void
  */
 public function __construct(AlertsBootstrapper $bootstrapper = null)
 {
     if ($bootstrapper === null) {
         $bootstrapper = new AlertsBootstrapper();
     }
     $this->alerts = $bootstrapper->createAlerts();
 }