Showing 108 of 120 total issues

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

    protected function processItems($action, $config, $items, $owner = null, $processOldOwner = true)
Severity: Minor
Found in src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Handler.php - About 35 mins to fix

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

        public function __construct($config, $type, $builder, $result, $immediateOnly = false)
    Severity: Minor
    Found in src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/MapQuery.php - About 35 mins to fix

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

          public function mapQuery($config, $type, $builder, $result, $immediateOnly = false)
      Severity: Minor
      Found in src/PHPixie/ORM/Relationships/Type/NestedSet/Steps.php - About 35 mins to fix

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

            public function mapPreload($side, $preloadProperty, $reusableResult, $plan, $relatedLoader)
        Severity: Minor
        Found in src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Handler.php - About 35 mins to fix

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

              public function preloader($side, $modelConfig, $result, $loader, $pivotResult)
          Severity: Minor
          Found in src/PHPixie/ORM/Relationships/Type/ManyToMany.php - About 35 mins to fix

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

                public function addOperatorCondition($logic, $negate, $field, $operator, $values)
            Severity: Minor
            Found in src/PHPixie/ORM/Conditions/Builder/Proxy.php - About 35 mins to fix

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

                  public function addWhereOperatorCondition($logic, $negate, $field, $operator, $values);
              Severity: Minor
              Found in src/PHPixie/ORM/Conditions/Builder.php - About 35 mins to fix

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

                    public function addWhereOperatorCondition($logic, $negate, $field, $operator, $values)
                Severity: Minor
                Found in src/PHPixie/ORM/Conditions/Builder/Container.php - About 35 mins to fix

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

                      public function mapPreload($side, $property, $result, $plan, $relatedLoader)
                  Severity: Minor
                  Found in src/PHPixie/ORM/Relationships/Type/NestedSet/Handler.php - About 35 mins to fix

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

                        public function mapPreload($side, $property, $result, $plan, $loader)
                    Severity: Minor
                    Found in src/PHPixie/ORM/Relationships/Type/Embeds/Handler.php - About 35 mins to fix

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

                          public function prepareNode($id, $left, $rootId, $innerWidth, $depth)
                      Severity: Minor
                      Found in src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/MoveChild.php - About 35 mins to fix

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

                            public function handleDelete($side, $reusableResult, $plan, $sidePath)
                            {
                                $config = $side->config();
                                $itemKey = $config->ownerKey;
                                $itemModel = $config->itemModel;
                        Severity: Minor
                        Found in src/PHPixie/ORM/Relationships/Type/OneTo/Handler.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 resetProperties has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function resetProperties($side, $items)
                            {
                                $opposing = $this->getOpposing($side->type());
                                $itemsProperty = $side->config()->get($opposing.'Property');
                        
                        Severity: Minor
                        Found in src/PHPixie/ORM/Relationships/Type/ManyToMany/Handler.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 asObject has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function asObject($recursive = false)
                            {
                                $this->requirePropertyNames();
                                    
                                $data = $this->data->data();
                        Severity: Minor
                        Found in src/PHPixie/ORM/Models/Model/Implementation/Entity.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 processRange has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            protected function processRange($left, $right)
                            {
                                $key = $this->insertRange($left, $right);
                                if($left + 1 == $right) {
                                    return true;
                        Severity: Minor
                        Found in src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/AssertSafeDelete.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

                        Avoid too many return statements within this method.
                        Open

                                return $entity;
                        Severity: Major
                        Found in src/PHPixie/ORM/Loaders/Loader/Proxy/Editable.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                  return false;
                          Severity: Major
                          Found in src/PHPixie/ORM/Mappers/Conditions/Optimizer.php - About 30 mins to fix

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

                                public function validateSubtree($data)
                                {
                                    $leftKey = $this->config->leftKey;
                                    $rightKey = $this->config->rightKey;
                            
                            
                            Severity: Minor
                            Found in src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/AssertSafeDelete.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 asArray has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function asArray($entitiesAsObjects = false, $keyField = null)
                                {
                                    $array = array();
                                    $withKey = $keyField === null;
                            
                            
                            Severity: Minor
                            Found in src/PHPixie/ORM/Loaders/Loader.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 getAdjustment has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                protected function getAdjustment($offset)
                                {
                                    $low = 0;
                                    $count = count($this->existingBefore);
                                    $high =  $count - 1;
                            Severity: Minor
                            Found in src/PHPixie/ORM/Loaders/Loader/Proxy/Editable.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