Test Failed
Push — master ( a58c94...1bcec0 )
by Brent
03:26
created

DefaultParser::parse()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Brendt\Stitcher\Parser;
4
5
class DefaultParser implements Parser {
6
7
    /**
8
     * Parse a path into usable data.
9
     *
10
     * @param $path
11
     *
12
     * @return mixed
13
     */
14
    public function parse($path) {
15
        return $path;
16
    }
17
}
18