Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
formatting
/
issue196405.php
blob: e2901e444a5d768312b533a7f4a2047edb11adaa [
file
]
<?
php
class
foo
{
public
function
test
()
{
// just the function call
$this
->
foobar
(
1
,
2
);
// fuction call AND assignment, this changes on reformat!
$x
=
$this
->
foobar
(
1
,
2
);
}
}
$y
=
foo
(
1
,
"some text"
,
"another text"
);