From f8eb70d6420b42ce99ad169d8729a8ad06bca23b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pysiak?= Date: Mon, 7 Oct 2024 10:58:28 +0200 Subject: [PATCH] Fix @note annotation error --- src/Loggable/Entity/MappedSuperclass/AbstractLogEntry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Loggable/Entity/MappedSuperclass/AbstractLogEntry.php b/src/Loggable/Entity/MappedSuperclass/AbstractLogEntry.php index 027cd0d1c..d0965547a 100644 --- a/src/Loggable/Entity/MappedSuperclass/AbstractLogEntry.php +++ b/src/Loggable/Entity/MappedSuperclass/AbstractLogEntry.php @@ -85,7 +85,7 @@ abstract class AbstractLogEntry implements LogEntryInterface * * @ORM\Column(type="array", nullable=true) * - * @note The attribute uses the "array" name directly instead of the constant since it was removed in DBAL 4.0. + * NOTE: The attribute uses the "array" name directly instead of the constant since it was removed in DBAL 4.0. */ #[ORM\Column(type: 'array', nullable: true)] protected $data;