Source of file Owner.php

Size: 0,725 Bytes - Last Modified: 2020-12-03T03:47:55+00:00

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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
<?php

namespace Lukaswhite\PodcastFeedParser;

class Owner
{
    /**
     * @var string
     */
    protected $name;

    /**
     * @var string
     */
    protected $email;

    /**
     * @return mixed
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * @param mixed $name
     * @return Owner
     */
    public function setName($name)
    {
        $this->name = $name;
        return $this;
    }

    /**
     * @return mixed
     */
    public function getEmail()
    {
        return $this->email;
    }

    /**
     * @param mixed $email
     * @return Owner
     */
    public function setEmail($email)
    {
        $this->email = $email;
        return $this;
    }

}