kronusme/dota2-api

View on GitHub

Showing 25 of 29 total issues

Function parseLoadedMatches has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

    protected function parseLoadedMatches($leagueLiveMatches)
    {
        $leagueLiveMatches = $leagueLiveMatches->games;
        $liveMatches = array();
        if (null === $leagueLiveMatches->game) {
Severity: Minor
Found in includes/Mappers/LeagueMapper.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

File Db.php has 295 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Dota2Api\Utils;

use PDO;
Severity: Minor
Found in includes/Utils/Db.php - About 3 hrs to fix

    MatchesMapper has 22 functions (exceeds 20 allowed). Consider refactoring.
    Open

    abstract class MatchesMapper
    {
        /**
         * Search matches with a player name, exact match only
         * @var string
    Severity: Minor
    Found in includes/Mappers/MatchesMapper.php - About 2 hrs to fix

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

          private function parseScoreboard(&$liveMatch, $scoreboard, $teamSide)
          {
              $team = $scoreboard->{$teamSide};
              $liveMatch->set($teamSide.'_score', strval($team->score));
              $liveMatch->set('tower_status_' . $teamSide, strval($team->tower_state));
      Severity: Minor
      Found in includes/Mappers/LeagueMapper.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

      Method parseLoadedMatches has 56 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function parseLoadedMatches($leagueLiveMatches)
          {
              $leagueLiveMatches = $leagueLiveMatches->games;
              $liveMatches = array();
              if (null === $leagueLiveMatches->game) {
      Severity: Major
      Found in includes/Mappers/LeagueMapper.php - About 2 hrs to fix

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

            public function parse($parseTo = '')
            {
                $parseTo = str_replace('.', '', $parseTo); // allow to use '6.86' and '686'
                $p = __DIR__ . '/../../' . self::PATH . '/';
                $fullpath = $p . $this->_filename;
        Severity: Minor
        Found in includes/Data/Data.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 deletePDO has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            public function deletePDO($table, array $where = array(), $limit = 1)
            {
                $limit = (int)$limit;
                if (count($where) === 0) {
                    return false;
        Severity: Minor
        Found in includes/Utils/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 getImage has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getImage()
            {
                $path = __DIR__ . '/../../' . $this->_folder;
                $this->_canvas = imagecreatefromjpeg($path . 'dota_map.jpg');
                if ($this->_canvas === false) {
        Severity: Minor
        Found in includes/Utils/Map.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 insertManyPDO has 39 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function insertManyPDO($table, array $fields, array $data = array(), $update = false)
            {
                if (count($data) === 0) {
                    return false;
                }
        Severity: Minor
        Found in includes/Utils/Db.php - About 1 hr to fix

          Method updatePDO has 36 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function updatePDO($table, array $data, array $where = array())
              {
          
                  if (count($data) === 0) {
                      return false;
          Severity: Minor
          Found in includes/Utils/Db.php - About 1 hr to fix

            Method deletePDO has 36 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function deletePDO($table, array $where = array(), $limit = 1)
                {
                    $limit = (int)$limit;
                    if (count($where) === 0) {
                        return false;
            Severity: Minor
            Found in includes/Utils/Db.php - About 1 hr to fix

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

                  public function updatePDO($table, array $data, array $where = array())
                  {
              
                      if (count($data) === 0) {
                          return false;
              Severity: Minor
              Found in includes/Utils/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 parseScoreboard has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private function parseScoreboard(&$liveMatch, $scoreboard, $teamSide)
                  {
                      $team = $scoreboard->{$teamSide};
                      $liveMatch->set($teamSide.'_score', strval($team->score));
                      $liveMatch->set('tower_status_' . $teamSide, strval($team->tower_state));
              Severity: Minor
              Found in includes/Mappers/LeagueMapper.php - About 1 hr to fix

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

                    public function insertManyPDO($table, array $fields, array $data = array(), $update = false)
                    {
                        if (count($data) === 0) {
                            return false;
                        }
                Severity: Minor
                Found in includes/Utils/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 insertPDO has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function insertPDO($table, array $data = array())
                    {
                        if (count($data) === 0) {
                            return false;
                        }
                Severity: Minor
                Found in includes/Utils/Db.php - About 1 hr to fix

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

                      public function getImage()
                      {
                          $path = __DIR__ . '/../../' . $this->_folder;
                          $this->_canvas = imagecreatefromjpeg($path . 'dota_map.jpg');
                          if ($this->_canvas === false) {
                  Severity: Minor
                  Found in includes/Utils/Map.php - About 1 hr to fix

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

                        public function load($liveMatchId)
                        {
                            $db = Db::obtain();
                            $queryForMatch = 'SELECT * FROM ' . Db::realTablename($this->matchesTable) . ' WHERE match_id=?';
                            $queryForSlots = 'SELECT * FROM ' . Db::realTablename($this->slotsTable) . ' WHERE match_id=?';
                    Severity: Minor
                    Found in includes/Mappers/LiveMatchMapperDb.php - About 1 hr to fix

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

                          public function load()
                          {
                              $request = new Request(
                                  self::TEAMS_STEAM_URL,
                                  array(
                      Severity: Minor
                      Found in includes/Mappers/TeamsMapperWeb.php - About 1 hr to fix

                        Function load has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function load()
                            {
                                $request = new Request(
                                    self::TEAMS_STEAM_URL,
                                    array(
                        Severity: Minor
                        Found in includes/Mappers/TeamsMapperWeb.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 obtain has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            public static function obtain($server = null, $user = null, $pass = null, $database = null, $pref = null)
                        Severity: Minor
                        Found in includes/Utils/Db.php - About 35 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language