class bad in Coder 8.3.x
Same name and namespace in other branches
Hierarchy
- class \bad
Expanded class hierarchy of bad
File
- tests/
Drupal/ bad/ bad.php, line 357
View source
class bad {
// Private properties must not have a prefix
private $_secret = 1;
// Public properties must not have a prefix
protected $_foo = 1;
// Public properties must not have a prefix
public $_bar = 1;
// Public static variables use camelCase.
public static $base_path = NULL;
// "var" keyword must no be used.
var $x = 5;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
bad:: |
public static | property | ||
bad:: |
property | |||
bad:: |
public | property | ||
bad:: |
protected | property | ||
bad:: |
private | property |