コード例 #1
0
ファイル: CallbackNotifier.php プロジェクト: jmfontaine/aviso
 public function __construct($callback = null, FormaterInterface $formater = null)
 {
     parent::__construct($formater);
     if (null !== $callback) {
         $this->setCallback($callback);
     }
 }
コード例 #2
0
ファイル: MailNotifier.php プロジェクト: jmfontaine/aviso
 public function __construct($from, $recipients, $subject, FormaterInterface $formater = null)
 {
     if (null === $formater) {
         $formater = new BlockFormater();
     }
     parent::__construct($formater);
     $this->setFrom($from)->setRecipients($recipients)->setSubject($subject);
 }
コード例 #3
0
ファイル: GrowlNotifier.php プロジェクト: jmfontaine/aviso
 public function __construct($protocol = self::PROTOCOLE_GNTP, FormaterInterface $formater = null)
 {
     parent::__construct($formater);
     $this->setProtocol($protocol);
 }
コード例 #4
0
ファイル: StreamNotifier.php プロジェクト: jmfontaine/aviso
 public function __construct($stream = 'php://stdout', FormaterInterface $formater = null)
 {
     parent::__construct($formater);
     $this->setStream($stream);
 }