bluetree-service/container

View on GitHub

Showing 22 of 22 total issues

File ContainerObject.php has 1116 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * trait object to store data or models and allows to easily access to object
 *
 * @package     BlueContainer
Severity: Major
Found in src/ContainerObject.php - About 2 days to fix

    Function _xmlToArray has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function _xmlToArray(DOMElement $data)
        {
            $temporaryData = [];
    
            /** @var $node DOMElement */
    Severity: Minor
    Found in src/ContainerObject.php - About 4 hrs 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 _arrayToXml has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function _arrayToXml($data, Xml $xml, $addCdata, $parent)
        {
            foreach ($data as $key => $value) {
                $key        = str_replace(' ', '_', $key);
                $attributes = [];
    Severity: Minor
    Found in src/ContainerObject.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 _xmlToArray has 41 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function _xmlToArray(DOMElement $data)
        {
            $temporaryData = [];
    
            /** @var $node DOMElement */
    Severity: Minor
    Found in src/ContainerObject.php - About 1 hr to fix

      Method _arrayToXml has 39 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function _arrayToXml($data, Xml $xml, $addCdata, $parent)
          {
              foreach ($data as $key => $value) {
                  $key        = str_replace(' ', '_', $key);
                  $attributes = [];
      Severity: Minor
      Found in src/ContainerObject.php - About 1 hr to fix

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

            public function __construct($options = [])
            {
                $this->_options             = array_merge($this->_options, $options);
                $data                       = $this->_options['data'];
                $this->_integerKeyPrefix    = $this->_options['integer_key_prefix'];
        Severity: Minor
        Found in src/ContainerObject.php - About 1 hr to fix

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

              public function __call($method, $arguments)
              {
                  switch (true) {
                      case substr($method, 0, 3) === 'get':
                          $key = $this->_convertKeyNames(substr($method, 3));
          Severity: Minor
          Found in src/ContainerObject.php - About 1 hr to fix

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

                public function __construct($options = [])
                {
                    $this->_options             = array_merge($this->_options, $options);
                    $data                       = $this->_options['data'];
                    $this->_integerKeyPrefix    = $this->_options['integer_key_prefix'];
            Severity: Minor
            Found in src/ContainerObject.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 _convertArrayDataToXml has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                    $value,
                    $addCdata,
                    Xml $xml,
                    $key,
                    $parent,
            Severity: Minor
            Found in src/ContainerObject.php - About 45 mins to fix

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

                  protected function _validateDataKey($key, $data)
                  {
                      $dataOkFlag = true;
              
                      if (!$this->_validationOn) {
              Severity: Minor
              Found in src/ContainerObject.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 $dataOrigin <= $dataCheck;
              Severity: Major
              Found in src/ContainerObject.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                return $dataOrigin >= $dataCheck;
                Severity: Major
                Found in src/ContainerObject.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                  return null;
                  Severity: Major
                  Found in src/ContainerObject.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                    return $this->destroy($key);
                    Severity: Major
                    Found in src/ContainerObject.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                      return $dataOrigin > $dataCheck;
                      Severity: Major
                      Found in src/ContainerObject.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                        return $this->clear($key);
                        Severity: Major
                        Found in src/ContainerObject.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                          return $dataOrigin < $dataCheck;
                          Severity: Major
                          Found in src/ContainerObject.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                            return $this->_compareData($arguments[0], $key, $val, '===');
                            Severity: Major
                            Found in src/ContainerObject.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                              return false;
                              Severity: Major
                              Found in src/ContainerObject.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                                return $this->restore($key);
                                Severity: Major
                                Found in src/ContainerObject.php - About 30 mins to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language