Skip to content

Commit 229d114

Browse files
committed
Fix linting issues
1 parent b59ba30 commit 229d114

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

src/PseudoTypes/False_.php

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22

33
declare(strict_types=1);
44

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+
514
namespace phpDocumentor\Reflection\PseudoTypes;
615

716
use phpDocumentor\Reflection\PseudoType;
817
use phpDocumentor\Reflection\Type;
918
use phpDocumentor\Reflection\Types\Boolean;
1019

20+
/**
21+
* Value Object representing the PseudoType 'False', which is a Boolean type.
22+
*/
1123
final class False_ extends Boolean implements PseudoType
1224
{
1325
public function underlyingType() : Type
@@ -19,4 +31,4 @@ public function __toString() : string
1931
{
2032
return 'false';
2133
}
22-
}
34+
}

src/PseudoTypes/True_.php

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22

33
declare(strict_types=1);
44

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+
514
namespace phpDocumentor\Reflection\PseudoTypes;
615

716
use phpDocumentor\Reflection\PseudoType;
817
use phpDocumentor\Reflection\Type;
918
use phpDocumentor\Reflection\Types\Boolean;
1019

20+
/**
21+
* Value Object representing the PseudoType 'False', which is a Boolean type.
22+
*/
1123
final class True_ extends Boolean implements PseudoType
1224
{
1325
public function underlyingType() : Type
@@ -19,4 +31,4 @@ public function __toString() : string
1931
{
2032
return 'true';
2133
}
22-
}
34+
}

0 commit comments

Comments
 (0)