| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public static function strip($value) |
||
| 26 | { |
||
| 27 | $originalValue = $value = trim($value, '/'); |
||
| 28 | |||
| 29 | $segments = static::all(); |
||
| 30 | |||
| 31 | foreach ($segments as $segment) { |
||
| 32 | if (0 === strpos($originalValue, $segment)) { |
||
| 33 | $value = substr($value, strlen($segment)); |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 37 | return trim($value, '/'); |
||
| 38 | } |
||
| 55 |