Source of file HasExplicit.php

Size: 0,444 Bytes - Last Modified: 2020-12-03T03:21:20+00:00

/home/vagrant/Code/projects/podcast-feed-parser/src/Traits/HasExplicit.php

12345678910111213141516171819202122232425262728293031
<?php


namespace Lukaswhite\PodcastFeedParser\Traits;

trait HasExplicit
{
    /**
     * @var string
     */
    protected $explicit;

    /**
     * @return string
     */
    public function getExplicit()
    {
        return $this->explicit;
    }

    /**
     * @param string $explicit
     * @return HasExplicit
     */
    public function setExplicit($explicit)
    {
        $this->explicit = $explicit;
        return $this;
    }

}