From dcb56051ea54281c152e81340fdcdb1fe8d96cc5 Mon Sep 17 00:00:00 2001 From: Thomas Alrek Date: Mon, 17 Apr 2023 13:25:09 +0200 Subject: [PATCH] Fix code styling --- src/View/Components/MixBase.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/View/Components/MixBase.php b/src/View/Components/MixBase.php index 1e9f1b6..c57de51 100644 --- a/src/View/Components/MixBase.php +++ b/src/View/Components/MixBase.php @@ -53,9 +53,7 @@ public function __construct($manifestDirectory = '', $integrity = null, $crossor $this->files = collect(json_decode(file_get_contents($manifestPath), true)) ->keys() ->groupBy(function ($key) { - - preg_match('/\.([^\.]+)$/', $key, $matches); - + preg_match('/\.([^\.]+)$/', $key, $matches); return $matches[1]; }); }