From eceb6874716f199c165b5dbbddf91dd2bc743b7a Mon Sep 17 00:00:00 2001 From: Jonny Nott Date: Tue, 11 Mar 2025 14:57:30 +0000 Subject: [PATCH] force dependency injection in LfmPath constructor by removing null default --- src/LfmPath.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LfmPath.php b/src/LfmPath.php index 275873ca..8eb52daa 100644 --- a/src/LfmPath.php +++ b/src/LfmPath.php @@ -20,7 +20,7 @@ class LfmPath private $helper; - public function __construct(Lfm $lfm = null) + public function __construct(Lfm $lfm) { $this->helper = $lfm; }