Skip to content

Commit bd8aa48

Browse files
committed
Fixed spacing in useInputType annotation
1 parent 3e743a7 commit bd8aa48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Annotations/UseInputType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function __construct($inputType = [], ?string $for = null)
4343
throw new BadMethodCallException('The @UseInputType annotation must be passed an input type. For instance: "@UseInputType(for="$input", inputType="MyInputType")" in PHP 7+ or #[UseInputType("MyInputType")] in PHP 8+');
4444
}
4545
$this->inputType = $values['inputType'];
46-
if (! isset($for) &&! isset($values['for'])) {
46+
if (! isset($for) && ! isset($values['for'])) {
4747
return;
4848
}
4949

0 commit comments

Comments
 (0)