Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| Lungfish | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| isCapableOfWalkingOnWater | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | namespace Apie\IntegrationTests\Apie\TypeDemo\Entities; |
| 3 | |
| 4 | final class Lungfish extends Fish |
| 5 | { |
| 6 | public function isCapableOfWalkingOnWater(): bool |
| 7 | { |
| 8 | return true; |
| 9 | } |
| 10 | } |