EventDoc.php 1.33 KB
Newer Older
1 2 3 4 5 6 7 8 9
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\apidoc\models;

10 11
use phpDocumentor\Reflection\DocBlock\Tag\ReturnTag;

12
/**
13
 * Represents API documentation information for an `event`.
14 15 16 17
 *
 * @author Carsten Brandt <mail@cebe.cc>
 * @since 2.0
 */
18
class EventDoc extends ConstDoc
19
{
20 21
    public $type;
    public $types;
22

23

24 25
    /**
     * @param \phpDocumentor\Reflection\ClassReflector\ConstantReflector $reflector
26 27
     * @param Context $context
     * @param array $config
28 29 30 31
     */
    public function __construct($reflector = null, $context = null, $config = [])
    {
        parent::__construct($reflector, $context, $config);
32

33 34 35
        if ($reflector === null) {
            return;
        }
36

37 38 39 40 41 42
        foreach ($this->tags as $i => $tag) {
            if ($tag->getName() == 'event') {
                $eventTag = new ReturnTag('event', $tag->getContent(), $tag->getDocBlock(), $tag->getLocation());
                $this->type = $eventTag->getType();
                $this->types = $eventTag->getTypes();
                $this->description = ucfirst($eventTag->getDescription());
43
                $this->shortDescription = BaseDoc::extractFirstSentence($this->description);
44 45 46 47
                unset($this->tags[$i]);
            }
        }
    }
AlexGx committed
48
}