Source of file HasLink.php
Size: 0,406 Bytes - Last Modified: 2020-12-03T03:34:36+00:00
/home/vagrant/Code/projects/podcast-feed-parser/src/Traits/HasLink.php
123456789101112131415161718192021222324252627282930 | <?php namespace Lukaswhite\PodcastFeedParser\Traits; trait HasLink { /** * @var string */ protected $link; /** * @return string */ public function getLink() { return $this->link; } /** * @param string $link * @return self */ public function setLink($link): self { $this->link = $link; return $this; } } |