src/Bus/Character.php
Method fire
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function fire(): void
{
$this->addPublicJobs();
if (! is_null($this->token))
Method addAuthenticatedJobs
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected function addAuthenticatedJobs()
{
$this->addAuthenticatedJob(new Roles($this->token));
$this->addAuthenticatedJob(new Titles($this->token));
$this->addAuthenticatedJob(new Clones($this->token));
The class Character has a coupling between objects value of 45. Consider to reduce the number of dependencies under 13. Open
Open
class Character extends Bus
{
/**
* @var int
*/
- Read upRead up
- Exclude checks
CouplingBetweenObjects
Since: 1.1.0
A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability
Example
class Foo {
/**
* @var \foo\bar\X
*/
private $x = null;
/**
* @var \foo\bar\Y
*/
private $y = null;
/**
* @var \foo\bar\Z
*/
private $z = null;
public function setFoo(\Foo $foo) {}
public function setBar(\Bar $bar) {}
public function setBaz(\Baz $baz) {}
/**
* @return \SplObjectStorage
* @throws \OutOfRangeException
* @throws \InvalidArgumentException
* @throws \ErrorException
*/
public function process(\Iterator $it) {}
// ...
}
Source https://phpmd.org/rules/design.html#couplingbetweenobjects
Avoid using static access to class '\Seat\Eveapi\Models\Character\CharacterInfo' in method 'fire'. Open
Open
$character = CharacterInfo::firstOrNew(
['character_id' => $this->character_id],
['name' => "Unknown Character : {$this->character_id}"]
);
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}