File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
src/Standards/Squiz/Tests/Commenting Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -499,3 +499,21 @@ class AllowMoreForSelectivelyIgnoringDisallowedTags {
499499}
500500
501501// phpcs:enable Squiz.Commenting.VariableComment
502+
503+ class StandaloneFQNNullTrueFalseTypes
504+ {
505+ /**
506+ * @var null
507+ */
508+ public \Null $ variableName = null ;
509+
510+ /**
511+ * @var true
512+ */
513+ protected \true $ variableName = true ;
514+
515+ /**
516+ * @var false
517+ */
518+ private \FALSE $ variableName = false ;
519+ }
Original file line number Diff line number Diff line change @@ -499,3 +499,21 @@ class AllowMoreForSelectivelyIgnoringDisallowedTags {
499499}
500500
501501// phpcs:enable Squiz.Commenting.VariableComment
502+
503+ class StandaloneFQNNullTrueFalseTypes
504+ {
505+ /**
506+ * @var null
507+ */
508+ public \Null $variableName = null;
509+
510+ /**
511+ * @var true
512+ */
513+ protected \true $variableName = true;
514+
515+ /**
516+ * @var false
517+ */
518+ private \FALSE $variableName = false;
519+ }
You can’t perform that action at this time.
0 commit comments