Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 62.5% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | trait Description |
||
6 | { |
||
7 | use PhpDocable; |
||
8 | |||
9 | /** @var string */ |
||
10 | private $description; |
||
11 | |||
12 | /** |
||
13 | * @return string |
||
14 | */ |
||
15 | public function getDescription() |
||
16 | { |
||
17 | return $this->description; |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @param string $description |
||
22 | * @return $this |
||
23 | */ |
||
24 | public function setDescription($description) |
||
28 | } |
||
29 | 4 | ||
30 | 4 | private function renderDescriptionAsPhpDoc() |
|
40 | } |