Total Complexity | 5 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class ClassLike |
||
11 | { |
||
12 | /** |
||
13 | * @var Vertex |
||
14 | */ |
||
15 | private $vertex; |
||
16 | |||
17 | public function __construct(Vertex $vertex) |
||
18 | { |
||
19 | $this->vertex = $vertex; |
||
20 | } |
||
21 | |||
22 | public function getVertex(): Vertex |
||
25 | } |
||
26 | |||
27 | public function getName(): string |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @return DepsInternal[] |
||
34 | */ |
||
35 | public function getDepsInternalTag(): array |
||
36 | { |
||
37 | return $this->vertex->getAttribute(ExtraPhpDocTagResolver::DEPS_INTERNAL); |
||
|
|||
38 | } |
||
39 | |||
40 | public function __toString(): string |
||
43 | } |
||
44 | } |
||
45 |