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