ParamDoc.php 1.34 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

	// will be set by creating class
	public $description;
	public $type;
	public $types;
31
	public $sourceFile;
32 33 34

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

42 43 44 45
		if ($reflector === null) {
			return;
		}

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

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