Passed
Push — master ( 4bc322...e35e92 )
by Peter
04:39
created

DevCacheManager   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A has() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace AbterPhp\Framework\Assets;
6
7
use League\Flysystem\FileExistsException;
8
use League\Flysystem\FilesystemInterface;
9
10
class DevCacheManager extends CacheManager
11
{
12
    /**
13
     * @param string $path
14
     * @param string $groupName
15
     *
16
     * @return bool
17
     */
18
    public function has(string $path): bool
19
    {
20
        return false;
21
    }
22
}
23