File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
+ /**
6
+ * This file is part of phpDocumentor.
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ *
11
+ * @link http://phpdoc.org
12
+ */
13
+
5
14
namespace phpDocumentor \Reflection \PseudoTypes ;
6
15
7
16
use phpDocumentor \Reflection \PseudoType ;
8
17
use phpDocumentor \Reflection \Type ;
9
18
use phpDocumentor \Reflection \Types \Boolean ;
10
19
20
+ /**
21
+ * Value Object representing the PseudoType 'False', which is a Boolean type.
22
+ */
11
23
final class False_ extends Boolean implements PseudoType
12
24
{
13
25
public function underlyingType () : Type
@@ -19,4 +31,4 @@ public function __toString() : string
19
31
{
20
32
return 'false ' ;
21
33
}
22
- }
34
+ }
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
+ /**
6
+ * This file is part of phpDocumentor.
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ *
11
+ * @link http://phpdoc.org
12
+ */
13
+
5
14
namespace phpDocumentor \Reflection \PseudoTypes ;
6
15
7
16
use phpDocumentor \Reflection \PseudoType ;
8
17
use phpDocumentor \Reflection \Type ;
9
18
use phpDocumentor \Reflection \Types \Boolean ;
10
19
20
+ /**
21
+ * Value Object representing the PseudoType 'False', which is a Boolean type.
22
+ */
11
23
final class True_ extends Boolean implements PseudoType
12
24
{
13
25
public function underlyingType () : Type
@@ -19,4 +31,4 @@ public function __toString() : string
19
31
{
20
32
return 'true ' ;
21
33
}
22
- }
34
+ }
You can’t perform that action at this time.
0 commit comments