bizley/yii2-podium

View on GitHub
src/Podium.php

Summary

Maintainability
A
0 mins
Test Coverage

The class Podium has 17 fields. Consider redesigning Podium to keep the number of fields under 15.
Open

class Podium extends Module implements BootstrapInterface
{
    /**
     * @var int Admin account ID if $userComponent is not set to true.
     */
Severity: Minor
Found in src/Podium.php by phpmd

TooManyFields

Since: 0.1

Classes that have too many fields could be redesigned to have fewer fields, possibly through some nested object grouping of some of the information. For example, a class with city/state/zip fields could instead have one Address field.

Example

class Person {
   protected $one;
   private $two;
   private $three;
   [... many more fields ...]
}

Source https://phpmd.org/rules/codesize.html#toomanyfields

The class Podium has a coupling between objects value of 22. Consider to reduce the number of dependencies under 13.
Open

class Podium extends Module implements BootstrapInterface
{
    /**
     * @var int Admin account ID if $userComponent is not set to true.
     */
Severity: Minor
Found in src/Podium.php by phpmd

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

There are no issues that match your filters.

Category
Status