From d056e339a4a1ca283d0830fa464f1690e715f593 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Fri, 11 Aug 2023 08:34:47 +0000 Subject: [PATCH] Apply fixes from StyleCI --- .../Concerns/InteractsWithLaravel.php | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/framework/core/src/Foundation/Concerns/InteractsWithLaravel.php b/framework/core/src/Foundation/Concerns/InteractsWithLaravel.php index 8c9fe6887..30b833c4b 100644 --- a/framework/core/src/Foundation/Concerns/InteractsWithLaravel.php +++ b/framework/core/src/Foundation/Concerns/InteractsWithLaravel.php @@ -1,5 +1,12 @@ joinPaths( - $this->joinPaths($this->paths->base, 'bootstrap'), $path + $this->joinPaths($this->paths->base, 'bootstrap'), + $path ); } @@ -59,7 +67,8 @@ trait InteractsWithLaravel public function configPath($path = ''): string { return $this->joinPaths( - $this->joinPaths($this->paths->storage, 'config'), $path + $this->joinPaths($this->paths->storage, 'config'), + $path ); } @@ -69,7 +78,8 @@ trait InteractsWithLaravel public function databasePath($path = ''): string { return $this->joinPaths( - $this->joinPaths($this->paths->base, 'database'), $path + $this->joinPaths($this->paths->base, 'database'), + $path ); } @@ -79,7 +89,8 @@ trait InteractsWithLaravel public function langPath($path = ''): string { return $this->joinPaths( - $this->joinPaths($this->paths->base, 'lang'), $path + $this->joinPaths($this->paths->base, 'lang'), + $path ); } @@ -89,7 +100,8 @@ trait InteractsWithLaravel public function resourcePath($path = ''): string { return $this->joinPaths( - $this->joinPaths($this->paths->base, 'resources'), $path + $this->joinPaths($this->paths->base, 'resources'), + $path ); }