seatplus/eveapi

View on GitHub
src/EveapiServiceProvider.php

Summary

Maintainability
A
0 mins
Test Coverage
A
95%

Method configureHorizon has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Invalid

    public function configureHorizon()
    {
        // Require the queue_manager role to view the dashboard
        Horizon::auth(function ($request) {
            if (is_null($request->user())) {
Severity: Minor
Found in src/EveapiServiceProvider.php - About 1 hr to fix

    The class EveapiServiceProvider has a coupling between objects value of 27. Consider to reduce the number of dependencies under 13.
    Invalid

    class EveapiServiceProvider extends ServiceProvider
    {
        /**
         * The environment variable name used to setup the queue daemon balancing mode.
         */
    Severity: Minor
    Found in src/EveapiServiceProvider.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