File "inline_function.php"
Full path: /var/www/html/back/vendor/phpdocumentor/reflection/tests/integration/data/GlobalFiles/inline_function.php
File
size: 0.15 KB (150 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
class Foo {
public function test() {
function internal() {
return "yep";
}
return internal();
}
}