atelierspierrot/internationalization

View on GitHub

Showing 33 of 50 total issues

File index.php has 449 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

/**
 * Show errors at least initially
 *
Severity: Minor
Found in demo/index.php - About 6 hrs to fix

    File I18n.php has 431 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * This file is part of the Internationalization package.
     *
     * Copyright (c) 2010-2016 Pierre Cassat <me@e-piwi.fr> and contributors
    Severity: Minor
    Found in src/I18n/I18n.php - About 6 hrs to fix

      I18n has 40 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class I18n
          extends AbstractSingleton
          implements TranslatableInterface
      {
      
      
      Severity: Minor
      Found in src/I18n/I18n.php - About 5 hrs to fix

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

            public function generate($from_file, \I18n\I18n $i18n)
            {
                $default = $i18n->getLoader()->getOption('default_language', 'en');
                $all_lang_strings = $headers = array();
        
        
        Severity: Minor
        Found in src/I18n/Generator/Csv.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

        File twig.php has 382 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        <?php
        
        /**
         * Show errors at least initially
         *
        Severity: Minor
        Found in demo/twig.php - About 5 hrs to fix

          Function _writeDb has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function _writeDb($from_file)
              {
                  $db_content = file_get_contents($from_file);
                  $parts = explode('%%', $db_content);
                  $db = array();
          Severity: Minor
          Found in src/I18n/Iana.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 parse has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
          Open

              public function parse(Twig_Token $token)
              {
                  $i18n = I18n::getInstance();
                  $lineno = $token->getLine();
                  $stream = $this->parser->getStream();
          Severity: Minor
          Found in src/I18n/Twig/PluralizeTokenParser.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

          Function parse has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
          Open

              public function parse(Twig_Token $token)
              {
                  $i18n = I18n::getInstance();
                  $lineno = $token->getLine();
                  $stream = $this->parser->getStream();
          Severity: Minor
          Found in src/I18n/Twig/TranslateTokenParser.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

          Function highlight has 63 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              $.fn.highlight = function(element_params){
                  
                  var defaults = {
                       // show source code tab
                      source: true,
          Severity: Major
          Found in demo/assets/js/highlight.js - About 2 hrs to fix

            Function _loadLanguageStrings has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
            Open

                protected function _loadLanguageStrings($throw_errors = true, $force_rebuild = false, $force_rebuild_on_update = false)
                {
                    $_fn = $this->getLoader()->buildLanguageFileName($this->lang);
                    $_f = $this->getLoader()->buildLanguageFilePath($this->lang);
            
            
            Severity: Minor
            Found in src/I18n/I18n.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

            Function hightlight_php has 55 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    hightlight_php: function(code) {
                        
                        var comments        = [];    // store comments
                        
                        var funcs    =    'abs acos acosh addcslashes addslashes ' +
            Severity: Major
            Found in demo/assets/js/highlight.js - About 2 hrs to fix

              Method parse has 54 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function parse(Twig_Token $token)
                  {
                      $i18n = I18n::getInstance();
                      $lineno = $token->getLine();
                      $stream = $this->parser->getStream();
              Severity: Major
              Found in src/I18n/Twig/PluralizeTokenParser.php - About 2 hrs to fix

                Method _loadLanguageStrings has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    protected function _loadLanguageStrings($throw_errors = true, $force_rebuild = false, $force_rebuild_on_update = false)
                    {
                        $_fn = $this->getLoader()->buildLanguageFileName($this->lang);
                        $_f = $this->getLoader()->buildLanguageFilePath($this->lang);
                
                
                Severity: Minor
                Found in src/I18n/I18n.php - About 1 hr to fix

                  Method _writeDb has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      protected function _writeDb($from_file)
                      {
                          $db_content = file_get_contents($from_file);
                          $parts = explode('%%', $db_content);
                          $db = array();
                  Severity: Minor
                  Found in src/I18n/Iana.php - About 1 hr to fix

                    Function generate has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public function generate()
                        {
                            $ok     = false;
                            $_f     = $this->getDbFilepath();
                            $i18n   = I18n::getInstance();
                    Severity: Minor
                    Found in src/I18n/Generator.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 parse has 41 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function parse(Twig_Token $token)
                        {
                            $i18n = I18n::getInstance();
                            $lineno = $token->getLine();
                            $stream = $this->parser->getStream();
                    Severity: Minor
                    Found in src/I18n/Twig/TranslateTokenParser.php - About 1 hr to fix

                      Function hightlight_css has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                              hightlight_css: function(code) {
                                  
                                  var comments        = [];    // store comments
                                  
                                  var keywords =    'background-color background-image background-position ' +
                      Severity: Minor
                      Found in demo/assets/js/highlight.js - About 1 hr to fix

                        Method generate has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public function generate($from_file, \I18n\I18n $i18n)
                            {
                                $default = $i18n->getLoader()->getOption('default_language', 'en');
                                $all_lang_strings = $headers = array();
                        
                        
                        Severity: Minor
                        Found in src/I18n/Generator/Csv.php - About 1 hr to fix

                          Function buildFootNotes has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          function buildFootNotes(){
                              var bl_sup = $('<sup />'),
                                  bl_a_hdlr = $('<a />', { 'class':'footnote_link', 'title':'See footnote' }),
                                  bl_a_back = $('<a />', { 'class':'footnote_link', 'title':'Back in content' }).html('&#8617;'),
                                  bl_note = $('<li />');
                          Severity: Minor
                          Found in demo/assets/scripts.js - About 1 hr to fix

                            Method generate has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                public function generate()
                                {
                                    $ok     = false;
                                    $_f     = $this->getDbFilepath();
                                    $i18n   = I18n::getInstance();
                            Severity: Minor
                            Found in src/I18n/Generator.php - About 1 hr to fix
                              Severity
                              Category
                              Status
                              Source
                              Language