Skip to content

Commit eda7632

Browse files
committed
Apply phpcs
1 parent c058333 commit eda7632

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

src/Type/ListType.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
/**
1313
* @template T of mixed = mixed
14-
*
1514
* @template-implements TypeInterface<T>
1615
*/
1716
class ListType implements TypeInterface
@@ -34,7 +33,6 @@ public function match(mixed $value, Context $context): bool
3433

3534
/**
3635
* @return list<T>
37-
*
3836
* @throws InvalidValueException in case the value is incorrect
3937
* @throws InvalidIterableValueException in case the value of a certain element is incorrect
4038
* @throws \Throwable in case of internal error occurs

src/Type/NullableType.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
/**
1010
* @template T of mixed = mixed
11-
*
1211
* @template-implements TypeInterface<T|null>
1312
*/
1413
class NullableType implements TypeInterface

src/Type/TypeInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public function match(mixed $value, Context $context): bool;
2121

2222
/**
2323
* @return T
24-
*
2524
* @throws RuntimeException in case of known mapping issue
2625
* @throws \Throwable in case of internal error occurs
2726
*/

src/Type/UnionType.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
/**
1212
* @template T of mixed = mixed
13-
*
1413
* @template-implements TypeInterface<T>
1514
*/
1615
class UnionType implements TypeInterface

0 commit comments

Comments
 (0)