From af3a1560eced9d49c6f82d63623250c0908ac34f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Andr=C3=A9?= Date: Sun, 15 Sep 2024 03:20:10 +0200 Subject: [PATCH] add missing internal/final on the DataCollector --- .../src/DataCollector/TwigComponentDataCollector.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/TwigComponent/src/DataCollector/TwigComponentDataCollector.php b/src/TwigComponent/src/DataCollector/TwigComponentDataCollector.php index 76251c06173..1ee94c71bdb 100644 --- a/src/TwigComponent/src/DataCollector/TwigComponentDataCollector.php +++ b/src/TwigComponent/src/DataCollector/TwigComponentDataCollector.php @@ -25,8 +25,10 @@ /** * @author Simon André + * + * @internal */ -class TwigComponentDataCollector extends AbstractDataCollector implements LateDataCollectorInterface +final class TwigComponentDataCollector extends AbstractDataCollector implements LateDataCollectorInterface { private bool $hasStub;