コード例 #1
0
ファイル: BrFTP.php プロジェクト: jagermesh/bright
 function __construct()
 {
     parent::__construct();
 }
コード例 #2
0
ファイル: BrIMAP.php プロジェクト: jagermesh/bright
 function __construct($mailService, $path, $overview)
 {
     parent::__construct();
     $this->mailService = $mailService;
     $this->path = $path;
     $this->overview = $overview;
     $this->HTMLBody = new BrIMAPBody($this, true);
     $this->textBody = new BrIMAPBody($this, false);
     $this->attachments = array();
 }