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
26 linhas
379 B
PHP
26 linhas
379 B
PHP
<?php
|
|
|
|
class X {
|
|
|
|
public function __invoke($x) {
|
|
var_dump($x);
|
|
}
|
|
public function test() {
|
|
$this(10);
|
|
call_user_func($this, 300);
|
|
call_user_func_array($this, array(0, 1));
|
|
}
|
|
}
|
|
class Y {
|
|
|
|
public function test($x) {
|
|
$x(10);
|
|
call_user_func($x, 300);
|
|
call_user_func_array($x, array(0, 1));
|
|
}
|
|
}
|
|
$x = new X;
|
|
$x->test();
|
|
$y = new Y;
|
|
$y->test($x);
|