Fix codesample in TypedPropertyRector

This rector does not remove the PHPDoc.
This commit is contained in:
Ruud Kamphuis 2019-12-26 15:06:42 +01:00 committed by GitHub
parent 26aef3aa15
commit abbd6357f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}