kylekatarnls/sbp

View on GitHub

Showing 30 of 32 total issues

Function addBracesOnIndent has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
Open

    public static function addBracesOnIndent($content, $caller)
    {
        $content = explode("\n", $content);
        $curind = array();
        $previousRead = '';
Severity: Minor
Found in src/Sbp/Plugins/Core/Indentation.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

File Sbp.php has 454 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Sbp;

use Sbp\Plugins\Helpers\FileHelper;
Severity: Minor
Found in src/Sbp/Sbp.php - About 6 hrs to fix

    Function addPlugin has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function addPlugin($plugin, $from = null, $replacement = null)
        {
            static::init();
    
            if (is_null($from)) {
    Severity: Minor
    Found in src/Sbp/Sbp.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

    Sbp has 34 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Sbp
    {
        const COMMENT = '/* Generated By SBP */';
        const VALIDNAME = '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*';
        const NUMBER = '(?:0[xbXB])?[0-9]*\.?[0-9]+(?:[eE](?:0[xbXB])?[0-9]*\.?[0-9]+)?';
    Severity: Minor
    Found in src/Sbp/Sbp.php - About 4 hrs to fix

      Method restoreStrings has 92 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function restoreStrings($content, $caller)
          {
              $subst = constant($caller.'::SUBST');
              $value = constant($caller.'::VALUE');
              $number = constant($caller.'::NUMBER');
      Severity: Major
      Found in src/Sbp/Plugins/Core/Compiler.php - About 3 hrs to fix

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

            public static function addBracesOnIndent($content, $caller)
            {
                $content = explode("\n", $content);
                $curind = array();
                $previousRead = '';
        Severity: Major
        Found in src/Sbp/Plugins/Core/Indentation.php - About 2 hrs to fix

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

              public static function quickAccessConstants($content, $caller)
              {
                  $validSubst = call_user_func(array($caller, 'getValidStringSurrogates'));
                  $validComments = call_user_func(array($caller, 'getValidComments'));
                  $lastParsedFile = call_user_func(array($caller, 'getLastParsedFile'));
          Severity: Major
          Found in src/Sbp/Plugins/Core/Constants.php - About 2 hrs to fix

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

                protected static function getBenchmarkHtml(&$list)
                {
                    $previous = null;
                    $times = array_keys($list);
                    $len = max(0, min(2, max(array_map(function ($key) {
            Severity: Minor
            Found in src/Sbp/Sbp.php - About 1 hr to fix

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

                  public static function className($content, $caller)
                  {
                      return array(
                          '#
                          (
              Severity: Minor
              Found in src/Sbp/Plugins/Core/ClassName.php - About 1 hr to fix

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

                    public static function addPlugin($plugin, $from = null, $replacement = null)
                    {
                        static::init();
                
                        if (is_null($from)) {
                Severity: Minor
                Found in src/Sbp/Sbp.php - About 1 hr to fix

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

                      public static function register($prepend = true, $callback = null, $app = null)
                      {
                          if (!static::$registered) {
                              static::$registered = spl_autoload_register(array('\\Sbp\\Laravel\\ClassLoader', 'load'), true, $prepend);
                              if (is_null($app)) {
                  Severity: Minor
                  Found in src/Sbp/Laravel/ClassLoader.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 isBlock has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      protected static function isBlock(&$line, &$grouped, $iRead, $pattern)
                      {
                          if (substr(rtrim($line), -1) === ';') {
                              return false;
                          }
                  Severity: Minor
                  Found in src/Sbp/Plugins/Core/Indentation.php - About 1 hr to fix

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

                        protected function callOnStringValue($method, $args)
                        {
                            if (function_exists('preg_'.$method)) {
                                $function = 'preg_'.$method;
                                switch ($method) {
                    Severity: Minor
                    Found in src/Sbp/Handler.php - About 1 hr to fix

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

                          public static function init()
                          {
                              static $coreLoaded = false;
                              if (!$coreLoaded) {
                                  $coreLoaded = true;
                      Severity: Minor
                      Found in src/Sbp/Sbp.php - About 1 hr to fix

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

                            protected static function isBlock(&$line, &$grouped, $iRead, $pattern)
                            {
                                if (substr(rtrim($line), -1) === ';') {
                                    return false;
                                }
                        Severity: Minor
                        Found in src/Sbp/Plugins/Core/Indentation.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 restoreStrings has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public static function restoreStrings($content, $caller)
                            {
                                $subst = constant($caller.'::SUBST');
                                $value = constant($caller.'::VALUE');
                                $number = constant($caller.'::NUMBER');
                        Severity: Minor
                        Found in src/Sbp/Plugins/Core/Compiler.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

                        Consider simplifying this complex logical expression.
                        Open

                                        if (($espaces <= $indent || ($indent === -1 && $espaces === 0)) && preg_match('#(?<![a-zA-Z0-9_\x7f-\xff$\(])('.constant($caller.'::ALLOW_EMPTY_BLOCKS').')(?![a-zA-Z0-9_\x7f-\xff])#', $previousRead) && strpos($previousRead, '{') === false) {
                                            $previousRead .= preg_match('`^\s*namespace\s`', $previousRead) || (preg_match('`^\s*([a-zA-Z_]+\s+)*function\s`', $previousRead) && $inInterface !== false) ? ';' : ' {}';
                                        }
                        Severity: Major
                        Found in src/Sbp/Plugins/Core/Indentation.php - About 1 hr to fix

                          Function writeIn has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                          Open

                              public static function writeIn($directory = null, $callback = null)
                              {
                                  if (is_null($directory)) {
                                      $directory = static::SAME_DIR;
                                  }
                          Severity: Minor
                          Found in src/Sbp/Sbp.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 loadPlugins has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private static function loadPlugins($content)
                              {
                                  foreach (static::$plugins as $name => $replace) {
                                      if (is_null($replace)) {
                                          continue;
                          Severity: Minor
                          Found in src/Sbp/Sbp.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 container has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              public static function container($container, $file, $content = null, $basename = null, $name = null)
                          Severity: Minor
                          Found in src/Sbp/Sbp.php - About 35 mins to fix
                            Severity
                            Category
                            Status
                            Source
                            Language