Skip to content

Commit defed2a

Browse files
committed
Fix code style
1 parent b9948f5 commit defed2a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/Types/Compound.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ final class Compound implements Type, IteratorAggregate
4040
* Initializes a compound type (i.e. `string|int`) and tests if the provided types all implement the Type interface.
4141
*
4242
* @param Type[] $types
43-
* @param string $token
4443
*
4544
* @phpstan-param list<Type> $types
4645
*/

src/Types/Expression_.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@
1010
*
1111
* @link http://phpdoc.org
1212
*/
13-
1413
namespace phpDocumentor\Reflection\Types;
1514

1615
use phpDocumentor\Reflection\Type;
1716

1817
/**
1918
* Represents an expression type as described in the PSR-5, the PHPDoc Standard.
20-
*
2119
*/
2220
final class Expression_ implements Type
2321
{
@@ -29,7 +27,7 @@ final class Expression_ implements Type
2927
*/
3028
public function __construct(Type $valueType)
3129
{
32-
$this->valueType = $valueType;
30+
$this->valueType = $valueType;
3331
}
3432

3533
/**

0 commit comments

Comments
 (0)