evseevnn/php-cassandra-binary

View on GitHub

Showing 52 of 52 total issues

Avoid too many return statements within this method.
Open

                return $this->readInt($isCollectionElement);
Severity: Major
Found in src/Protocol/Response/DataStream.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                        return "Unprepared: {$stream->readShort()}";
    Severity: Major
    Found in src/Protocol/Response.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                          return "Write_timeout. Error data: {$errorData}";
      Severity: Major
      Found in src/Protocol/Response.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                        return $this->getUUID();
        Severity: Major
        Found in src/Protocol/BinaryData.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                          return $this->readBoolean();
          Severity: Major
          Found in src/Protocol/Response/DataStream.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                    return null;
            Severity: Major
            Found in src/Protocol/Response.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return $this->getList();
              Severity: Major
              Found in src/Protocol/BinaryData.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                return $this->readBytes($isCollectionElement);
                Severity: Major
                Found in src/Protocol/Response/DataStream.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                  return $this->readUuid($isCollectionElement);
                  Severity: Major
                  Found in src/Protocol/Response/DataStream.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                    return $this->getFloat();
                    Severity: Major
                    Found in src/Protocol/BinaryData.php - About 30 mins to fix

                      Function appendQueryToStack has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          private function appendQueryToStack($cql, array $values) {
                              $valuesModified = false;
                              foreach($values as $key => $value) {
                                  if (is_string($key) && isset($this->batchQueryData[$key])) {
                                      $newFieldName = $key . self::POSTFIX_DUPLICATE_QUERY_VARIABLE;
                      Severity: Minor
                      Found in src/Database.php - About 25 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 __construct has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function __construct(DataStream $stream, array $metadata) {
                              $this->columns = $metadata['columns'];
                              $this->columnCount = $metadata['columnCount'];
                              $this->rowCount = $stream->readInt();
                              for ($i = 0; $i < $this->rowCount; ++$i) {
                      Severity: Minor
                      Found in src/Protocol/Response/Rows.php - About 25 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