source_with_namespace.php in Zircon Profile 8.0
Same filename and directory in other branches
Namespace
bar\bazFile
vendor/phpunit/php-code-coverage/tests/_files/source_with_namespace.phpView source
<?php
namespace bar\baz;
/**
* Represents foo.
*/
class source_with_namespace {
}
/**
* @param mixed $bar
*/
function &foo($bar) {
$baz = function () {
};
$a = true ? true : false;
$b = "{$a}";
$c = "{$b}";
}