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

DefaultParser   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A parse() 0 3 1
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