gordonbanderson /
Silverstripe-Links-Module
| 1 | <?php |
||
| 2 | namespace WebOfTalent\Links; |
||
| 3 | |||
| 4 | class LinksFolder_Controller extends \PageController |
||
|
0 ignored issues
–
show
|
|||
| 5 | { |
||
| 6 | } |
||
| 7 |
Classes in PHP are usually named in CamelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. The whole name starts with a capital letter as well.
Thus the name database provider becomes
DatabaseProvider.