src/Models/Bucket.php
The method disabled_tokens is not named in camelCase. Open
Open
public function disabled_tokens()
{
return $this->belongsToMany(RefreshToken::class, 'bucket_refresh_token', 'bucket_id', 'character_id')
->onlyTrashed();
}
- Read upRead up
- Exclude checks
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
Open
public function refresh_tokens()
{
return $this->belongsToMany(RefreshToken::class, 'bucket_refresh_token', 'bucket_id', 'character_id');
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}