File: BackslashLineEndingString.php

package info (click to toggle)
php-composer-class-map-generator 1.0.0-2%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,584 kB
  • sloc: php: 4,130; makefile: 22
file content (16 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace Foo;

class SlashedA {
    public function foo() {
        return sprintf("foo\
                        bar");
    }
}

class SlashedB {
    public function bar() {
        print "baz";
    }
}