1 | <?php |
||
8 | class BlacklistPlugin extends Plugin |
||
|
|||
9 | { |
||
10 | /** |
||
11 | * List of classes and interfaces to blacklist. |
||
12 | * |
||
13 | * @var array |
||
14 | */ |
||
15 | public static $blacklist = array(); |
||
16 | |||
17 | /** |
||
18 | * List of classes and interfaces to blacklist except when dumped directly. |
||
19 | * |
||
20 | * @var array |
||
21 | */ |
||
22 | public static $shallow_blacklist = array(); |
||
23 | |||
24 | public function getTypes() |
||
28 | |||
29 | public function getTriggers() |
||
33 | |||
34 | public function parse(&$var, BasicObject &$o, $trigger) |
||
52 | |||
53 | protected function blacklist(&$var, &$o) |
||
69 | } |
||
70 |
This check marks property names that have not been written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes
databaseConnectionString
.