keboola/php-datatypes

View on GitHub
src/Definition/Redshift.php

Summary

Maintainability
F
4 days
Test Coverage

Showing 14 of 15 total issues

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

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

File Redshift.php has 344 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
 
declare(strict_types=1);
 
namespace Keboola\Datatype\Definition;
Severity: Minor
Found in src/Definition/Redshift.php - About 4 hrs to fix

    Method validateCompression has 95 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    private function validateCompression(string $type, string $compression): void
    {
    $valid = true;
    $type = strtoupper($type);
    switch (strtoupper($compression)) {
    Severity: Major
    Found in src/Definition/Redshift.php - About 3 hrs to fix

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

      private function validateLength(string $type, $length = null): void
      {
      $valid = true;
      switch (strtoupper($type)) {
      case 'DECIMAL':
      Severity: Major
      Found in src/Definition/Redshift.php - About 3 hrs to fix

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

        class Redshift extends Common
        {
        public const TYPES = [
        'SMALLINT', 'INT2', 'INTEGER', 'INT', 'INT4', 'BIGINT', 'INT8',
        'DECIMAL', 'NUMERIC',
        Severity: Minor
        Found in src/Definition/Redshift.php by phpmd

        Function validateCompression has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
        Open

        private function validateCompression(string $type, string $compression): void
        {
        $valid = true;
        $type = strtoupper($type);
        switch (strtoupper($compression)) {
        Severity: Minor
        Found in src/Definition/Redshift.php - About 2 hrs to fix

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

        public function getBasetype(): string
        {
        switch (strtoupper($this->type)) {
        case 'SMALLINT':
        case 'INT2':
        Severity: Minor
        Found in src/Definition/Redshift.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 'SMALLINT':
          case 'INT2':
          Severity: Minor
          Found in src/Definition/Redshift.php - About 45 mins to fix

          The method validateLength() has an NPath complexity of 986. The configured NPath complexity threshold is 200.
          Open

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

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

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

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

          public function getBasetype(): string
          {
          switch (strtoupper($this->type)) {
          case 'SMALLINT':
          case 'INT2':
          Severity: Minor
          Found in src/Definition/Redshift.php by phpmd

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

          private function validateCompression(string $type, string $compression): void
          {
          $valid = true;
          $type = strtoupper($type);
          switch (strtoupper($compression)) {
          Severity: Minor
          Found in src/Definition/Redshift.php by phpmd

          Avoid unused parameters such as '$basetype'.
          Open

          public static function getTypeByBasetype(string $basetype): string
          Severity: Minor
          Found in src/Definition/Redshift.php by phpmd

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

          case 'NUMERIC':
          if (is_null($length) || $length === '') {
          break;
          }
          $parts = explode(',', (string) $length);
          Severity: Major
          Found in src/Definition/Redshift.php and 1 other location - About 1 day to fix
          src/Definition/Snowflake.php on lines 210..235

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

          private function getLengthFromArray(array $lengthOptions): ?string
          {
          $expectedOptions = ['character_maximum', 'numeric_precision', 'numeric_scale'];
          $diff = array_diff(array_keys($lengthOptions), $expectedOptions);
          if ($diff !== []) {
          Severity: Major
          Found in src/Definition/Redshift.php and 2 other locations - About 6 hrs to fix
          src/Definition/MySQL.php on lines 100..119
          src/Definition/Snowflake.php on lines 168..187
          Category
          Status