modxcms/revolution

View on GitHub
core/model/modx/sources/modfilemediasource.class.php

Summary

Maintainability
F
2 wks
Test Coverage

File modfilemediasource.class.php has 968 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/*
 * This file is part of MODX Revolution.
 *
 * Copyright (c) MODX, LLC. All Rights Reserved.
Severity: Major
Found in core/model/modx/sources/modfilemediasource.class.php - About 2 days to fix

    Function getContainerList has a Cognitive Complexity of 99 (exceeds 5 allowed). Consider refactoring.
    Open

        public function getContainerList($path) {
            $properties = $this->getPropertyList();
            $path = $this->fileHandler->postfixSlash($path);
            $bases = $this->getBases($path);
            if (empty($bases['pathAbsolute'])) return array();
    Severity: Minor
    Found in core/model/modx/sources/modfilemediasource.class.php - About 1 day 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 getObjectsInContainer has a Cognitive Complexity of 57 (exceeds 5 allowed). Consider refactoring.
    Open

        public function getObjectsInContainer($path) {
            $properties = $this->getPropertyList();
            $dir = $this->fileHandler->postfixSlash($path);
            $bases = $this->getBases($dir);
            if (empty($bases['pathAbsolute'])) return array();
    Severity: Minor
    Found in core/model/modx/sources/modfilemediasource.class.php - About 1 day 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 getContainerList has 173 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function getContainerList($path) {
            $properties = $this->getPropertyList();
            $path = $this->fileHandler->postfixSlash($path);
            $bases = $this->getBases($path);
            if (empty($bases['pathAbsolute'])) return array();
    Severity: Major
    Found in core/model/modx/sources/modfilemediasource.class.php - About 6 hrs to fix

      Method getObjectsInContainer has 171 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function getObjectsInContainer($path) {
              $properties = $this->getPropertyList();
              $dir = $this->fileHandler->postfixSlash($path);
              $bases = $this->getBases($dir);
              if (empty($bases['pathAbsolute'])) return array();
      Severity: Major
      Found in core/model/modx/sources/modfilemediasource.class.php - About 6 hrs to fix

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

            public function getListContextMenu(DirectoryIterator $file,array $fileArray) {
                $canSave = $this->checkPolicy('save');
                $canRemove = $this->checkPolicy('remove');
                $canCreate = $this->checkPolicy('create');
                $canView = $this->checkPolicy('view');
        Severity: Minor
        Found in core/model/modx/sources/modfilemediasource.class.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

        Method getListContextMenu has 96 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getListContextMenu(DirectoryIterator $file,array $fileArray) {
                $canSave = $this->checkPolicy('save');
                $canRemove = $this->checkPolicy('remove');
                $canCreate = $this->checkPolicy('create');
                $canView = $this->checkPolicy('view');
        Severity: Major
        Found in core/model/modx/sources/modfilemediasource.class.php - About 3 hrs to fix

          Function uploadObjectsToContainer has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
          Open

              public function uploadObjectsToContainer($container,array $objects = array()) {
                  $bases = $this->getBases($container);
          
                  $fullPath = $bases['pathAbsolute'].ltrim($container,'/');
          
          
          Severity: Minor
          Found in core/model/modx/sources/modfilemediasource.class.php - About 3 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 getDefaultProperties has 78 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function getDefaultProperties() {
                  return array(
                      'basePath' => array(
                          'name' => 'basePath',
                          'desc' => 'prop_file.basePath_desc',
          Severity: Major
          Found in core/model/modx/sources/modfilemediasource.class.php - About 3 hrs to fix

            modFileMediaSource has 26 functions (exceeds 20 allowed). Consider refactoring.
            Open

            class modFileMediaSource extends modMediaSource implements modMediaSourceInterface {
                /** @var modFileHandler */
                public $fileHandler;
            
                /**
            Severity: Minor
            Found in core/model/modx/sources/modfilemediasource.class.php - About 3 hrs to fix

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

                  public function uploadObjectsToContainer($container,array $objects = array()) {
                      $bases = $this->getBases($container);
              
                      $fullPath = $bases['pathAbsolute'].ltrim($container,'/');
              
              
              Severity: Major
              Found in core/model/modx/sources/modfilemediasource.class.php - About 2 hrs to fix

                Method moveObject has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function moveObject($from,$to,$point = 'append') {
                        $success = false;
                        $fromBases = $this->getBases($from);
                        $toBases = $this->getBases($to);
                
                
                Severity: Minor
                Found in core/model/modx/sources/modfilemediasource.class.php - About 1 hr to fix

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

                      public function removeObject($objectPath) {
                          $bases = $this->getBases($objectPath);
                  
                          $fullPath = $bases['pathAbsolute'].$objectPath;
                          if (!$this->checkFiletype($fullPath)) {
                  Severity: Minor
                  Found in core/model/modx/sources/modfilemediasource.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 createContainer has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function createContainer($name,$parentContainer) {
                          $bases = $this->getBases($parentContainer.'/'.$name);
                          if ($parentContainer == '/') {
                              $parentContainer = $bases['pathAbsolute'];
                          } else {
                  Severity: Minor
                  Found in core/model/modx/sources/modfilemediasource.class.php - About 1 hr to fix

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

                        public function removeObject($objectPath) {
                            $bases = $this->getBases($objectPath);
                    
                            $fullPath = $bases['pathAbsolute'].$objectPath;
                            if (!$this->checkFiletype($fullPath)) {
                    Severity: Minor
                    Found in core/model/modx/sources/modfilemediasource.class.php - About 1 hr to fix

                      Method renameObject has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public function renameObject($oldPath,$newName) {
                              $bases = $this->getBases($oldPath);
                              $oldPath = $bases['pathAbsolute'].$oldPath;
                      
                              /** @var modFile $oldFile */
                      Severity: Minor
                      Found in core/model/modx/sources/modfilemediasource.class.php - About 1 hr to fix

                        Method renameContainer has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public function renameContainer($oldPath,$newName) {
                                $bases = $this->getBases($oldPath);
                                $oldPath = $bases['pathAbsolute'].$oldPath;
                        
                                /** @var modDirectory $oldDirectory */
                        Severity: Minor
                        Found in core/model/modx/sources/modfilemediasource.class.php - About 1 hr to fix

                          Method getBases has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              public function getBases($path = '') {
                                  $properties = $this->getProperties();
                                  $bases = array();
                                  $path = $this->fileHandler->sanitizePath($path);
                                  $bases['path'] = $properties['basePath']['value'];
                          Severity: Minor
                          Found in core/model/modx/sources/modfilemediasource.class.php - About 1 hr to fix

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

                                public function moveObject($from,$to,$point = 'append') {
                                    $success = false;
                                    $fromBases = $this->getBases($from);
                                    $toBases = $this->getBases($to);
                            
                            
                            Severity: Minor
                            Found in core/model/modx/sources/modfilemediasource.class.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 createContainer has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function createContainer($name,$parentContainer) {
                                    $bases = $this->getBases($parentContainer.'/'.$name);
                                    if ($parentContainer == '/') {
                                        $parentContainer = $bases['pathAbsolute'];
                                    } else {
                            Severity: Minor
                            Found in core/model/modx/sources/modfilemediasource.class.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 false;
                            Severity: Major
                            Found in core/model/modx/sources/modfilemediasource.class.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                          return false;
                              Severity: Major
                              Found in core/model/modx/sources/modfilemediasource.class.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                            return false;
                                Severity: Major
                                Found in core/model/modx/sources/modfilemediasource.class.php - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

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

                                    Avoid too many return statements within this method.
                                    Open

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

                                      Avoid too many return statements within this method.
                                      Open

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

                                        Avoid too many return statements within this method.
                                        Open

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

                                          Avoid too many return statements within this method.
                                          Open

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

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

                                                public function renameObject($oldPath,$newName) {
                                                    $bases = $this->getBases($oldPath);
                                                    $oldPath = $bases['pathAbsolute'].$oldPath;
                                            
                                                    /** @var modFile $oldFile */
                                            Severity: Minor
                                            Found in core/model/modx/sources/modfilemediasource.class.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

                                            Identical blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                                        if ($size[0] > $size[1]) {
                                                                            // landscape
                                                                            $imageQueryWidth = $size[0] >= $imageWidth ? $imageWidth : $size[0];
                                                                            $imageQueryHeight = 0;
                                                                            $imageWidth = $imageQueryWidth;
                                            Severity: Major
                                            Found in core/model/modx/sources/modfilemediasource.class.php and 1 other location - About 1 day to fix
                                            core/model/modx/sources/mods3mediasource.class.php on lines 520..540

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 296.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Identical blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                                    if ($size[0] > $size[1]) {
                                                                        // landscape
                                                                        $imageWidth = $size[0] >= $imageWidth ? $imageWidth : $size[0];
                                                                        $imageHeight = round($size[1] * ($imageWidth / $size[0]));
                                                                        $thumbWidth = $size[0] >= $thumbWidth ? $thumbWidth : $size[0];
                                            Severity: Major
                                            Found in core/model/modx/sources/modfilemediasource.class.php and 1 other location - About 7 hrs to fix
                                            core/model/modx/sources/mods3mediasource.class.php on lines 502..514

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 240.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                                    if ($ext == 'svg') {
                                                                        $svgString = @file_get_contents($bases['pathAbsoluteWithPath'].$fileName);
                                                                        preg_match('/(<svg[^>]*\swidth=")([\d\.]+)([a-z]*)"/si', $svgString, $svgWidth);
                                                                        preg_match('/(<svg[^>]*\sheight=")([\d\.]+)([a-z]*)"/si', $svgString, $svgHeight);
                                                                        preg_match('/(<svg[^>]*\sviewBox=")([\d\.]+(?:,|\s)[\d\.]+(?:,|\s)([\d\.]+)(?:,|\s)([\d\.]+))"/si', $svgString, $svgViewbox);
                                            Severity: Major
                                            Found in core/model/modx/sources/modfilemediasource.class.php and 1 other location - About 5 hrs to fix
                                            core/model/modx/sources/mods3mediasource.class.php on lines 244..291

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 192.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Identical blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                                            if ($size[0] > $size[1]) {
                                                                                // landscape
                                                                                $imageQueryWidth = $size[0] >= $imageWidth ? $imageWidth : $size[0];
                                                                                $imageQueryHeight = 0;
                                                                                $imageWidth = $imageQueryWidth;
                                            Severity: Major
                                            Found in core/model/modx/sources/modfilemediasource.class.php and 1 other location - About 3 hrs to fix
                                            core/model/modx/sources/mods3mediasource.class.php on lines 263..275

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 158.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Identical blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                                    if (!empty($svgViewbox)) {
                                                                        // get width and height from viewbox attribute
                                                                        $size[0] = round($svgViewbox[3]);
                                                                        $size[1] = round($svgViewbox[4]);
                                                                    } elseif (!empty($svgWidth) && !empty($svgHeight)) {
                                            Severity: Major
                                            Found in core/model/modx/sources/modfilemediasource.class.php and 1 other location - About 1 hr to fix
                                            core/model/modx/sources/mods3mediasource.class.php on lines 492..500

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 113.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                        'thumbnailType' => array(
                                                            'name' => 'thumbnailType',
                                                            'desc' => 'prop_file.thumbnailType_desc',
                                                            'type' => 'list',
                                                            'options' => array(
                                            Severity: Minor
                                            Found in core/model/modx/sources/modfilemediasource.class.php and 1 other location - About 40 mins to fix
                                            core/model/modx/sources/mods3mediasource.class.php on lines 1171..1183

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 93.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            There are no issues that match your filters.

                                            Category
                                            Status