ANodes   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
dl 0
loc 8
ccs 2
cts 2
cp 1
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getStorageSeparator() 0 3 1
1
<?php
2
3
namespace kalanis\kw_files\Processing\Storage\Nodes;
4
5
6
use kalanis\kw_files\Interfaces\IProcessNodes;
7
use kalanis\kw_files\Traits\TLang;
8
use kalanis\kw_paths\Extras\TPathTransform;
9
10
11
/**
12
 * Class ANodes
13
 * @package kalanis\kw_files\Processing\Storage\Nodes
14
 * Process nodes in storages - deffer when you can access them directly or must be a middleman there
15
 */
16
abstract class ANodes implements IProcessNodes
17
{
18
    use TLang;
19
    use TPathTransform;
20
21 20
    protected function getStorageSeparator(): string
22
    {
23 20
        return DIRECTORY_SEPARATOR;
24
    }
25
}
26