Trim strings and bump reflection docblock (#1721)

* Update version restraint

* UPdate snapshots

* update strings
This commit is contained in:
Barry vd. Heuvel
2025-07-17 08:20:10 +02:00
committed by GitHub
parent fafe264b3c
commit 877f5ed0a7
45 changed files with 14 additions and 130 deletions
+2 -4
View File
@@ -242,13 +242,11 @@ class MacroTest extends TestCase
$macro = new Macro($reflectionMethod, 'URL', new ReflectionClass(UrlGenerator::class), 'macroName');
$output = <<<'DOC'
/**
*
*
* @param string $foo
* @param int $bar
* @return string
* @return string
* @see \Barryvdh\LaravelIdeHelper\Tests\UrlGeneratorMacroClass::__invoke()
* @static
* @static
*/
DOC;
$this->assertSame($output, $macro->getDocComment(''));