jon48/webtrees-lib

View on GitHub
app/Module/WelcomeBlock/Services/MatomoStatsService.php

Summary

Maintainability
A
2 hrs
Test Coverage

Method visits has 33 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function visits(WelcomeBlockModule $module, int $block_id, string $period): ?int
    {
        $settings = $module->matomoSettings($block_id);

        if (
Severity: Minor
Found in app/Module/WelcomeBlock/Services/MatomoStatsService.php - About 1 hr to fix

    Function visits has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function visits(WelcomeBlockModule $module, int $block_id, string $period): ?int
        {
            $settings = $module->matomoSettings($block_id);
    
            if (
    Severity: Minor
    Found in app/Module/WelcomeBlock/Services/MatomoStatsService.php - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Avoid using static access to class '\Carbon\Carbon' in method 'visitsThisYear'.
    Open

                Carbon::now()->addDay()->startOfDay()->diffInSeconds(Carbon::now()) // Valid until midnight

    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();
        }
    }

    Source https://phpmd.org/rules/cleancode.html#staticaccess

    Avoid using static access to class '\GuzzleHttp\HandlerStack' in method 'httpHandler'.
    Open

                $this->handler = HandlerStack::create();

    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();
        }
    }

    Source https://phpmd.org/rules/cleancode.html#staticaccess

    Avoid using empty try-catch blocks in visits.
    Open

                } catch (GuzzleException $ex) {
                }

    EmptyCatchBlock

    Since: 2.7.0

    Usually empty try-catch is a bad idea because you are silently swallowing an error condition and then continuing execution. Occasionally this may be the right thing to do, but often it's a sign that a developer saw an exception, didn't know what to do about it, and so used an empty catch to silence the problem.

    Example

    class Foo {
    
      public function bar()
      {
          try {
              // ...
          } catch (Exception $e) {} // empty catch block
      }
    }

    Source https://phpmd.org/rules/design.html#emptycatchblock

    There are no issues that match your filters.

    Category
    Status