Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | class ImageRepository extends AbstractRepository |
||
10 | { |
||
11 | /** |
||
12 | * Returns all unique filename in DB |
||
13 | * |
||
14 | * @return string[] |
||
15 | */ |
||
16 | public function getFilenames(): array |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Returns all filename in DB and their id and sizes |
||
29 | * |
||
30 | * @return string[] |
||
31 | */ |
||
32 | public function getFilenamesForDimensionUpdate(): array |
||
46 |