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