1
0
Fork 0
php-language-server/tests/Validation/cases/multiplePreceedingComments.php

15 lines
171 B
PHP

<?php
class Foo
{
/**
* Foo
*
* @return \Iterator
*/
// @codingStandardsIgnoreLine
public function fn()
{
return null;
}
}