The parameter $template_name is not named in camelCase.
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.
Both the $myVar assignment in line 1 and the $higher assignment in line 2
are dead. The first because $myVar is never used and the second because
$higher is always overwritten for every possible time line.
Loading history...
40
41
$templates_trait = new \ReflectionClass('App\PageTemplates');
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.