| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 60% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | trait Description |
||
| 9 | { |
||
| 10 | use PhpDocable; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $description; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function getDescription() |
||
| 19 | { |
||
| 20 | return $this->description; |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $description |
||
| 25 | * @return $this |
||
| 26 | */ |
||
| 27 | 3 | public function setDescription($description) |
|
| 31 | } |
||
| 32 | |||
| 33 | 2 | private function renderDescriptionAsPhpDoc() |
|
| 43 | } |