ParamDoc.php 1.28 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
{
	public $name;
22
	public $typeHint;
23 24 25
	public $isOptional;
	public $defaultValue;
	public $isPassedByReference;
26 27 28 29 30 31 32 33 34 35

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

	/**
	 * @param \phpDocumentor\Reflection\FunctionReflector\ArgumentReflector $reflector
	 * @param array $config
	 */
36
	public function __construct($reflector = null, $config = [])
37 38 39
	{
		parent::__construct($config);

40 41 42 43
		if ($reflector === null) {
			return;
		}

44 45 46
		$this->name = $reflector->getName();
		$this->typeHint = $reflector->getType();
		$this->isOptional = $reflector->getDefault() !== null;
Carsten Brandt committed
47 48 49 50 51

		// bypass $reflector->getDefault() for short array syntax
		if ($reflector->getNode()->default) {
			$this->defaultValue = PrettyPrinter::getRepresentationOfValue($reflector->getNode()->default);
		}
52 53
		$this->isPassedByReference = $reflector->isByRef();
	}
54
}