keboola/php-datatypes

View on GitHub
src/Definition/MySQL.php

Summary

Maintainability
F
3 days
Test Coverage

Showing 10 of 12 total issues

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

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

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

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

    The class MySQL has an overall complexity of 100 which is very high. The configured complexity threshold is 50.
    Invalid

    class MySQL extends Common
    {
    public const TYPES = [
    'INTEGER', 'INT',
    'TINYINT', 'SMALLINT', 'MEDIUMINT', 'BIGINT',
    Severity: Minor
    Found in src/Definition/MySQL.php by phpmd

    File MySQL.php has 257 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
     
    declare(strict_types=1);
     
    namespace Keboola\Datatype\Definition;
    Severity: Minor
    Found in src/Definition/MySQL.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 'INT':
      case 'INTEGER':
      Severity: Minor
      Found in src/Definition/MySQL.php - About 1 hr to fix

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

        public function getBasetype(): string
        {
        switch (strtoupper($this->type)) {
        case 'INT':
        case 'INTEGER':
        Severity: Minor
        Found in src/Definition/MySQL.php - About 35 mins to fix

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

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

        The method validateLength() has 132 lines of code. Current threshold is set to 100. Avoid really long methods.
        Open

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

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

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

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

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

        Avoid unused parameters such as '$basetype'.
        Open

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

        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/MySQL.php and 2 other locations - About 6 hrs to fix
        src/Definition/Redshift.php on lines 108..127
        src/Definition/Snowflake.php on lines 168..187
        Category
        Status