CustomServicesPhpCache   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
c 0
b 0
f 0
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getCacheFilename() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Gacela\Framework\ClassResolver\Cache;
6
7
use Override;
8
9
final class CustomServicesPhpCache extends AbstractPhpFileCache
10
{
11
    public const FILENAME = 'gacela-custom-services.php';
12
13
    #[Override]
14
    protected function getCacheFilename(): string
15
    {
16
        return self::FILENAME;
17
    }
18
}
19