예제 #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();
 }