Chris@2: , Sebastian Heuer , Sebastian Bergmann Chris@2: * Chris@2: * For the full copyright and license information, please view the LICENSE Chris@2: * file that was distributed with this source code. Chris@2: */ Chris@2: Chris@2: namespace PharIo\Manifest; Chris@2: Chris@2: class CopyrightElement extends ManifestElement { Chris@2: public function getAuthorElements() { Chris@2: return new AuthorElementCollection( Chris@2: $this->getChildrenByName('author') Chris@2: ); Chris@2: } Chris@2: Chris@2: public function getLicenseElement() { Chris@2: return new LicenseElement( Chris@2: $this->getChildByName('license') Chris@2: ); Chris@2: } Chris@2: }