MCMatters/import-io-api

View on GitHub

Showing 7 of 7 total issues

File Store.php has 375 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

declare(strict_types=1);

namespace McMatters\ImportIo\Endpoints;
Severity: Minor
Found in src/Endpoints/Store.php - About 5 hrs to fix

    Store has 28 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Store extends Endpoint
    {
        public const STATE_PENDING = 'PENDING';
        public const STATE_FINISHED = 'FINISHED';
        public const STATE_FAILED = 'FAILED';
    Severity: Minor
    Found in src/Endpoints/Store.php - About 3 hrs to fix

      Method getAllEntities has 31 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function getAllEntities(
              string $method,
              array $args = [],
              array $filters = [],
              bool $oldest = true
      Severity: Minor
      Found in src/Endpoints/Store.php - About 1 hr to fix

        Function getAllDataFromCrawlRuns has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getAllDataFromCrawlRuns(
                string $extractorId,
                bool $flatten = true
            ): array {
                $crawlRuns = $this->getAllCrawlRuns($extractorId);
        Severity: Minor
        Found in src/Endpoints/Store.php - About 1 hr 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

        Function getLastReportForExtractor has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getLastReportForExtractor(string $extractorId): array
            {
                $reports = [];
        
                foreach ($this->getAllReportRunsForExtractor($extractorId) as $reportRun) {
        Severity: Minor
        Found in src/Endpoints/Store.php - About 45 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 too many return statements within this method.
        Open

                        return 'jsonl';
        Severity: Major
        Found in src/Endpoints/Store.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                          return 'xslx';
          Severity: Major
          Found in src/Endpoints/Store.php - About 30 mins to fix
            Severity
            Category
            Status
            Source
            Language