public function __construct(TagInterface $tag)
 {
     parent::__construct();
     $this->tag = $tag;
 }
 public function __construct(SiteInterface $site, TagInterface $tag)
 {
     parent::__construct();
     $this->site = $site;
     $this->tag = $tag;
 }
 public function __construct(FeedInterface $feed)
 {
     parent::__construct();
     $this->feed = $feed;
 }