FooTrait.php 194 B

1234567891011121314
  1. <?php
  2. namespace Symfony\Component\Routing\Tests\Fixtures\AnnotatedClasses;
  3. trait FooTrait
  4. {
  5. public function doBar()
  6. {
  7. $baz = self::class;
  8. if (true) {
  9. }
  10. }
  11. }