Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 1a93540

Browse files
committed
Fits one one line now
1 parent e402092 commit 1a93540

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Generator/PropertyGenerator.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,7 @@ public function generate()
224224
return $output;
225225
}
226226

227-
$output .= $this->indentation
228-
. $this->getVisibility()
229-
. ($this->isStatic() ? ' static' : '')
230-
. ' $' . $name;
227+
$output .= $this->indentation . $this->getVisibility() . ($this->isStatic() ? ' static' : '') . ' $' . $name;
231228

232229
if ($this->defaultValue instanceof PropertyValueGenerator &&
233230
$this->defaultValue->getType() === ValueGenerator::TYPE_OMIT) {

0 commit comments

Comments
 (0)