Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | class CollectionResponse extends AbstractMediaResponse { |
||
29 | |||
30 | use IntegerPageTrait; |
||
31 | use IntegerPerPageTrait; |
||
32 | use IntegerTotalResultsTrait; |
||
33 | use StringIdTrait; |
||
34 | use StringNextPageTrait; |
||
35 | use StringPrevPageTrait; |
||
36 | |||
37 | /** |
||
38 | * Constructor. |
||
39 | */ |
||
40 | public function __construct() { |
||
41 | parent::__construct(); |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * {@inheritDoc} |
||
46 | */ |
||
47 | public function addMedia(AbstractMedia $media): AbstractMediaResponse { |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * {@inheritDoc} |
||
53 | */ |
||
54 | public function getMedias(): array { |
||
56 | } |
||
57 | } |
||
58 |