• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

FluidTYPO3 / vhs / 30001290505

23 Jul 2026 10:57AM UTC coverage: 70.309% (-1.7%) from 72.022%
30001290505

push

github

NamelessCoder
[TER] 8.0.0

4819 of 6854 relevant lines covered (70.31%)

6.54 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/Classes/Proxy/FileRepositoryProxy.php
1
<?php
2
namespace FluidTYPO3\Vhs\Proxy;
3

4
/*
5
 * This file is part of the FluidTYPO3/Vhs project under GPLv2 or later.
6
 *
7
 * For the full copyright and license information, please read the
8
 * LICENSE.md file that was distributed with this source code.
9
 */
10

11
use TYPO3\CMS\Core\Resource\FileRepository;
12
use TYPO3\CMS\Core\SingletonInterface;
13

14
class FileRepositoryProxy implements SingletonInterface
15
{
16
    private FileRepository $fileRepository;
17

18
    public function __construct(FileRepository $fileRepository)
19
    {
20
        $this->fileRepository = $fileRepository;
×
21
    }
22

23
    public function findByRelation(string $tableName, string $fieldName, int $uid, ?int $workspaceId = null): array
24
    {
25
        return $this->fileRepository->findByRelation($tableName, $fieldName, $uid, $workspaceId);
×
26
    }
27
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc