The property $handler_list 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...
8
{
9
private $config;
10
private $handler_list;
11
12
public function __construct(\SSpkS\Config $config)
13
{
14
$this->config = $config;
15
16
// ordered by priority (top to bottom)
17
$this->handler_list = array(
18
'SynologyHandler',
19
'BrowserRedirectHandler',
20
'BrowserPackageListHandler',
21
'BrowserAllPackagesListHandler',
22
'BrowserDeviceListHandler',
23
'NotFoundHandler'
24
);
25
}
26
27
public function handle()
28
{
29
foreach ($this->handler_list as $possible_handler) {
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
.