From 6c592549d2a25b2da87354ebd382d12a7507d7f5 Mon Sep 17 00:00:00 2001 From: Martin Georgiev Date: Thu, 13 Mar 2025 11:59:04 +0000 Subject: [PATCH] docs: use the same style for the version used in `@since` annotation --- .../ORM/Query/AST/Functions/AllOnTheRightExistOnTheLeft.php | 2 +- .../ORM/Query/AST/Functions/AnyOnTheRightExistsOnTheLeft.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/Daterange.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/DeleteAtPath.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/FlaggedRegexpReplace.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/Int4range.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/Int8range.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/Numrange.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/RegexpReplace.php | 2 +- .../ORM/Query/AST/Functions/ReturnsValueForJsonValue.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/SplitPart.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/StrConcat.php | 2 +- .../ORM/Query/AST/Functions/TheRightExistsOnTheLeft.php | 2 +- src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tsrange.php | 2 +- .../Doctrine/ORM/Query/AST/Functions/Tstzrange.php | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/AllOnTheRightExistOnTheLeft.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/AllOnTheRightExistOnTheLeft.php index 3a3ff339..622e51b4 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/AllOnTheRightExistOnTheLeft.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/AllOnTheRightExistOnTheLeft.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL check if all texts on the right side exist on the left-side JSONB (using ?&). * * @see https://www.postgresql.org/docs/14/functions-json.html - * @since 2.3.0 + * @since 2.3 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/AnyOnTheRightExistsOnTheLeft.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/AnyOnTheRightExistsOnTheLeft.php index e22efaaf..f431c664 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/AnyOnTheRightExistsOnTheLeft.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/AnyOnTheRightExistsOnTheLeft.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL check if any text on the right side exists on the left-side JSONB (using ?|). * * @see https://www.postgresql.org/docs/14/functions-json.html - * @since 2.3.0 + * @since 2.3 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Daterange.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Daterange.php index c705aa35..a6c1c1de 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Daterange.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Daterange.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL DATERANGE(). * * @see https://www.postgresql.org/docs/17/rangetypes.html - * @since 2.9.0 + * @since 2.9 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/DeleteAtPath.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/DeleteAtPath.php index 742de688..f9536be7 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/DeleteAtPath.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/DeleteAtPath.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL deletion of a field at the specified path (using #-). * * @see https://www.postgresql.org/docs/14/functions-json.html - * @since 2.3.0 + * @since 2.3 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/FlaggedRegexpReplace.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/FlaggedRegexpReplace.php index 40e0fc0e..ec4f99ca 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/FlaggedRegexpReplace.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/FlaggedRegexpReplace.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL REGEXP_REPLACE(). * * @see https://www.postgresql.org/docs/15/functions-matching.html#FUNCTIONS-POSIX-REGEXP - * @since 2.5.0 + * @since 2.5 * * @author Colin Doig */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Int4range.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Int4range.php index 40ef7d4d..914acc27 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Int4range.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Int4range.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL INT4RANGE(). * * @see https://www.postgresql.org/docs/17/rangetypes.html - * @since 2.9.0 + * @since 2.9 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Int8range.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Int8range.php index f935e37c..17ff66e4 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Int8range.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Int8range.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL INT8RANGE(). * * @see https://www.postgresql.org/docs/17/rangetypes.html - * @since 2.9.0 + * @since 2.9 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Numrange.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Numrange.php index d35850f6..6c0a22c4 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Numrange.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Numrange.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL NUMRANGE(). * * @see https://www.postgresql.org/docs/17/rangetypes.html - * @since 2.9.0 + * @since 2.9 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/RegexpReplace.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/RegexpReplace.php index 4a0f7af5..5276fb6a 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/RegexpReplace.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/RegexpReplace.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL REGEXP_REPLACE(). * * @see https://www.postgresql.org/docs/15/functions-matching.html#FUNCTIONS-POSIX-REGEXP - * @since 2.5.0 + * @since 2.5 * * @author Colin Doig */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ReturnsValueForJsonValue.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ReturnsValueForJsonValue.php index 89055323..35cb3639 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ReturnsValueForJsonValue.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ReturnsValueForJsonValue.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL check if a given JSON value will return value for teh left-side JSONB (using @?). * * @see https://www.postgresql.org/docs/14/functions-json.html - * @since 2.3.0 + * @since 2.3 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/SplitPart.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/SplitPart.php index 90242269..8493da17 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/SplitPart.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/SplitPart.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL SPLIT_PART(). * * @see https://www.postgresql.org/docs/15/functions-string.html - * @since 2.7.0 + * @since 2.7 * * @author syl20b */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/StrConcat.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/StrConcat.php index 13c783aa..870f197d 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/StrConcat.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/StrConcat.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL's string concatenation operator (using `||`). * * @see https://www.postgresql.org/docs/15/functions-string.html - * @since 2.6.0 + * @since 2.6 * * @author Alexander Makarov */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/TheRightExistsOnTheLeft.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/TheRightExistsOnTheLeft.php index 1870ca06..39100511 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/TheRightExistsOnTheLeft.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/TheRightExistsOnTheLeft.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL check if the right-side text exists on the left-side JSONB (using ?). * * @see https://www.postgresql.org/docs/14/functions-json.html - * @since 2.3.0 + * @since 2.3 * * @author Martin Georgiev * diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tsrange.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tsrange.php index cf992ee5..5e2e2b33 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tsrange.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tsrange.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL TSRANGE(). * * @see https://www.postgresql.org/docs/17/rangetypes.html - * @since 2.9.0 + * @since 2.9 * * @author Martin Georgiev */ diff --git a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tstzrange.php b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tstzrange.php index f798012c..0289dab0 100644 --- a/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tstzrange.php +++ b/src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Tstzrange.php @@ -8,7 +8,7 @@ * Implementation of PostgreSQL TSTZRANGE(). * * @see https://www.postgresql.org/docs/17/rangetypes.html - * @since 2.9.0 + * @since 2.9 * * @author Martin Georgiev */