Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CopyrightInformation.php

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\Manifest
View 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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal