Total Complexity | 6 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 8 | ||
Bugs | 0 | Features | 5 |
1 | <?php |
||
8 | class LaravelAdminCleaner extends BaseCleaner |
||
9 | { |
||
10 | const ADMIN_CLASS = 'Encore\Admin\Admin'; |
||
11 | |||
12 | private $reflection; |
||
13 | |||
14 | protected $properties = [ |
||
15 | 'deferredScript' => [], |
||
16 | 'script' => [], |
||
17 | 'style' => [], |
||
18 | 'css' => [], |
||
19 | 'js' => [], |
||
20 | 'html' => [], |
||
21 | 'headerJs' => [], |
||
22 | 'manifest' => 'vendor/laravel-admin/minify-manifest.json', |
||
23 | 'manifestData' => [], |
||
24 | 'extensions' => [], |
||
25 | 'minifyIgnores' => [], |
||
26 | 'metaTitle' => null, |
||
27 | 'favicon' => null, |
||
28 | 'bootingCallbacks' => [], |
||
29 | 'bootedCallbacks' => [], |
||
30 | ]; |
||
31 | |||
32 | public function __construct(Container $currentApp, Container $snapshotApp) |
||
36 | } |
||
37 | |||
38 | public function clean() |
||
53 | } |
||
54 | } |