class Foo in Coder 7.2
Same name and namespace in other branches
Hierarchy
- class \Foo implements \FooInterface
Expanded class hierarchy of Foo
File
- coder_sniffer/
Test/ good/ good.php, line 602 - This file contains all the valid notations for the drupal coding standard.
View source
class Foo implements FooInterface {
/**
* {@inheritdoc}
*/
public function test() {
}
/**
* {@inheritdoc}
*
* Some additional documentation here.
*/
public function test2() {
}
/**
* Return docs are allowed to use $this.
*
* @return $this
* This object for chaining method calls.
*/
public function test3() {
return $this;
}
/**
* Returns the string representatuion of this object.
*/
public function __toString() {
return 'foo';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Foo:: |
public | function | ||
Foo:: |
public | function | Some additional documentation here. | |
Foo:: |
public | function | Return docs are allowed to use $this. | |
Foo:: |
public | function | Returns the string representatuion of this object. |