Sign in
apache
/
netbeans
/
419f65eb0cccf624032c1c4925bf8d58069043ae
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
issue268496_01.php
blob: d47cb9bf1a96c0181d18c2a6cc3df5091e2fd1c6 [
file
]
<?
php
function
test
(
callable $callable
)
:
callable
{
return
$callable
;
}
trait
MyTrait
{
public
function
test
(
$param
)
{
echo __TRAIT__
.
PHP_EOL
;
}
}