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':
- Read upRead up
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':
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',
- Exclude checks
File MySQL.php
has 257 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php declare(strict_types=1); namespace Keboola\Datatype\Definition;
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':
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':
- Read upRead up
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':
- Read upRead up
- Exclude checks
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':
- Exclude checks
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':
- Read upRead up
- Exclude checks
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':
- Read upRead up
- Exclude checks
Avoid unused parameters such as '$basetype'. Open
public static function getTypeByBasetype(string $basetype): string
- Read upRead up
- Exclude checks
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 !== []) {
- Read upRead up