| Conditions | 1 |
| Paths | 1 |
| Total Lines | 4 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 21 | public function find_file($dir, $file) |
||
|
1 ignored issue
–
show
|
|||
| 22 | { |
||
| 23 | return \Kohana::find_file($dir, $file, NULL, FALSE); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |
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.