Passed
Push — master ( 1a6375...8f4058 )
by Petr
08:21 queued 05:12
created

XFLocalVolume22::pathOnVolume()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace tests\ChecksTests;
4
5
6
use kalanis\kw_mime\Check\LocalVolume2;
7
use kalanis\kw_paths\PathsException;
8
9
10
class XFLocalVolume22 extends LocalVolume2
11
{
12
    /**
13
     * @param string[] $path
14
     * @throws PathsException
15
     * @return string
16
     */
17
    protected function pathOnVolume(array $path): string
18
    {
19
        throw new PathsException('mock 2');
20
    }
21
}
22