Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class SomeDependency extends Base |
||
9 | { |
||
10 | public function getType(): string |
||
11 | { |
||
12 | return DependencyGraph::TYPE_SOME_DEPENDENCY; |
||
13 | } |
||
14 | |||
15 | public function isEqual(Base $that): bool |
||
16 | { |
||
17 | return $this->getType() === $that->getType(); |
||
18 | } |
||
19 | |||
20 | public function toString(): string |
||
23 | } |
||
24 | } |
||
25 |