ParamDoc.php 1.47 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;

Carsten Brandt committed
10
use yii\apidoc\helpers\PrettyPrinter;
11 12
use yii\base\Object;

13
/**
14
 * Represents API documentation information for a [[FunctionDoc|function]] or [[MethodDoc|method]] `param`.
15 16 17 18
 *
 * @author Carsten Brandt <mail@cebe.cc>
 * @since 2.0
 */
19
class ParamDoc extends Object
20
{
21 22 23 24 25 26 27 28 29 30 31 32 33 34
    public $name;
    public $typeHint;
    public $isOptional;
    public $defaultValue;
    public $isPassedByReference;

    // will be set by creating class
    public $description;
    public $type;
    public $types;
    public $sourceFile;

    /**
     * @param \phpDocumentor\Reflection\FunctionReflector\ArgumentReflector $reflector
35 36
     * @param Context $context
     * @param array $config
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
     */
    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();
    }
AlexGx committed
56
}