Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
cloneExpression_01.php
blob: af312a09428f97f5cf849214b68dd39f37b90041 [
file
]
<?
php
class
CloneExpression
{
public
function
create
()
{
$test
=
(
clone $this
->
test1
())->
test2
();
return
(
clone $this
)->
test1
();
}
public
function
test1
()
{
}
public
function
test2
()
{
}
}
(
clone
(
new
CloneExpression
()))->
create
();