You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1013 B
49 lines
1013 B
<?php |
|
/** |
|
* @link http://www.yiiframework.com/ |
|
* @copyright Copyright (c) 2008 Yii Software LLC |
|
* @license http://www.yiiframework.com/license/ |
|
*/ |
|
|
|
namespace yii\apidoc\models; |
|
|
|
class TraitDoc extends BaseDoc |
|
{ |
|
// classes using the trait |
|
public $usedByClasses = []; |
|
|
|
public $traits = []; |
|
|
|
public $properties = []; |
|
public $methods = []; |
|
|
|
|
|
/** |
|
* @param \phpDocumentor\Reflection\TraitReflector $reflector |
|
* @param Context $context |
|
* @param array $config |
|
*/ |
|
public function __construct($reflector, $context = null, $config = []) |
|
{ |
|
// base properties |
|
$this->name = ltrim($reflector->getName(), '\\'); |
|
$this->startLine = $reflector->getNode()->getAttribute('startLine'); |
|
$this->endLine = $reflector->getNode()->getAttribute('endLine'); |
|
|
|
foreach($reflector->getTraits() as $trait) { |
|
$this->traits[] = ltrim($trait, '\\'); |
|
} |
|
|
|
// TODO methods |
|
|
|
// TODO properties |
|
|
|
// TODO docblock |
|
|
|
if ($context !== null) { |
|
$context->addTrait($this); |
|
} |
|
|
|
parent::__construct($config); |
|
} |
|
} |