Skip to content

Commit 5d82f79

Browse files
committed
Added immutable annotations
1 parent d88bf46 commit 5d82f79

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/PseudoTypes/False_.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
/**
2121
* Value Object representing the PseudoType 'False', which is a Boolean type.
22+
*
23+
* @psalm-immutable
2224
*/
2325
final class False_ extends Boolean implements PseudoType
2426
{

src/PseudoTypes/True_.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*
11-
* @link http://phpdoc.org
11+
* @link http://phpdoc.org
1212
*/
1313

1414
namespace phpDocumentor\Reflection\PseudoTypes;
@@ -19,6 +19,8 @@
1919

2020
/**
2121
* Value Object representing the PseudoType 'False', which is a Boolean type.
22+
*
23+
* @psalm-immutable
2224
*/
2325
final class True_ extends Boolean implements PseudoType
2426
{

0 commit comments

Comments
 (0)