source_without_namespace.php

File

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

/**
 * 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.