gnu-social/vendor/phpunit/php-code-coverage/tests/_files/source_with_namespace.php

21 lines
236 B
PHP
Raw Normal View History

2020-08-08 07:42:38 +09:00
<?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}";
}