php-yaoi/php-yaoi

View on GitHub

Showing 203 of 203 total issues

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

    public function fetchRow($field = null)
    {
        if (!$this->executed) {
            $this->execute();
        }
Severity: Minor
Found in src/Database/Query.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 build has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function build(Quoter $quoter = null)
    {
        if (null === $quoter) {
            $quoter = $this->database()->getDriver();
        }
Severity: Minor
Found in src/Sql/Statement.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 set has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function set($key, $value, $ttl)
    {
        if (($this->dsn->compression || $this->dsn->binary) && !is_string($value)) {
            throw new \Yaoi\Storage\Exception('String data required for binary or compression',
                \Yaoi\Storage\Exception::SCALAR_REQUIRED);
Severity: Minor
Found in src/Storage/Driver/Mongo.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 set has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function set($key, $value, $ttl)
    {
        if (is_array($key)) {
            $kk = & $this->data;
            foreach ($key as $k) {
Severity: Minor
Found in src/Storage/Driver/PhpVar.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 mock has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function mock(Mock $dataSet = null)
    {
        $driver = $this->getDriver();

        if (null === $dataSet) {
Severity: Minor
Found in src/Database.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 valid has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function valid()
    {
        //echo 'v';
        $v = $this->currentIterator->valid();
        if (!$v) {
Severity: Minor
Found in src/Rows/PageIterator.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

Avoid too many return statements within this method.
Open

            return $value->value;
Severity: Major
Found in src/Database/Driver.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                return $this->quoteSymbol(new Symbol($value->schemaName))
                . ($value->alias
                    ? ' AS ' . $this->quoteSymbol(new Symbol($value->alias))
                    : '');
    Severity: Major
    Found in src/Database/Driver.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                  return "'" . $this->escape($value) . "'";
      Severity: Major
      Found in src/Database/Driver.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                    return $this;
        Severity: Major
        Found in src/Cli/Command/Runner.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                      return '(' . $value->build($this) . ')';
          Severity: Major
          Found in src/Database/Driver.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                        return 'DEFAULT';
            Severity: Major
            Found in src/Database/Driver.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                          return $this->quoteSymbol(new Symbol($value->table->alias ?: $value->table->schemaName, $value->schemaName));
              Severity: Major
              Found in src/Database/Driver.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return true;
                Severity: Major
                Found in src/Database/Entity/Migration.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                              return $value->isStatement() ? '(' . $value->build($this) . ')' : $value->build($this);
                  Severity: Major
                  Found in src/Database/Driver.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                return $this->quoteSymbol($value);
                    Severity: Major
                    Found in src/Database/Driver.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                  return;
                      Severity: Major
                      Found in src/Cli/Command/RequestMapper.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                return $response;
                        Severity: Major
                        Found in src/Http/Client.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                      return $this;
                          Severity: Major
                          Found in src/Cli/Command/Runner.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                            return new static($args[0], $args[1], $args[2], $args[3]);
                            Severity: Major
                            Found in src/BaseClass.php - About 30 mins to fix
                              Severity
                              Category
                              Status
                              Source
                              Language