BackslashLineEndingString.php 197 B

12345678910111213141516
  1. <?php
  2. namespace Foo;
  3. class SlashedA {
  4. function foo() {
  5. return sprintf("foo\
  6. bar");
  7. }
  8. }
  9. class SlashedB {
  10. function bar() {
  11. print "baz";
  12. }
  13. }