AttributesClassParamAfterParenthesisController.php 321 B

1234567891011121314151617
  1. <?php
  2. namespace Symfony\Component\Routing\Tests\Fixtures\AttributesFixtures;
  3. use Symfony\Component\Routing\Tests\Fixtures\Attributes\FooAttributes;
  4. #[FooAttributes(
  5. class: \stdClass::class,
  6. foo: [
  7. 'bar' => ['foo','bar'],
  8. 'foo'
  9. ]
  10. )]
  11. class AttributesClassParamAfterParenthesisController
  12. {
  13. }