The property $output_allowed is not named in camelCase.
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.
Loading history...
15
{
16
private $output_allowed = true;
17
18
8
public function __construct()
19
{
20
//No construction required!
21
8
}
22
23
/**
24
* @return bool
25
*/
26
4
public function initialize()
27
{
28
4
$initialize_status = error_log("Initializing System logger.");
29
30
4
return $initialize_status;
31
}
32
33
/**
34
* Writes to the configured PHP error logger.
35
*
36
* @see error_log()
37
*
38
* @param string $message Message to be written to PHP's system log
39
* @return bool Returns the status from the error_log function
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.