Function validateLength
has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case 'DECIMAL':
File Redshift.php
has 344 lines of code (exceeds 250 allowed). Consider refactoring.
<?php
declare(strict_types=1);
namespace Keboola\Datatype\Definition;
Method validateCompression
has 95 lines of code (exceeds 25 allowed). Consider refactoring.
private function validateCompression(string $type, string $compression): void
{
$valid = true;
$type = strtoupper($type);
switch (strtoupper($compression)) {
Method validateLength
has 87 lines of code (exceeds 25 allowed). Consider refactoring.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case 'DECIMAL':
The class Redshift has an overall complexity of 114 which is very high. The configured complexity threshold is 50.
class Redshift extends Common
{
public const TYPES = [
'SMALLINT', 'INT2', 'INTEGER', 'INT', 'INT4', 'BIGINT', 'INT8',
'DECIMAL', 'NUMERIC',
Function validateCompression
has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
private function validateCompression(string $type, string $compression): void
{
$valid = true;
$type = strtoupper($type);
switch (strtoupper($compression)) {
Method getBasetype
has 39 lines of code (exceeds 25 allowed). Consider refactoring.
public function getBasetype(): string
{
switch (strtoupper($this->type)) {
case 'SMALLINT':
case 'INT2':
Function getBasetype
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
public function getBasetype(): string
{
switch (strtoupper($this->type)) {
case 'SMALLINT':
case 'INT2':
The method validateLength() has an NPath complexity of 986. The configured NPath complexity threshold is 200.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case 'DECIMAL':
The method validateLength() has a Cyclomatic Complexity of 43. The configured cyclomatic complexity threshold is 10.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case 'DECIMAL':
The method getBasetype() has a Cyclomatic Complexity of 22. The configured cyclomatic complexity threshold is 10.
public function getBasetype(): string
{
switch (strtoupper($this->type)) {
case 'SMALLINT':
case 'INT2':
The method validateCompression() has a Cyclomatic Complexity of 24. The configured cyclomatic complexity threshold is 10.
private function validateCompression(string $type, string $compression): void
{
$valid = true;
$type = strtoupper($type);
switch (strtoupper($compression)) {
Avoid unused parameters such as '$basetype'.
public static function getTypeByBasetype(string $basetype): string
Similar blocks of code found in 2 locations. Consider refactoring.
case 'NUMERIC':
if (is_null($length) || $length === '') {
break;
}
$parts = explode(',', (string) $length);
Identical blocks of code found in 3 locations. Consider refactoring.
private function getLengthFromArray(array $lengthOptions): ?string
{
$expectedOptions = ['character_maximum', 'numeric_precision', 'numeric_scale'];
$diff = array_diff(array_keys($lengthOptions), $expectedOptions);
if ($diff !== []) {
There are no issues that match your filters.