You are here

interface PHPUnit_Framework_SelfDescribing in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/SelfDescribing.php \PHPUnit_Framework_SelfDescribing

Interface for classes that can return a description of itself.

@since Interface available since Release 3.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_SelfDescribing

All classes that implement PHPUnit_Framework_SelfDescribing

File

vendor/phpunit/phpunit/src/Framework/SelfDescribing.php, line 16

View source
interface PHPUnit_Framework_SelfDescribing {

  /**
   * Returns a string representation of the object.
   *
   * @return string
   */
  public function toString();

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_Framework_SelfDescribing::toString public function Returns a string representation of the object. 57