source_with_namespace.php

Namespace

bar\baz

File

drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/source_with_namespace.php
View source
<?php

namespace bar\baz;


/**
 * Represents foo.
 */
class Foo {

}

/**
 * @param mixed $bar
 */
function &foo($bar) {
  $baz = function () {
  };
  $a = TRUE ? TRUE : FALSE;
  $b = "{$a}";
  $c = "{$b}";
}

Functions

Namesort descending Description
foo

Classes

Namesort descending Description
Foo Represents foo.