librenms/librenms

View on GitHub
app/ApiClients/NominatimApi.php

Summary

Maintainability
A
0 mins
Test Coverage

The property $geocoding_uri is not named in camelCase.
Open

class NominatimApi extends BaseApi implements Geocoder
{
    use GeocodingHelper;

    protected string $base_uri = 'https://nominatim.openstreetmap.org';
Severity: Minor
Found in app/ApiClients/NominatimApi.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

The property $base_uri is not named in camelCase.
Open

class NominatimApi extends BaseApi implements Geocoder
{
    use GeocodingHelper;

    protected string $base_uri = 'https://nominatim.openstreetmap.org';
Severity: Minor
Found in app/ApiClients/NominatimApi.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