lemonphp/json-api

View on GitHub

Showing 6 of 12 total issues

Method resourceProvider has 55 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function resourceProvider()
    {
        return [
            [
                [
Severity: Major
Found in tests/Document/Resource/ResourceTest.php - About 2 hrs to fix

    Method testFromTheReadmeFile has 38 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function testFromTheReadmeFile()
        {
            $json = <<<JSON
    {
        "data": {
    Severity: Minor
    Found in tests/IntegrationTest.php - About 1 hr to fix

      Method testIncludedResourcesRepresentedAsArray has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function testIncludedResourcesRepresentedAsArray()
          {
              $apple = new ResourceObject('apples', '1');
              $apple->setAttribute('color', 'red');
              $orange = new ResourceObject('oranges', '1');
      Severity: Minor
      Found in tests/Document/CompoundDocumentTest.php - About 1 hr to fix

        Method testErrorWithFullSetOfProperties has 30 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function testErrorWithFullSetOfProperties()
            {
                $e = new Error();
                $e->setId('test_id');
                $e->setAboutLink('http://localhost');
        Severity: Minor
        Found in tests/Document/ErrorTest.php - About 1 hr to fix

          Function enforceFullLinkage has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              private function enforceFullLinkage()
              {
                  if ($this->isSparse || empty($this->included)) {
                      return;
                  }
          Severity: Minor
          Found in src/Document.php - About 35 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

          Function identifies has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              public function identifies(ResourceInterface $resource): bool
              {
                  if ($this->relationships) {
                      /** @var Relationship $relationship */
                      foreach ($this->relationships as $relationship) {
          Severity: Minor
          Found in src/Document/Resource/ResourceObject.php - About 25 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

          Severity
          Category
          Status
          Source
          Language