ClassWithPhpCsSuppressAnnotation.php 284 B

12345678910111213
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. class ClassWithPhpCsSuppressAnnotation
  4. {
  5. /**
  6. * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingAnyTypeHint
  7. */
  8. public function foo($parameterWithoutTypehint): void
  9. {
  10. }
  11. }