public function __construct($binary = null)
 {
     parent::__construct();
     if ($binary) {
         $this->setBinary($binary);
     }
 }
 public function __construct($text = null)
 {
     parent::__construct();
     if ($text) {
         $this->setText($text);
     }
 }
 public function __construct()
 {
     parent::__construct();
     $this->getTorrent()->setCreated_by(self::DEFAULT_CREATED_BY);
     $this->getTorrent()->setCreation_date(time());
 }