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

FluidTYPO3 / flux / 27757015719

18 Jun 2026 11:42AM UTC coverage: 89.162% (-3.5%) from 92.646%
27757015719

Pull #2288

github

web-flow
Merge f2162927f into 2614049c6
Pull Request #2288: [FEATURE] Prepare for v14 support

210 of 348 new or added lines in 56 files covered. (60.34%)

121 existing lines in 9 files now uncovered.

6228 of 6985 relevant lines covered (89.16%)

40.84 hits per line

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

0.0
/Classes/Proxy/ExtensionConfigurationProxy.php
1
<?php
2

3
namespace FluidTYPO3\Flux\Proxy;
4

5
use TYPO3\CMS\Core\Configuration\ExtensionConfiguration;
6

7
class ExtensionConfigurationProxy
8
{
9
    public function __construct(private ExtensionConfiguration $extensionConfiguration)
10
    {
NEW
11
    }
×
12

13
    public function get(string $extension, string $path = ''): mixed
14
    {
NEW
15
        return $this->extensionConfiguration->get($extension, $path);
×
16
    }
17

18
    public function set(string $extension, mixed $value = null): void
19
    {
NEW
20
        $this->extensionConfiguration->set($extension, $value);
×
21
    }
22

23
    public function setAll(array $configuration, bool $skipWriteIfLocalConfigurationDoesNotExist = false): void
24
    {
NEW
25
        $this->extensionConfiguration->setAll($configuration, $skipWriteIfLocalConfigurationDoesNotExist);
×
26
    }
27

28
    public function synchronizeExtConfTemplateWithLocalConfigurationOfAllExtensions(
29
        bool|string $skipOrExtensionKey = false
30
    ): void {
NEW
31
        $this->extensionConfiguration->synchronizeExtConfTemplateWithLocalConfiguration(
×
NEW
32
            $skipOrExtensionKey
×
NEW
33
        );
×
34
    }
35

36
    public function synchronizeExtConfTemplateWithLocalConfiguration(string $extensionKey): void
37
    {
NEW
38
        $this->extensionConfiguration->synchronizeExtConfTemplateWithLocalConfiguration($extensionKey);
×
39
    }
40
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc