class CopyrightInformation
Hierarchy
- class \PharIo\Manifest\CopyrightInformation
Expanded class hierarchy of CopyrightInformation
File
-
vendor/
phar-io/ manifest/ src/ values/ CopyrightInformation.php, line 13
Namespace
PharIo\ManifestView source
class CopyrightInformation {
/** @var AuthorCollection */
private $authors;
/** @var License */
private $license;
public function __construct(AuthorCollection $authors, License $license) {
$this->authors = $authors;
$this->license = $license;
}
public function getAuthors() : AuthorCollection {
return $this->authors;
}
public function getLicense() : License {
return $this->license;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
CopyrightInformation::$authors | private | property | @var AuthorCollection |
CopyrightInformation::$license | private | property | @var License |
CopyrightInformation::getAuthors | public | function | |
CopyrightInformation::getLicense | public | function | |
CopyrightInformation::__construct | public | function |