skqr/hateoas-bundle

View on GitHub

Showing 19 of 191 total issues

Method updateAction has 60 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function updateAction($primaryType, $ids)
    {
        try {
            $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
        } catch (NotFoundException $e) {
Severity: Major
Found in Controller/MagicAlterController.php - About 2 hrs to fix

    Method getConfigTreeBuilder has 59 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function getConfigTreeBuilder()
        {
            $treeBuilder = new TreeBuilder();
            $rootNode = $treeBuilder->root('go_integro_hateoas');
    
    
    Severity: Major
    Found in DependencyInjection/Configuration.php - About 2 hrs to fix

      Method createAction has 58 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function createAction($primaryType)
          {
              try {
                  $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
              } catch (NotFoundException $e) {
      Severity: Major
      Found in Controller/MagicAlterController.php - About 2 hrs to fix

        File MagicAlterController.php has 254 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        <?php
        /**
         * @copyright 2014 Integ S.A.
         * @license http://opensource.org/licenses/MIT The MIT License (MIT)
         * @author Javier Lorenzana <javier.lorenzana@gointegro.com>
        Severity: Minor
        Found in Controller/MagicAlterController.php - About 2 hrs to fix

          Method linkAction has 44 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function linkAction($primaryType, $id, $relationship, $ids = NULL)
              {
                  try {
                      $params = $this->get('hateoas.request_parser')
                          ->parse($this->getRequest());
          Severity: Minor
          Found in Controller/MagicAlterController.php - About 1 hr to fix

            Function createAction has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
            Open

                public function createAction($primaryType)
                {
                    try {
                        $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                    } catch (NotFoundException $e) {
            Severity: Minor
            Found in Controller/MagicAlterController.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 updateAction has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
            Open

                public function updateAction($primaryType, $ids)
                {
                    try {
                        $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                    } catch (NotFoundException $e) {
            Severity: Minor
            Found in Controller/MagicAlterController.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

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

                public function getRelationAction($primaryType, $id, $relationship)
                {
                    try {
                        $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                    } catch (NotFoundException $e) {
            Severity: Minor
            Found in Controller/MagicFetchController.php - About 1 hr to fix

              Function linkAction has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function linkAction($primaryType, $id, $relationship, $ids = NULL)
                  {
                      try {
                          $params = $this->get('hateoas.request_parser')
                              ->parse($this->getRequest());
              Severity: Minor
              Found in Controller/MagicAlterController.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

              Method deleteAction has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function deleteAction($primaryType, $ids)
                  {
                      try {
                          $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                      } catch (NotFoundException $e) {
              Severity: Minor
              Found in Controller/MagicAlterController.php - About 1 hr to fix

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

                    public function getWithFiltersAction($primaryType)
                    {
                        try {
                            $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                        } catch (NotFoundException $e) {
                Severity: Minor
                Found in Controller/MagicFetchController.php - About 1 hr to fix

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

                      public function getByIdsAction($primaryType, $ids)
                      {
                          try {
                              $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                          } catch (NotFoundException $e) {
                  Severity: Minor
                  Found in Controller/MagicFetchController.php - About 1 hr to fix

                    Method getFieldAction has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function getFieldAction($primaryType, $id, $field)
                        {
                            try {
                                $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                            } catch (NotFoundException $e) {
                    Severity: Minor
                    Found in Controller/MagicFetchController.php - About 1 hr to fix

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

                          public function deleteAction($primaryType, $ids)
                          {
                              try {
                                  $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                              } catch (NotFoundException $e) {
                      Severity: Minor
                      Found in Controller/MagicAlterController.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

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

                          public function process(ContainerBuilder $container)
                          {
                              foreach (self::$services as $service) {
                                  $name = $tag = self::SERVICE_PREFIX . $service;
                      
                      
                      Severity: Minor
                      Found in DependencyInjection/Compiler/EntityCompilerPass.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

                      Method buildHttpClient has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                              $url = NULL,
                              $username = NULL,
                              $password = NULL,
                              $contentType = self::CONTENT_JSON_API,
                              $language = self::HEADER_LOCALE
                      Severity: Minor
                      Found in Test/PHPUnit/ApiTestCase.php - About 35 mins to fix

                        Method buildHttpClient has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                                $url = NULL,
                                $username = NULL,
                                $password = NULL,
                                $contentType = self::CONTENT_JSON_API,
                                $language = self::HEADER_LOCALE
                        Severity: Minor
                        Found in Util/HttpClientUtil.php - About 35 mins to fix

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

                              public function getFieldAction($primaryType, $id, $field)
                              {
                                  try {
                                      $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                                  } catch (NotFoundException $e) {
                          Severity: Minor
                          Found in Controller/MagicFetchController.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

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

                              public function getRelationAction($primaryType, $id, $relationship)
                              {
                                  try {
                                      $params = $this->get('hateoas.request_parser')->parse($this->getRequest());
                                  } catch (NotFoundException $e) {
                          Severity: Minor
                          Found in Controller/MagicFetchController.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