Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
| NoRelationEmbedded | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
| hasEmbeddedRelation | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| followField | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | namespace Apie\Serializer\Relations; |
| 3 | |
| 4 | final class NoRelationEmbedded implements EmbedRelationInterface |
| 5 | { |
| 6 | public function hasEmbeddedRelation(): bool |
| 7 | { |
| 8 | return false; |
| 9 | } |
| 10 | public function followField(string $fieldName): EmbedRelationInterface |
| 11 | { |
| 12 | return $this; |
| 13 | } |
| 14 | } |