eveseat/eveapi

View on GitHub
src/Models/Bucket.php

Summary

Maintainability
A
0 mins
Test Coverage

The method disabled_tokens is not named in camelCase.
Open

    public function disabled_tokens()
    {
        return $this->belongsToMany(RefreshToken::class, 'bucket_refresh_token', 'bucket_id', 'character_id')
            ->onlyTrashed();
    }
Severity: Minor
Found in src/Models/Bucket.php by phpmd

CamelCaseMethodName

Since: 0.2

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

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method refresh_tokens is not named in camelCase.
Open

    public function refresh_tokens()
    {
        return $this->belongsToMany(RefreshToken::class, 'bucket_refresh_token', 'bucket_id', 'character_id');
    }
Severity: Minor
Found in src/Models/Bucket.php by phpmd

CamelCaseMethodName

Since: 0.2

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

Example

class ClassName {
    public function get_name() {
    }
}

Source

There are no issues that match your filters.

Category
Status