| 1 | <?php |
||
| 5 | class Device extends AbstractType |
||
| 6 | { |
||
| 7 | private $BoundBy; |
||
| 8 | |||
| 9 | private $SysFSPath; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @return mixed |
||
| 13 | */ |
||
| 14 | public function getBoundBy() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param mixed $BoundBy |
||
| 21 | * @return Device |
||
| 22 | */ |
||
| 23 | public function setBoundBy($BoundBy) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | public function getSysFSPath() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param mixed $SysFSPath |
||
| 39 | * @return Device |
||
| 40 | */ |
||
| 41 | public function setSysFSPath($SysFSPath) |
||
| 46 | } |
||
| 47 |
This check marks parameter 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.