Skip to content

Commit 65d99c9

Browse files
committed
WIP
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent 95064bb commit 65d99c9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Component/Method/Setter.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public function render(): string
2222
{
2323
$nullable = $this->nullable ? '?' : '';
2424

25+
// phpcs:disable Generic.Files.LineLength.TooLong
2526
return <<<STR
2627
{$this->visibility->value} function $this->name($nullable$this->target->getType() \$$this->target->getName()): {$this->returnType}
2728
{
@@ -30,6 +31,7 @@ public function render(): string
3031
return \$this;
3132
}
3233
STR;
34+
// phpcs:enable Generic.Files.LineLength.TooLong
3335
}
3436

3537
public function setTarget(ParameterInterface $target): self

0 commit comments

Comments
 (0)