librenms/librenms

View on GitHub
app/ApiClients/BaseApi.php

Summary

Maintainability
A
0 mins
Test Coverage

The property $base_uri is not named in camelCase.
Open

class BaseApi
{
    protected string $base_uri = '';
    protected int $timeout = 3;
    private ?\Illuminate\Http\Client\PendingRequest $client = null;
Severity: Minor
Found in app/ApiClients/BaseApi.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

There are no issues that match your filters.

Category
Status