| 1 | <?php |
||
| 7 | class MicrotimeRepresentation extends Representation |
||
| 8 | { |
||
| 9 | public $seconds = null; |
||
| 10 | public $microseconds = null; |
||
| 11 | public $group = null; |
||
| 12 | public $lap = null; |
||
| 13 | public $total = null; |
||
| 14 | public $avg = null; |
||
| 15 | public $i = 0; |
||
| 16 | public $mem = 0; |
||
| 17 | public $mem_real = 0; |
||
| 18 | public $mem_peak = null; |
||
| 19 | public $mem_peak_real = null; |
||
| 20 | public $hints = array('microtime'); |
||
| 21 | |||
| 22 | public function __construct($seconds, $microseconds, $group, $lap = null, $total = null, $i = 0) |
||
| 43 | |||
| 44 | public function getDateTime() |
||
| 48 | } |
||
| 49 |
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.