kylekatarnls/sbp

View on GitHub
src/Sbp/Sbp.php

Summary

Maintainability
F
3 days
Test Coverage

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 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 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

          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 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 parseWithContainer has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

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

              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

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

                    public static function fileExists($file, &$phpFile = null)
                    {
                        $file = preg_replace('#(\.sbp)?(\.php)?$#', '', $file);
                        $sbpFile = $file.'.sbp.php';
                
                
                Severity: Minor
                Found in src/Sbp/Sbp.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 replace has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    public static function replace($content, $replace)
                    {
                        if (is_array($replace) && count($replace) === 2 && key($replace) === 0) {
                            $replace = array($replace[0] => $replace[1]);
                        }
                Severity: Minor
                Found in src/Sbp/Sbp.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

                There are no issues that match your filters.

                Category
                Status