/var/www/vhosts/ihelp.ro/httpdocs/vendor/phar-io/manifest/src/values
NameSizeModeActions
Application.php4740644editdlrm
ApplicationName.php11040644editdlrm
Author.php9200644editdlrm
AuthorCollection.php9020644editdlrm
AuthorCollectionIterator.php10450644editdlrm
BundledComponent.php8100644editdlrm
BundledComponentCollection.php10320644editdlrm
BundledComponentCollectionIterator.php11550644editdlrm
CopyrightInformation.php8300644editdlrm
Email.php8250644editdlrm
Extension.php14000644editdlrm
Library.php4660644editdlrm
License.php7340644editdlrm
Manifest.php25740644editdlrm
PhpExtensionRequirement.php6520644editdlrm
PhpVersionRequirement.php7740644editdlrm
Requirement.php3940644editdlrm
RequirementCollection.php9670644editdlrm
RequirementCollectionIterator.php11000644editdlrm
Type.php11570644editdlrm
Url.php8800644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/phar-io/manifest/src/values/Author.php (920B)
, Sebastian Heuer , Sebastian Bergmann * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PharIo\Manifest; class Author { /** @var string */ private $name; /** @var Email */ private $email; public function __construct(string $name, Email $email) { $this->name = $name; $this->email = $email; } public function asString(): string { return \sprintf( '%s <%s>', $this->name, $this->email->asString() ); } public function getName(): string { return $this->name; } public function getEmail(): Email { return $this->email; } }