| 1 | <?php namespace Arcanedev\Composer\Utilities; |
||
| 9 | class Util |
||
| 10 | { |
||
| 11 | /* ----------------------------------------------------------------- |
||
| 12 | | Main Methods |
||
| 13 | | ----------------------------------------------------------------- |
||
| 14 | */ |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Fix a collection of paths that are relative to this package to be |
||
| 18 | * relative to the base package. |
||
| 19 | * |
||
| 20 | * @param string $base |
||
| 21 | * @param array $paths |
||
| 22 | * |
||
| 23 | * @return array |
||
| 24 | */ |
||
| 25 | 9 | public static function fixRelativePaths($base, array $paths) |
|
| 36 | } |
||
| 37 |