InterfaceWithAnnotatedParameters.php 281 B

1234567891011121314
  1. <?php
  2. namespace Symfony\Component\Debug\Tests\Fixtures;
  3. /**
  4. * Ensures a deprecation is triggered when a new parameter is not declared in child classes.
  5. */
  6. interface InterfaceWithAnnotatedParameters
  7. {
  8. /**
  9. * @param bool $matrix
  10. */
  11. public function whereAmI();
  12. }