| 1 | <?php namespace Arcanedev\Assets\Pipes\Presets\React; |
||
| 13 | class CopyPresetDirectories |
||
| 14 | { |
||
| 15 | /* ----------------------------------------------------------------- |
||
| 16 | | Main Method |
||
| 17 | | ----------------------------------------------------------------- |
||
| 18 | */ |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array $passable |
||
| 22 | * @param \Closure $next |
||
| 23 | * |
||
| 24 | * @return mixed |
||
| 25 | */ |
||
| 26 | public function handle(array $passable, Closure $next) |
||
| 34 | |||
| 35 | /* ----------------------------------------------------------------- |
||
| 36 | | Other Methods |
||
| 37 | | ----------------------------------------------------------------- |
||
| 38 | */ |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Get the stubs directories. |
||
| 42 | * |
||
| 43 | * @param array $passable |
||
| 44 | * |
||
| 45 | * @return array |
||
| 46 | */ |
||
| 47 | protected function getStubs(array $passable) |
||
| 54 | } |
||
| 55 |