You are here

class Small in Coder 8.3.x

Same name and namespace in other branches
  1. 8.3 tests/Drupal/Commenting/FunctionCommentUnitTest.inc \Small

A class with a method that has the same name as the class.

Hierarchy

Expanded class hierarchy of Small

File

tests/Drupal/Commenting/FunctionCommentUnitTest.inc, line 472
Some function comment tests.

View source
class Small {

  /**
   * Our small constructor.
   */
  public function __construct() {
  }

  /**
   * Return tag should be allowed here.
   *
   * @return string
   *   Something small.
   */
  public function small() {
    return 'string';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Small::small public function Return tag should be allowed here.
Small::__construct public function Our small constructor.