Conditions | 1 |
Paths | 1 |
Total Lines | 4 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
52 | public function setBodyHTML($html) |
||
1 ignored issue
–
show
|
|||
53 | { |
||
54 | $this->variables['body_html'] = $html; |
||
55 | } |
||
56 | |||
58 |
This check looks for method names that are not 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 seeker becomes
databaseConnectionSeeker
.