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

DevCacheManager::has()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
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