No Description

source_without_namespace.php 198B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Represents foo.
  4. */
  5. class Foo
  6. {
  7. }
  8. /**
  9. * @param mixed $bar
  10. */
  11. function &foo($bar)
  12. {
  13. $baz = function () {};
  14. $a = true ? true : false;
  15. $b = "{$a}";
  16. $c = "${b}";
  17. }