| Total Complexity | 5 | 
| Total Lines | 38 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 5 | class Helper | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * Append trail slashes | ||
| 9 | * | ||
| 10 | * @param string $path the path to append trail slashes | ||
| 11 | * @param string $origin the origin path with trail slashes | ||
| 12 | * | ||
| 13 | * @return string | ||
| 14 | */ | ||
| 15 | public static function appendSlashes($path, $origin) | ||
| 23 | } | ||
| 24 | |||
| 25 | /** | ||
| 26 | * Get trailing slashes | ||
| 27 | * | ||
| 28 | * @param string $path | ||
| 29 | * | ||
| 30 | * @return string | ||
| 31 | */ | ||
| 32 | public static function getTrailingSlashes($path) | ||
| 45 |