speedworks/speedy

View on GitHub

Showing 27 of 149 total issues

Function GiveError has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
Open

    public static function GiveError($errorCode, $errorMessage)
    {
        if($errorCode==400)
        {
            header("HTTP/1.0 400 Bad Request");
Severity: Minor
Found in Core/Classes/System.php - About 6 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 selectionQueryMaker has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
Open

    protected function selectionQueryMaker()
    {
        $this->query = 'SELECT '.$this->selects.' FROM '.$this->table;
        $where="";
        $flag = 0;
Severity: Minor
Found in Core/Classes/DB.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 ErrorHandler has 75 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function ErrorHandler($errno, $errstr, $errfile, $errline)
{
    if (!(error_reporting() & $errno))
    {
        return;
Severity: Major
Found in public/index.php - About 3 hrs to fix

    Method selectionQueryMaker has 75 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function selectionQueryMaker()
        {
            $this->query = 'SELECT '.$this->selects.' FROM '.$this->table;
            $where="";
            $flag = 0;
    Severity: Major
    Found in Core/Classes/DB.php - About 3 hrs to fix

      Function FilterInput has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function FilterInput($inData, $keepHTML=false)
          {
              if(is_array($inData))
              {
                  $outData=array();
      Severity: Minor
      Found in Core/Classes/System.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 Authorize has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          public function Authorize($authType, $redirectTo=null)
          {
              $auth = new BaseAuth();
              if($authType == "session")
              {
      Severity: Minor
      Found in Core/Middleware/Auth.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 Authenticate has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          public function Authenticate()
          {
              $auth = new BaseAuth();
              if($this->type == "KEY")
              {
      Severity: Minor
      Found in Core/Middleware/Auth.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

      File DB.php has 251 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php
      /**
       * Created by PhpStorm.
       * @Author : Shakti Phartiyal
       * Date: 11/29/16
      Severity: Minor
      Found in Core/Classes/DB.php - About 2 hrs to fix

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

            public static function GiveError($errorCode, $errorMessage)
            {
                if($errorCode==400)
                {
                    header("HTTP/1.0 400 Bad Request");
        Severity: Minor
        Found in Core/Classes/System.php - About 1 hr to fix

          Method FilterInput has 39 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public static function FilterInput($inData, $keepHTML=false)
              {
                  if(is_array($inData))
                  {
                      $outData=array();
          Severity: Minor
          Found in Core/Classes/System.php - About 1 hr to fix

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

                public function where()
                {
                    $numArgs = func_num_args();
                    $args = func_get_args();
                    $col = null;
            Severity: Minor
            Found in Core/Classes/DB.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 orWhere has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
            Open

                public function orWhere()
                {
                    $numArgs = func_num_args();
                    $args = func_get_args();
                    $col = null;
            Severity: Minor
            Found in Core/Classes/DB.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 Pass has 34 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public static function Pass($requestUri, $requestMethod, $requestData, $rawData)
                {
                    if(!array_key_exists($requestMethod,Route::$URLS))
                    {
                        System::GiveError(405,"Method not allowed");
            Severity: Minor
            Found in Core/Bridge.php - About 1 hr to fix

              Method corePHPMailer has 33 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private function corePHPMailer($options)
                  {
                      $options = null;
                      $this->mailHeaders[] = "MIME-Version: 1.0";
                      $this->mailHeaders[] = "Content-Type: ".$this->mailContentType;
              Severity: Minor
              Found in Core/Classes/Mailer.php - About 1 hr to fix

                Method where has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function where()
                    {
                        $numArgs = func_num_args();
                        $args = func_get_args();
                        $col = null;
                Severity: Minor
                Found in Core/Classes/DB.php - About 1 hr to fix

                  Method orWhere has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function orWhere()
                      {
                          $numArgs = func_num_args();
                          $args = func_get_args();
                          $col = null;
                  Severity: Minor
                  Found in Core/Classes/DB.php - About 1 hr to fix

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

                        public function Authorize($authType, $redirectTo=null)
                        {
                            $auth = new BaseAuth();
                            if($authType == "session")
                            {
                    Severity: Minor
                    Found in Core/Middleware/Auth.php - About 1 hr to fix

                      Method view has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public static function view($view, $arrayParams = [], $exit = false)
                          {
                              $loader = new Twig_Loader_Filesystem(__DIR__.'/../../Views');
                              $cache = __DIR__.'/../../Storage/Cache/Views';
                              if(!$_ENV['cache_template'])
                      Severity: Minor
                      Found in Core/Classes/BaseController.php - About 1 hr to fix

                        Method Authenticate has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public function Authenticate()
                            {
                                $auth = new BaseAuth();
                                if($this->type == "KEY")
                                {
                        Severity: Minor
                        Found in Core/Middleware/Auth.php - About 1 hr to fix

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

                          function ErrorHandler($errno, $errstr, $errfile, $errline)
                          {
                              if (!(error_reporting() & $errno))
                              {
                                  return;
                          Severity: Minor
                          Found in public/index.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

                          Severity
                          Category
                          Status
                          Source
                          Language