Lines
50.00%
1 / 2
Functions and Methods
50.00%
1 / 2
Classes and Traits
0.00%
0 / 1
| Name | Lines | Functions and Methods | CRAP | Classes and Traits | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| ExampleClass | 50.00% | 1 / 2 | 50.00% | 1 / 2 | 2.50 | 0.00% | 0 / 1 | |||
| doSomething | 100.00% | 1 / 1 | 100.00% | 1 / 1 | 1 | |||||
| doMore | 0.00% | 0 / 1 | 0.00% | 0 / 1 | 2 | |||||
| 1 | <?php declare(strict_types=1); | |
| 2 | ||
| 3 | namespace Example; | |
| 4 | ||
| 5 | class ExampleClass | |
| 6 | { | |
| 7 | public function doSomething(): void | |
| 8 | { | |
| 9 | echo 'hello'; | |
| 10 | } | |
| 11 | ||
| 12 | public function doMore(): int | |
| 13 | { | |
| 14 | return 42; | |
| 15 | } | |
| 16 | } |