1 | <?php namespace Arcanedev\Assets\Pipes\Init; |
||
12 | class MoveDefaultLaravelAssets extends AbstractPipe |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Main Method |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * @param array $passable |
||
21 | * @param \Closure $next |
||
22 | * |
||
23 | * @return mixed |
||
24 | */ |
||
25 | public function handle(array $passable, Closure $next) |
||
33 | |||
34 | /* ----------------------------------------------------------------- |
||
35 | | Other Methods |
||
36 | | ----------------------------------------------------------------- |
||
37 | */ |
||
38 | |||
39 | /** |
||
40 | * Get the resources paths. |
||
41 | * |
||
42 | * @param array $passable |
||
43 | * |
||
44 | * @return array |
||
45 | */ |
||
46 | protected function getResources(array $passable) |
||
53 | } |
||
54 |