keboola/php-datatypes

View on GitHub
src/Definition/Synapse.php

Summary

Maintainability
D
2 days
Test Coverage

Showing 17 of 17 total issues

The class Synapse has an overall complexity of 66 which is very high. The configured complexity threshold is 50.
Open

class Synapse extends Common
{
public const METADATA_BACKEND = 'synapse';
public const TYPE_DECIMAL = 'DECIMAL';
public const TYPE_NUMERIC = 'NUMERIC';
Severity: Minor
Found in src/Definition/Synapse.php by phpmd

Function validateLength has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_FLOAT:
Severity: Minor
Found in src/Definition/Synapse.php - About 2 hrs to fix

Method validateLength has 50 lines of code (exceeds 25 allowed). Consider refactoring.
Open

private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_FLOAT:
Severity: Minor
Found in src/Definition/Synapse.php - About 2 hrs to fix

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

    public function getBasetype(): string
    {
    switch (strtoupper($this->type)) {
    case self::TYPE_INT:
    case self::TYPE_BIGINT:
    Severity: Minor
    Found in src/Definition/Synapse.php - About 1 hr to fix

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

      public function getBasetype(): string
      {
      switch (strtoupper($this->type)) {
      case self::TYPE_INT:
      case self::TYPE_BIGINT:
      Severity: Minor
      Found in src/Definition/Synapse.php - About 45 mins to fix

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

      public function getSQLDefinition(): string
      {
      $definition = $this->getType();
      $length = $this->getLength();
      if ($length !== null && $length !== '') {
      Severity: Minor
      Found in src/Definition/Synapse.php - About 35 mins to fix

      Avoid too many return statements within this method.
      Open

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

        Avoid too many return statements within this method.
        Open

        return self::TYPE_NVARCHAR;
        Severity: Major
        Found in src/Definition/Synapse.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

          return self::TYPE_NUMERIC;
          Severity: Major
          Found in src/Definition/Synapse.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

            return self::TYPE_DATETIME2;
            Severity: Major
            Found in src/Definition/Synapse.php - About 30 mins to fix

              The method getDefaultLength() has a Cyclomatic Complexity of 10. The configured cyclomatic complexity threshold is 10.
              Open

              public function getDefaultLength()
              {
              switch (strtoupper($this->getType())) {
              case self::TYPE_FLOAT:
              return self::MAX_LENGTH_FLOAT;
              Severity: Minor
              Found in src/Definition/Synapse.php by phpmd

              The method validateLength() has a Cyclomatic Complexity of 20. The configured cyclomatic complexity threshold is 10.
              Open

              private function validateLength(string $type, $length = null): void
              {
              $valid = true;
              switch (strtoupper($type)) {
              case self::TYPE_FLOAT:
              Severity: Minor
              Found in src/Definition/Synapse.php by phpmd

              The method getBasetype() has a Cyclomatic Complexity of 16. The configured cyclomatic complexity threshold is 10.
              Open

              public function getBasetype(): string
              {
              switch (strtoupper($this->type)) {
              case self::TYPE_INT:
              case self::TYPE_BIGINT:
              Severity: Minor
              Found in src/Definition/Synapse.php by phpmd

              Avoid using static access to class 'Keboola\Datatype\Definition\BaseType' in method 'getTypeByBasetype'.
              Open

              if (!BaseType::isValid($basetype)) {
              Severity: Minor
              Found in src/Definition/Synapse.php by phpmd

              The method getSQLDefinition uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

              } else {
              $length = $this->getDefaultLength();
              if ($length !== null) {
              $definition .= sprintf('(%s)', $length);
              }
              Severity: Minor
              Found in src/Definition/Synapse.php by phpmd

              Similar blocks of code found in 3 locations. Consider refactoring.
              Open

              public static function getTypeByBasetype(string $basetype): string
              {
              $basetype = strtoupper($basetype);
               
              if (!BaseType::isValid($basetype)) {
              Severity: Major
              Found in src/Definition/Synapse.php and 2 other locations - About 4 hrs to fix
              src/Definition/Exasol.php on lines 413..439
              src/Definition/Snowflake.php on lines 341..367

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

              public const TYPES = [
              self::TYPE_DECIMAL, self::TYPE_NUMERIC,
              self::TYPE_FLOAT, self::TYPE_REAL,
              self::TYPE_MONEY, self::TYPE_SMALLMONEY,
              self::TYPE_BIGINT, self::TYPE_INT, self::TYPE_SMALLINT, self::TYPE_TINYINT,
              Severity: Major
              Found in src/Definition/Synapse.php and 1 other location - About 3 hrs to fix
              src/Definition/Teradata.php on lines 178..204
              Category
              Status