Skip to content

Commit 0f51d1e

Browse files
committed
Apply phpcs
1 parent ebef64b commit 0f51d1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PrettyPrinter.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ protected function printClassConstNode(ClassConstNode $node): string
167167
/** @var non-empty-string */
168168
return \vsprintf('%s::%s', [
169169
$node->class->toString(),
170-
(string)$node->constant?->toString(),
170+
(string) $node->constant?->toString(),
171171
]);
172172
}
173173

@@ -179,7 +179,7 @@ protected function printClassConstMaskNode(ClassConstMaskNode $node): string
179179
/** @var non-empty-string */
180180
return \vsprintf('%s::%s', [
181181
$node->class->toString(),
182-
(string)($node->constant?->toString()) . '*',
182+
(string) ($node->constant?->toString()) . '*',
183183
]);
184184
}
185185

0 commit comments

Comments
 (0)