diff --git a/tests/Fixtures/Ruleset/relax_actual.php b/tests/Fixtures/Ruleset/relax_actual.php index 912de28..ccc932c 100644 --- a/tests/Fixtures/Ruleset/relax_actual.php +++ b/tests/Fixtures/Ruleset/relax_actual.php @@ -375,6 +375,12 @@ public function phpdoc__no_superfluous_phpdoc_tags($foo /*, $unusedParam = null */ public function phpdoc__phpdoc_align($a, $b) {} + /** + * @internal + * @access private + */ + public function phpdoc__phpdoc_no_access() {} + /** * @internal * @param int $b diff --git a/tests/Fixtures/Ruleset/relax_expected.php b/tests/Fixtures/Ruleset/relax_expected.php index 0fde85f..7f3b1a3 100644 --- a/tests/Fixtures/Ruleset/relax_expected.php +++ b/tests/Fixtures/Ruleset/relax_expected.php @@ -374,6 +374,11 @@ public function phpdoc__no_superfluous_phpdoc_tags($foo /* , $unusedParam = null */ public function phpdoc__phpdoc_align($a, $b) {} + /** + * @internal + */ + public function phpdoc__phpdoc_no_access() {} + /** * @internal */