Skip to content

Commit 069ab05

Browse files
committed
Fix styling issues
1 parent 65b3070 commit 069ab05

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/PseudoTypes/False_.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
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 https://phpdoc.org
1212
*/
1313

1414
namespace phpDocumentor\Reflection\PseudoTypes;
1515

1616
use phpDocumentor\Reflection\PseudoType;
1717
use phpDocumentor\Reflection\Type;
1818
use phpDocumentor\Reflection\Types\Boolean;
19+
use function class_alias;
1920

2021
/**
2122
* Value Object representing the PseudoType 'False', which is a Boolean type.
@@ -35,4 +36,4 @@ public function __toString() : string
3536
}
3637
}
3738

38-
class_alias('\phpDocumentor\Reflection\PseudoTypes\False_', 'phpDocumentor\Reflection\Types\False_', false);
39+
class_alias('\phpDocumentor\Reflection\PseudoTypes\False_', 'phpDocumentor\Reflection\Types\False_', false);

src/PseudoTypes/True_.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
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 https://phpdoc.org
1212
*/
1313

1414
namespace phpDocumentor\Reflection\PseudoTypes;
1515

1616
use phpDocumentor\Reflection\PseudoType;
1717
use phpDocumentor\Reflection\Type;
1818
use phpDocumentor\Reflection\Types\Boolean;
19+
use function class_alias;
1920

2021
/**
2122
* Value Object representing the PseudoType 'False', which is a Boolean type.
@@ -35,4 +36,4 @@ public function __toString() : string
3536
}
3637
}
3738

38-
class_alias('\phpDocumentor\Reflection\PseudoTypes\True_', 'phpDocumentor\Reflection\Types\True_', false);
39+
class_alias('\phpDocumentor\Reflection\PseudoTypes\True_', 'phpDocumentor\Reflection\Types\True_', false);

0 commit comments

Comments
 (0)