Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
OlzGetEntityTypedEndpoint | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace Olz\Api; |
4 | |
5 | /** |
6 | * @template Id |
7 | * @template Data |
8 | * @template CustomRequest = never |
9 | * @template CustomResponse = never |
10 | * |
11 | * @phpstan-import-type OlzMetaData from OlzEntityEndpointTrait |
12 | * |
13 | * @extends OlzTypedEndpoint< |
14 | * array{ |
15 | * id: Id, |
16 | * custom?: CustomRequest, |
17 | * }, |
18 | * array{ |
19 | * id: Id, |
20 | * meta: OlzMetaData, |
21 | * data: Data, |
22 | * custom?: CustomResponse, |
23 | * } |
24 | * > |
25 | */ |
26 | abstract class OlzGetEntityTypedEndpoint extends OlzTypedEndpoint { |
27 | use OlzEntityEndpointTrait; |
28 | } |