WithComments.php 535 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Namespaced;
  11. class WithComments
  12. {
  13. /** @Boolean */
  14. public static $loaded = true;
  15. }
  16. $string = 'string should not be modified {$string}';
  17. $heredoc = (<<<HD
  18. Heredoc should not be modified {$string}
  19. HD
  20. );
  21. $nowdoc = <<<'ND'
  22. Nowdoc should not be modified {$string}
  23. ND;