Seditio Source
Root |
./othercms/phpBB3/vendor/zendframework/zend-code/src/Reflection/DocBlock/Tag/GenericTag.php
<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace Zend\Code\Reflection\DocBlock\Tag;

use
Zend\Code\Generic\Prototype\PrototypeGenericInterface;

use function
explode;
use function
trim;

class
GenericTag implements TagInterface, PrototypeGenericInterface
{
   
/**
     * @var string
     */
   
protected $name;

   
/**
     * @var string
     */
   
protected $content;

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

   
/**
     * @var array
     */
   
protected $values = [];

   
/**
     * @param  string $contentSplitCharacter
     */
   
public function __construct($contentSplitCharacter = ' ')
    {
       
$this->contentSplitCharacter = $contentSplitCharacter;
    }

   
/**
     * @param  string $tagDocBlockLine
     * @return void
     */
   
public function initialize($tagDocBlockLine)
    {
       
$this->parse($tagDocBlockLine);
    }

   
/**
     * Get annotation tag name
     *
     * @return string
     */
   
public function getName()
    {
        return
$this->name;
    }

   
/**
     * @param  string $name
     */
   
public function setName($name)
    {
       
$this->name = $name;
    }

   
/**
     * @return string
     */
   
public function getContent()
    {
        return
$this->content;
    }

   
/**
     * @param  int $position
     * @return string
     */
   
public function returnValue($position)
    {
        return
$this->values[$position];
    }

   
/**
     * Serialize to string
     *
     * Required by Reflector
     *
     * @todo   What should this do?
     * @return string
     */
   
public function __toString()
    {
        return
'DocBlock Tag [ * @' . $this->name . ' ]' . "\n";
    }

   
/**
     * @param  string $docBlockLine
     */
   
protected function parse($docBlockLine)
    {
       
$this->content = trim($docBlockLine);
       
$this->values = explode($this->contentSplitCharacter, $docBlockLine);
    }
}