예제 #1
0
 /**
  * Exports the given reflection object to the parent XML element.
  *
  * This method creates a new child element on the given parent XML element
  * and takes the properties of the Reflection argument and sets the
  * elements and attributes on the child.
  *
  * If a child DOMElement is provided then the properties and attributes are
  * set on this but the child element is not appended onto the parent. This
  * is the responsibility of the invoker. Essentially this means that the
  * $parent argument is ignored in this case.
  *
  * @param \DOMElement       $parent   The parent element to augment.
  * @param ArgumentReflector $argument The data source.
  * @param \DOMElement       $child    Optional: child element to use instead
  *     of creating a new one on the $parent.
  *
  * @return void
  */
 public function export(\DOMElement $parent, $argument, \DOMElement $child = null)
 {
     if (!$child) {
         $child = new \DOMElement('argument');
         $parent->appendChild($child);
     }
     $child->setAttribute('line', $argument->getLineNumber());
     $child->appendChild(new \DOMElement('name', $argument->getName()));
     $child->appendChild(new \DOMElement('default'))->appendChild(new \DOMText($argument->getDefault()));
     $type = $argument->getType();
     $child->appendChild(new \DOMElement('type', $type ? $type : ''));
 }
예제 #2
0
 /**
  * Exports the given reflection object to the parent XML element.
  *
  * This method creates a new child element on the given parent XML element
  * and takes the properties of the Reflection argument and sets the
  * elements and attributes on the child.
  *
  * If a child DOMElement is provided then the properties and attributes are
  * set on this but the child element is not appended onto the parent. This
  * is the responsibility of the invoker. Essentially this means that the
  * $parent argument is ignored in this case.
  *
  * @param \DOMElement                        $parent   The parent element to
  *     augment.
  * @param \phpDocumentor\Reflection\FunctionReflector\ArgumentReflector $argument The data source.
  * @param \DOMElement                        $child    Optional: child
  *     element to use instead of creating a new one on the $parent.
  *
  * @return void
  */
 public function export(\DOMElement $parent, $argument, \DOMElement $child = null)
 {
     if (!$child) {
         $child = new \DOMElement('argument');
         $parent->appendChild($child);
     }
     $child->setAttribute('line', $argument->getLineNumber());
     $child->appendChild(new \DOMElement('name', $argument->getName()));
     $default = new \DOMElement('default');
     $child->appendChild($default);
     /** @var \DOMDocument $dom_document */
     $dom_document = $child->ownerDocument;
     $default->appendChild($dom_document->createCDATASection($argument->getDefault()));
     $child->appendChild(new \DOMElement('type', $argument->getType()));
 }
예제 #3
0
 /**
  * @param \phpDocumentor\Reflection\FunctionReflector\ArgumentReflector $reflector
  * @param Context $context
  * @param array $config
  */
 public function __construct($reflector = null, $context = null, $config = [])
 {
     parent::__construct($config);
     if ($reflector === null) {
         return;
     }
     $this->name = $reflector->getName();
     $this->typeHint = $reflector->getType();
     $this->isOptional = $reflector->getDefault() !== null;
     // bypass $reflector->getDefault() for short array syntax
     if ($reflector->getNode()->default) {
         $this->defaultValue = PrettyPrinter::getRepresentationOfValue($reflector->getNode()->default);
     }
     $this->isPassedByReference = $reflector->isByRef();
 }
 /**
  * Creates a Descriptor from the provided data.
  *
  * @param ArgumentReflector $data
  * @param ParamDescriptor[] $params
  *
  * @return ArgumentDescriptor
  */
 public function create($data, $params = array())
 {
     $argumentDescriptor = new ArgumentDescriptor();
     $argumentDescriptor->setName($data->getName());
     $argumentDescriptor->setTypes($data->getType() ? array($data->getType()) : array());
     /** @var ParamDescriptor $tag */
     foreach ($params as $tag) {
         if ($tag->getVariableName() == $data->getName()) {
             $argumentDescriptor->setDescription($tag->getDescription());
             $types = $tag->getTypes() ?: array($data->getType() ?: 'mixed');
             $argumentDescriptor->setTypes($types);
         }
     }
     $argumentDescriptor->setDefault($data->getDefault());
     return $argumentDescriptor;
 }