| 1 | <?php |
||
| 8 | class LaravelLangBundlerCommand extends Command |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Filesystem instance. |
||
| 12 | * |
||
| 13 | * @var \Illuminate\Filesystem\Filesystem |
||
| 14 | */ |
||
| 15 | protected $filesystem; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Set up command dependencies. |
||
| 19 | */ |
||
| 20 | protected function setUp() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Build path from path array. |
||
| 27 | * |
||
| 28 | * @param array $pathArray |
||
| 29 | * @param string $path |
||
| 30 | * |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | protected function buildPath($pathArray, $path) |
||
| 45 | } |
||
| 46 |