mirror of
https://github.com/composer/composer
synced 2025-05-08 16:17:37 +00:00
16 lines
197 B
PHP
16 lines
197 B
PHP
<?php
|
|
|
|
namespace Foo;
|
|
|
|
class SlashedA {
|
|
function foo() {
|
|
return sprintf("foo\
|
|
bar");
|
|
}
|
|
}
|
|
|
|
class SlashedB {
|
|
function bar() {
|
|
print "baz";
|
|
}
|
|
}
|