From bc55d311438684a90e5fade10043a092e2bc8378 Mon Sep 17 00:00:00 2001 From: Mitul Golakiya Date: Sun, 13 Sep 2020 10:29:14 +0530 Subject: [PATCH] style: Apply fixes from StyleCI (#4) Co-authored-by: Mitul Golakiya --- src/AdminLTEPreset.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/AdminLTEPreset.php b/src/AdminLTEPreset.php index 4edce20..b6be861 100644 --- a/src/AdminLTEPreset.php +++ b/src/AdminLTEPreset.php @@ -30,13 +30,13 @@ public function __construct(Command $command) protected static function updatePackageArray(array $packages) { return [ - 'bootstrap' => '^4.0.0', - 'jquery' => '^3.2', - 'popper.js' => '^1.12', - 'admin-lte' => '^3.0', - 'sass' => '^1.15.2', - 'sass-loader' => '^8.0.0', - ] + $packages; + 'bootstrap' => '^4.0.0', + 'jquery' => '^3.2', + 'popper.js' => '^1.12', + 'admin-lte' => '^3.0', + 'sass' => '^1.15.2', + 'sass-loader' => '^8.0.0', + ] + $packages; } public function install() @@ -65,7 +65,7 @@ protected static function updateWebpackConfiguration() */ protected static function updateSass() { - (new Filesystem)->ensureDirectoryExists(resource_path('sass')); + (new Filesystem())->ensureDirectoryExists(resource_path('sass')); copy(__DIR__.'/../adminlte-stubs/bootstrap/_variables.scss', resource_path('sass/_variables.scss')); copy(__DIR__.'/../adminlte-stubs/bootstrap/app.scss', resource_path('sass/app.scss'));