We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95064bb commit 65d99c9Copy full SHA for 65d99c9
src/Component/Method/Setter.php
@@ -22,6 +22,7 @@ public function render(): string
22
{
23
$nullable = $this->nullable ? '?' : '';
24
25
+ // phpcs:disable Generic.Files.LineLength.TooLong
26
return <<<STR
27
{$this->visibility->value} function $this->name($nullable$this->target->getType() \$$this->target->getName()): {$this->returnType}
28
@@ -30,6 +31,7 @@ public function render(): string
30
31
return \$this;
32
}
33
STR;
34
+ // phpcs:enable Generic.Files.LineLength.TooLong
35
36
37
public function setTarget(ParameterInterface $target): self
0 commit comments