Exemplo n.º 1
0
 protected function prepareAnnotations(DocBlock $block)
 {
     if (!$block->hasDescription()) {
         $block->setInline(true);
     }
     if ($block->hasAnnotations()) {
         $block->unshiftAnnotation(null);
     }
     $block->unshiftAnnotation('var', $this->type);
 }
Exemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 protected function prepareObjDoc(DocBlock $doc)
 {
     if (null !== ($parent = $this->getParent())) {
         $resolver = $this->getImportResolver();
         $doc->unshiftAnnotation('see', $resolver->hasAlias($parent) ? $resolver->getAlias($parent) : $resolver->getImport($parent));
     }
     $doc->unshiftAnnotation($this->getType(), $this->getName());
 }
Exemplo n.º 3
0
 /**
  * {@inheritdoc}
  */
 protected function prepareObjDoc(DocBlock $block)
 {
     $block->unshiftAnnotation($this->getType(), $this->getName());
 }
Exemplo n.º 4
0
 /**
  * {@inheritdoc}
  */
 protected function prepareObjDoc(DocBlock $doc)
 {
     $resolver = $this->getImportResolver();
     if (!empty($this->interfaces)) {
         foreach (array_reverse($this->interfaces) as $interface) {
             $name = $resolver->hasAlias($interface) ? $resolver->getAlias($interface) : $interface;
             $doc->unshiftAnnotation('see', self::trimNs($name));
         }
     }
     if ($this->parent) {
         $name = $resolver->hasAlias($this->getParent()) ? $resolver->getAlias($this->getParent()) : $this->getParent();
         $doc->unshiftAnnotation('see', self::trimNs($name));
     }
     $doc->unshiftAnnotation($this->getType(), $this->getName());
 }