You are here

UseLeadingBackslashUnitTest.inc in Coder 8.3.x

Same filename and directory in other branches
  1. 8.3 tests/Drupal/Classes/UseLeadingBackslashUnitTest.inc

Testing use statements.

File

tests/Drupal/Classes/UseLeadingBackslashUnitTest.inc
View source
<?php

/**
 * @file
 * Testing use statements.
 */
use Foo\Boom\Bang;

/**
 * Just an example making use the class.
 */
function test(Bang $x) {
}

Functions

Namesort descending Description
test Just an example making use the class.