From 0f9b7dc85c09fa8e3a95b5c28011e622b9becec2 Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Sun, 25 May 2025 13:21:37 +0200 Subject: [PATCH] Add PHPVersion::__construct to api --- src/Php/PhpVersion.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Php/PhpVersion.php b/src/Php/PhpVersion.php index 5215a30606..519e03a34a 100644 --- a/src/Php/PhpVersion.php +++ b/src/Php/PhpVersion.php @@ -16,6 +16,8 @@ final class PhpVersion public const SOURCE_UNKNOWN = 4; /** + * @api + * * @param self::SOURCE_* $source */ public function __construct(private int $versionId, private int $source = self::SOURCE_UNKNOWN)