1 | <?php |
||
11 | class FileStandaloneRepository extends AbstractRawRepository |
||
12 | { |
||
13 | /** |
||
14 | * Find one by relative file path. |
||
15 | * |
||
16 | * @param string $relativeFilePath |
||
17 | * |
||
18 | * @return array|null |
||
19 | */ |
||
20 | public function findOneByRelativeFilePath(string $relativeFilePath) |
||
33 | |||
34 | /** |
||
35 | * Get the tablename. |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | protected function getTableName(): string |
||
43 | } |
||
44 |