modxcms/revolution

View on GitHub
core/model/modx/rest/modrestserver.class.php

Summary

Maintainability
D
1 day
Test Coverage

Function array2xml has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring.
Open

    protected function array2xml($array,$level=1) {
        $xml = '';
        foreach ($array as $key=>$value) {
            $key = strtolower($key);
            if (is_array($value)) {
Severity: Minor
Found in core/model/modx/rest/modrestserver.class.php - About 5 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 handle has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    public function handle() {
        $scriptProperties = array();
        $scriptProperties[modRestServer::OPT_REQUEST_PATH] = $this->computePath();

        $output = '';
Severity: Minor
Found in core/model/modx/rest/modrestserver.class.php - About 2 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

Method array2xml has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function array2xml($array,$level=1) {
        $xml = '';
        foreach ($array as $key=>$value) {
            $key = strtolower($key);
            if (is_array($value)) {
Severity: Minor
Found in core/model/modx/rest/modrestserver.class.php - About 1 hr to fix

    Function encode has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        public function encode($data,$root = '') {
            $output = '';
    
            $format = $this->modx->getOption(modRestServer::OPT_FORMAT,$_REQUEST,$this->config[modRestServer::OPT_FORMAT]);
            switch ($format) {
    Severity: Minor
    Found in core/model/modx/rest/modrestserver.class.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 encode has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function encode($data,$root = '') {
            $output = '';
    
            $format = $this->modx->getOption(modRestServer::OPT_FORMAT,$_REQUEST,$this->config[modRestServer::OPT_FORMAT]);
            switch ($format) {
    Severity: Minor
    Found in core/model/modx/rest/modrestserver.class.php - About 1 hr to fix

      Method handle has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function handle() {
              $scriptProperties = array();
              $scriptProperties[modRestServer::OPT_REQUEST_PATH] = $this->computePath();
      
              $output = '';
      Severity: Minor
      Found in core/model/modx/rest/modrestserver.class.php - About 1 hr to fix

        Avoid too many return statements within this method.
        Open

                return true;
        Severity: Major
        Found in core/model/modx/rest/modrestserver.class.php - About 30 mins to fix

          There are no issues that match your filters.

          Category
          Status