From 17837ca9a7d200c518ba5ee6a2db971f1530b2b8 Mon Sep 17 00:00:00 2001 From: Norbert Orzechowicz <1921950+norberttech@users.noreply.github.com> Date: Sun, 12 Jan 2025 10:59:33 -0600 Subject: [PATCH] Make Type implementations nullable (#1357) --- src/core/etl/src/Flow/ETL/Function/Count.php | 2 +- src/core/etl/src/Flow/ETL/Function/Max.php | 2 +- src/core/etl/src/Flow/ETL/Function/Min.php | 2 +- src/core/etl/src/Flow/ETL/Function/Sum.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateTimeType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Logical/JsonType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Logical/ListType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Logical/MapType.php | 2 +- .../etl/src/Flow/ETL/PHP/Type/Logical/StructureType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Logical/TimeType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Logical/UuidType.php | 2 +- .../etl/src/Flow/ETL/PHP/Type/Logical/XMLElementType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/ArrayType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/BooleanType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/CallableType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/EnumType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/FloatType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/IntegerType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/ObjectType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/ResourceType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Native/StringType.php | 2 +- src/core/etl/src/Flow/ETL/PHP/Type/Type.php | 6 +++--- src/core/etl/src/Flow/ETL/Row/Entry/BooleanEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/DateEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/DateTimeEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/EnumEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/FloatEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/IntegerEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/JsonEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/ListEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/MapEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/StringEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/StructureEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/TimeEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/UuidEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/XMLElementEntry.php | 2 +- src/core/etl/src/Flow/ETL/Row/Entry/XMLEntry.php | 2 +- 39 files changed, 41 insertions(+), 41 deletions(-) diff --git a/src/core/etl/src/Flow/ETL/Function/Count.php b/src/core/etl/src/Flow/ETL/Function/Count.php index 21f366294..a5e0b8f6c 100644 --- a/src/core/etl/src/Flow/ETL/Function/Count.php +++ b/src/core/etl/src/Flow/ETL/Function/Count.php @@ -54,7 +54,7 @@ public function over(Window $window) : WindowFunction } /** - * @return Entry + * @return Entry */ public function result() : Entry { diff --git a/src/core/etl/src/Flow/ETL/Function/Max.php b/src/core/etl/src/Flow/ETL/Function/Max.php index 37f5f2805..587670b3d 100644 --- a/src/core/etl/src/Flow/ETL/Function/Max.php +++ b/src/core/etl/src/Flow/ETL/Function/Max.php @@ -43,7 +43,7 @@ public function aggregate(Row $row) : void } /** - * @return Entry|Entry|Entry + * @return Entry|Entry|Entry */ public function result() : Entry { diff --git a/src/core/etl/src/Flow/ETL/Function/Min.php b/src/core/etl/src/Flow/ETL/Function/Min.php index f19b4ff30..99c2b6d3f 100644 --- a/src/core/etl/src/Flow/ETL/Function/Min.php +++ b/src/core/etl/src/Flow/ETL/Function/Min.php @@ -43,7 +43,7 @@ public function aggregate(Row $row) : void } /** - * @return Entry|Entry|Entry + * @return Entry|Entry|Entry */ public function result() : Entry { diff --git a/src/core/etl/src/Flow/ETL/Function/Sum.php b/src/core/etl/src/Flow/ETL/Function/Sum.php index f532728d7..f8500627f 100644 --- a/src/core/etl/src/Flow/ETL/Function/Sum.php +++ b/src/core/etl/src/Flow/ETL/Function/Sum.php @@ -59,7 +59,7 @@ public function over(Window $window) : WindowFunction } /** - * @return Entry|Entry + * @return Entry|Entry */ public function result() : Entry { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateTimeType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateTimeType.php index a1632e7d2..e7855f6c4 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateTimeType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateTimeType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type<\DateTimeInterface> + * @implements Type */ final readonly class DateTimeType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateType.php index 3ca7d5d9d..d89c8de66 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/DateType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type<\DateTimeInterface> + * @implements Type */ final readonly class DateType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/JsonType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/JsonType.php index 9879713fc..94865243e 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/JsonType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/JsonType.php @@ -10,7 +10,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class JsonType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/ListType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/ListType.php index a04d2c9c3..38a2276aa 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/ListType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/ListType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\{Type, TypeFactory}; /** - * @implements Type> + * @implements Type> */ final readonly class ListType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/MapType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/MapType.php index ff40d49e9..4bd96e812 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/MapType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/MapType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\{Type, TypeFactory}; /** - * @implements Type> + * @implements Type> */ final readonly class MapType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/StructureType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/StructureType.php index f771451d7..317ca3df0 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/StructureType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/StructureType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\{Type, TypeFactory}; /** - * @implements Type> + * @implements Type> */ final readonly class StructureType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/TimeType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/TimeType.php index 7c8ef157a..0995cc223 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/TimeType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/TimeType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type<\DateInterval> + * @implements Type */ final readonly class TimeType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/UuidType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/UuidType.php index 65a6d70ec..ae7e1765b 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/UuidType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/UuidType.php @@ -10,7 +10,7 @@ use Flow\ETL\PHP\Value\Uuid; /** - * @implements Type + * @implements Type */ final readonly class UuidType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLElementType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLElementType.php index 7653bbdeb..d8f249089 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLElementType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLElementType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type<\DOMElement> + * @implements Type */ final readonly class XMLElementType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLType.php index b1f414775..5b559d99f 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Logical/XMLType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type<\DOMDocument> + * @implements Type */ final readonly class XMLType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/ArrayType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/ArrayType.php index cf44bcb23..a0342125b 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/ArrayType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/ArrayType.php @@ -8,7 +8,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class ArrayType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/BooleanType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/BooleanType.php index 171cd0e2d..9c00fc52c 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/BooleanType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/BooleanType.php @@ -8,7 +8,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class BooleanType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/CallableType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/CallableType.php index 20271efc2..22a7ca226 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/CallableType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/CallableType.php @@ -8,7 +8,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class CallableType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/EnumType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/EnumType.php index 5243b6579..32bea6326 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/EnumType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/EnumType.php @@ -8,7 +8,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type<\UnitEnum> + * @implements Type */ final readonly class EnumType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/FloatType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/FloatType.php index 427589845..7723af565 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/FloatType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/FloatType.php @@ -8,7 +8,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class FloatType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/IntegerType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/IntegerType.php index 4e8cd47f3..ad94fb714 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/IntegerType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/IntegerType.php @@ -9,7 +9,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class IntegerType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/ObjectType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/ObjectType.php index 77adc406a..bcf5f3697 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/ObjectType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/ObjectType.php @@ -8,7 +8,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class ObjectType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/ResourceType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/ResourceType.php index 78bd5a224..4ab5fd989 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/ResourceType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/ResourceType.php @@ -8,7 +8,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class ResourceType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Native/StringType.php b/src/core/etl/src/Flow/ETL/PHP/Type/Native/StringType.php index 1f2075c88..7979f5fd0 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Native/StringType.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Native/StringType.php @@ -8,7 +8,7 @@ use Flow\ETL\PHP\Type\Type; /** - * @implements Type + * @implements Type */ final readonly class StringType implements Type { diff --git a/src/core/etl/src/Flow/ETL/PHP/Type/Type.php b/src/core/etl/src/Flow/ETL/PHP/Type/Type.php index 2be1d2da7..da3d623ef 100644 --- a/src/core/etl/src/Flow/ETL/PHP/Type/Type.php +++ b/src/core/etl/src/Flow/ETL/PHP/Type/Type.php @@ -5,12 +5,12 @@ namespace Flow\ETL\PHP\Type; /** - * @template-covariant TType + * @template-covariant T of mixed */ interface Type { /** - * @return Type + * @return Type */ public static function fromArray(array $data) : self; @@ -27,7 +27,7 @@ public function isEqual(self $type) : bool; public function isValid(mixed $value) : bool; /** - * @return Type + * @return Type */ public function makeNullable(bool $nullable) : self; diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/BooleanEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/BooleanEntry.php index 372713bd5..ce908ed49 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/BooleanEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/BooleanEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class BooleanEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/DateEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/DateEntry.php index 7f6e6be83..2b060ebda 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/DateEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/DateEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class DateEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/DateTimeEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/DateTimeEntry.php index d09070487..0a7da3f83 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/DateTimeEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/DateTimeEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class DateTimeEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/EnumEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/EnumEntry.php index 7383319b0..2d1699d1d 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/EnumEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/EnumEntry.php @@ -10,7 +10,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class EnumEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/FloatEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/FloatEntry.php index ed8bb2052..76ebae74b 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/FloatEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/FloatEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class FloatEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/IntegerEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/IntegerEntry.php index d51c6e943..68bb27796 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/IntegerEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/IntegerEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class IntegerEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/JsonEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/JsonEntry.php index 7e50f84cb..f5b8f84c4 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/JsonEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/JsonEntry.php @@ -13,7 +13,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry, string> + * @implements Entry, ?string> */ final class JsonEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/ListEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/ListEntry.php index 8892dd99d..114d7b01d 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/ListEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/ListEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry, list> + * @implements Entry, ?list> */ final class ListEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/MapEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/MapEntry.php index 62d5a8250..f9237743d 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/MapEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/MapEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry, array> + * @implements Entry, ?array> */ final class MapEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/StringEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/StringEntry.php index 9a04388ec..5e1e4b20f 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/StringEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/StringEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference, Schema\Metadata}; /** - * @implements Entry + * @implements Entry */ final class StringEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/StructureEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/StructureEntry.php index 227c026a3..351d2c25a 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/StructureEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/StructureEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry, array> + * @implements Entry, ?array> */ final class StructureEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/TimeEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/TimeEntry.php index 30b255caa..70195fbc0 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/TimeEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/TimeEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class TimeEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/UuidEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/UuidEntry.php index 92a536d1f..7328a6bef 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/UuidEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/UuidEntry.php @@ -13,7 +13,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class UuidEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/XMLElementEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/XMLElementEntry.php index a3941bcc9..5c23b3425 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/XMLElementEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/XMLElementEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class XMLElementEntry implements Entry { diff --git a/src/core/etl/src/Flow/ETL/Row/Entry/XMLEntry.php b/src/core/etl/src/Flow/ETL/Row/Entry/XMLEntry.php index 52516e578..d7a78e1b5 100644 --- a/src/core/etl/src/Flow/ETL/Row/Entry/XMLEntry.php +++ b/src/core/etl/src/Flow/ETL/Row/Entry/XMLEntry.php @@ -12,7 +12,7 @@ use Flow\ETL\Row\{Entry, Reference}; /** - * @implements Entry + * @implements Entry */ final class XMLEntry implements Entry {