From abbd6357f9faa55571ba49ce6f9f11f74f78ed12 Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Thu, 26 Dec 2019 15:06:42 +0100 Subject: [PATCH] Fix codesample in TypedPropertyRector This rector does not remove the PHPDoc. --- docs/AllRectorsOverview.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/AllRectorsOverview.md b/docs/AllRectorsOverview.md index 23c1581a092..4e58ed8d0f1 100644 --- a/docs/AllRectorsOverview.md +++ b/docs/AllRectorsOverview.md @@ -5733,9 +5733,9 @@ Changes property `@var` annotations from annotation to type. ```diff final class SomeClass { -- /** -- * @var int -- */ + /** + * @var int + */ - private count; + private int count; }