Chris@14: , Sebastian Heuer , Sebastian Bergmann Chris@14: * Chris@14: * For the full copyright and license information, please view the LICENSE Chris@14: * file that was distributed with this source code. Chris@14: */ Chris@14: Chris@14: namespace PharIo\Manifest; Chris@14: Chris@14: class CopyrightInformation { Chris@14: /** Chris@14: * @var AuthorCollection Chris@14: */ Chris@14: private $authors; Chris@14: Chris@14: /** Chris@14: * @var License Chris@14: */ Chris@14: private $license; Chris@14: Chris@14: public function __construct(AuthorCollection $authors, License $license) { Chris@14: $this->authors = $authors; Chris@14: $this->license = $license; Chris@14: } Chris@14: Chris@14: /** Chris@14: * @return AuthorCollection Chris@14: */ Chris@14: public function getAuthors() { Chris@14: return $this->authors; Chris@14: } Chris@14: Chris@14: /** Chris@14: * @return License Chris@14: */ Chris@14: public function getLicense() { Chris@14: return $this->license; Chris@14: } Chris@14: }