c2ec1c97c9
A poor man's formatter since I didn't like any of the other ones I found. The original C++ source sometimes put newlines and sometimes not.
Codemods:
codemod '([;{}])([^\n])' '\1\n\2'
codemod -m '\s*<\?php\s+' '<?php\n\n'
codemod '\t' ' '
I hand-fixed all the failing tests
37 linhas
648 B
PHP
37 linhas
648 B
PHP
<?php
|
|
|
|
function test($a, $b) {
|
|
$buf = 'hello';
|
|
foreach ($a as $v) {
|
|
$buf .= $v . ';';
|
|
foreach ($b as $w) {
|
|
$buf .= $w;
|
|
}
|
|
}
|
|
var_dump($buf);
|
|
}
|
|
test(array('a', 'b', 'c'), array('u', 'v'));
|
|
function test2($a, $b) {
|
|
$buf = 'hello';
|
|
foreach ($a as $v) {
|
|
$buf .= $v . ';';
|
|
foreach ($b as $w) {
|
|
$buf .= $w;
|
|
}
|
|
echo $buf;
|
|
}
|
|
var_dump($buf);
|
|
}
|
|
test2(array('a', 'b', 'c'), array('u', 'v'));
|
|
function test3($a, $b) {
|
|
$buf = 'hello';
|
|
foreach ($a as $v) {
|
|
$buf .= $v . ';';
|
|
foreach ($b as $w) {
|
|
echo ($buf .= $w);
|
|
}
|
|
}
|
|
var_dump($buf);
|
|
}
|
|
test3(array('a', 'b', 'c'), array('u', 'v'));
|