Conditions | 4 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
54 | 144 | public function applyPathPrefix($path) |
|
55 | { |
||
56 | 144 | $path = ltrim($path, '\\/'); |
|
57 | |||
58 | 144 | if (strlen($path) === 0) { |
|
59 | 12 | return $this->getPathPrefix() ?: ''; |
|
60 | } |
||
61 | |||
62 | 135 | if ($prefix = $this->getPathPrefix()) { |
|
63 | 132 | $path = $prefix . $path; |
|
64 | 132 | } |
|
65 | |||
66 | 135 | return $path; |
|
67 | } |
||
68 | |||
87 |