samsonos/php_compressor

View on GitHub

Showing 38 of 38 total issues

Method removeUSE has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function removeUSE($code)
    {
        // Find all uses in file
        $matches = array();
        if (preg_match_all(self::PAT_USE, $code, $matches)) {
Severity: Minor
Found in src/Code.php - About 1 hr to fix

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

        public function process()
        {
            if ($this->_isXhtml === null) {
                $this->_isXhtml = (false !== strpos($this->_html, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML'));
            }
    Severity: Minor
    Found in src/Minify_HTML.php - About 1 hr to fix

      Method code_array_to_str has 41 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function code_array_to_str(array $code, $no_ns = false)
          {
              // Соберем весь PHP код модуля
              $php_code = '';
              foreach ($code as $ns => $files) {
      Severity: Minor
      Found in src/Compressor.php - About 1 hr to fix

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

            public function findAllFires($code)
            {
                // Resulting collection of arrays
                $events = array();
        
        
        Severity: Minor
        Found in src/EventCompressor.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 compress_module has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function compress_module(iModule &$module, ResourceMap &$data)
            {
                // Идентификатор модуля
                $id = $module->id();
        
        
        Severity: Minor
        Found in src/Compressor.php - About 1 hr to fix

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

              public function compressResources()
              {
                  // Build output module path
                  $destination = $id == 'local' ? '' : $id.'/';
          
          
          Severity: Minor
          Found in src/Module.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 update has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function update($fromFilePath, $toFilePath)
              {
                  // Read source file
                  $text = file_get_contents($fromFilePath);
          
          
          Severity: Minor
          Found in src/resource/CSS.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 isValid has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function isValid($filePath)
              {
                  $this->parent->log(' - Validating file[##]', $filePath);
          
                  // Does this file exists
          Severity: Minor
          Found in src/resource/Generic.php - About 55 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 compress has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              public function compress($fromFilePath, $toFilePath)
              {
                  $this->parent->log(' - Compressing from file[##] to [##]', $fromFilePath, $toFilePath);
          
                  // Compress only valid resources
          Severity: Minor
          Found in src/resource/Generic.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 removeUSEStatement has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              private function removeUSEStatement($code, array $classes)
              {
                  // Iterate found use statements
                  foreach (array_unique($classes) as $full_class) {
                      // Ignore trait uses
          Severity: Minor
          Found in src/Compressor.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 transformClassName has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              private function transformClassName($source, $className, $php, $ns)
              {
                  // Create copy
                  $nClassName = trim($className);
          
          
          Severity: Minor
          Found in src/Compressor.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 removeUSE has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              public function removeUSE($code)
              {
                  // Find all uses in file
                  $matches = array();
                  if (preg_match_all(self::PAT_USE, $code, $matches)) {
          Severity: Minor
          Found in src/Code.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 __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

                  Compressor & $compressor,
                  Module $resolver,
                  $ignoredExtensions = array(),
                  $ignoredFiles = array(),
                  $ignoredFolders = array())
          Severity: Minor
          Found in src/resource/CSS.php - About 35 mins to fix

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

                public function __construct($output = 'out/', $debug = false, $environment = 'prod', $phpVersion = PHP_VERSION, $configuration = array())
            Severity: Minor
            Found in src/Compressor.php - About 35 mins to fix

              Avoid too many return statements within this method.
              Open

                      return $main_code;
              Severity: Major
              Found in src/Compressor.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return $main_code;
                Severity: Major
                Found in src/Code.php - About 30 mins to fix

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

                      private function classes_to_ns_files($collection, & $classes = array())
                      {
                          // Соберем коллекцию загруженных интерфейсов их файлов по пространствам имен
                          foreach ($collection as $class) {
                              $ac = new \ReflectionClass($class);
                  Severity: Minor
                  Found in src/Compressor.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 compress has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function compress()
                      {
                          // Cache module ID
                          $id = $this->module->id();
                  
                  
                  Severity: Minor
                  Found in src/Module.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