src/classes/jblond/router/Responses.php
The variable $header_array is not named in camelCase. Open
Open
public function headers(array $header_array): void
{
foreach ($header_array as $header => $value) {
$this->header($header, $value);
}
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}