Skip to content

Commit 3412777

Browse files
authored
Use quoted literal in phpdoc when psalm needs them (#1518)
1 parent f173e84 commit 3412777

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ValueObject/AttributeValue.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ final class AttributeValue
119119
* BS?: null|string[],
120120
* M?: null|array<string, AttributeValue|array>,
121121
* L?: null|array<AttributeValue|array>,
122-
* NULL?: null|bool,
123-
* BOOL?: null|bool,
122+
* 'NULL'?: null|bool,
123+
* 'BOOL'?: null|bool,
124124
* } $input
125125
*/
126126
public function __construct(array $input)
@@ -147,8 +147,8 @@ public function __construct(array $input)
147147
* BS?: null|string[],
148148
* M?: null|array<string, AttributeValue|array>,
149149
* L?: null|array<AttributeValue|array>,
150-
* NULL?: null|bool,
151-
* BOOL?: null|bool,
150+
* 'NULL'?: null|bool,
151+
* 'BOOL'?: null|bool,
152152
* }|AttributeValue $input
153153
*/
154154
public static function create($input): self

0 commit comments

Comments
 (0)