Skip to content

Commit 157f069

Browse files
committed
Fix CS
1 parent fad3b54 commit 157f069

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Types/CallableParameter.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ public function isOptional(): bool
7878
}
7979

8080
public function __toString(): string
81-
{
82-
$reference = $this->isReference ? '&' : '';
83-
$variadic = $this->isVariadic ? '...' : '';
84-
$optional = $this->isOptional ? '=' : '';
81+
{
82+
$reference = $this->isReference ? '&' : '';
83+
$variadic = $this->isVariadic ? '...' : '';
84+
$optional = $this->isOptional ? '=' : '';
8585
$name = $this->name !== null ? '$' . $this->name : '';
8686

87-
return trim($this->type . ' ' . $reference . $variadic . $name . $optional);
88-
}
87+
return trim($this->type . ' ' . $reference . $variadic . $name . $optional);
88+
}
8989
}

0 commit comments

Comments
 (0)