1 | <?php |
||
13 | class ImageTransformationRepository implements ImageTransformationRepositoryInterface |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * Create |
||
18 | * |
||
19 | * @param array $attributes |
||
20 | * @param ImageRecord $image_record that this belongs to |
||
21 | * @return ImageTransformationRecord |
||
22 | */ |
||
23 | public function create(array $attributes, ImageRecord $image_record): ImageTransformationRecord |
||
31 | |||
32 | /** |
||
33 | * Find By Id |
||
34 | * |
||
35 | * @param $id |
||
36 | * @return ImageTransformationRecord |
||
37 | */ |
||
38 | public function findById($id): ImageTransformationRecord |
||
42 | } |