Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-code/src/Reflection/DocBlock/Tag/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-code/src/Reflection/DocBlock/Tag/LicenseTag.php

<?php

namespace Laminas\Code\Reflection\DocBlock\Tag;

use function preg_match;
use function trim;

class LicenseTag implements TagInterface
{
    /** @var string|null */
    protected $url;

    /** @var string|null */
    protected $licenseName;

    /** @return 'license' */
    public function getName()
    {
        return 'license';
    }

    /** @inheritDoc */
    public function initialize($content)
    {
        $match = [];

        if (! preg_match('#^([\S]*)(?:\s+(.*))?$#m', $content, $match)) {
            return;
        }

        if ($match[1] !== '') {
            $this->url = trim($match[1]);
        }

        if (isset($match[2]) && $match[2] !== '') {
            $this->licenseName = $match[2];
        }
    }

    /** @return null|string */
    public function getUrl()
    {
        return $this->url;
    }

    /** @return null|string */
    public function getLicenseName()
    {
        return $this->licenseName;
    }

    /** @return non-empty-string */
    public function __toString()
    {
        return 'DocBlock Tag [ * @' . $this->getName() . ' ]' . "\n";
    }
}