class MyExampleLog in Coder 7.2
Same name and namespace in other branches
- 8.2 coder_sniffer/Drupal/Test/good/good.php \MyExampleLog
Hierarchy
- class \MyExampleLog
Expanded class hierarchy of MyExampleLog
File
- coder_sniffer/
Test/ good/ good.php, line 357 - This file contains all the valid notations for the drupal coding standard.
View source
class MyExampleLog {
const INFO = 0;
const WARNING = 1;
const ERROR = 2;
const EMERGENCY = 3;
/**
* Empty method implementation is allowed.
*/
public function emptyMethod() {
}
/**
* Protected functions are allowed.
*/
protected function protectedTest() {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MyExampleLog:: |
constant | |||
MyExampleLog:: |
public | function | Empty method implementation is allowed. | |
MyExampleLog:: |
constant | |||
MyExampleLog:: |
constant | |||
MyExampleLog:: |
protected | function | Protected functions are allowed. | |
MyExampleLog:: |
constant |