From bd24b63abf8bf2079b7ca6c2d0b39c863a9b4b73 Mon Sep 17 00:00:00 2001 From: laravel-ide-helper Date: Wed, 1 Jan 2025 09:40:57 +0000 Subject: [PATCH] composer fix-style --- src/Macro.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Macro.php b/src/Macro.php index e078cb2..42e409d 100644 --- a/src/Macro.php +++ b/src/Macro.php @@ -83,7 +83,7 @@ class Macro extends Method $this->phpdoc->appendTag(Tag::createInstance("@return {$type}")); } - $class = ltrim($this->declaringClassName, "\\"); + $class = ltrim($this->declaringClassName, '\\'); if (!$this->phpdoc->hasTag('return') && isset($this->macroDefaults[$class])) { $type = $this->macroDefaults[$class]; $this->phpdoc->appendTag(Tag::createInstance("@return {$type}"));