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 self::TYPE_NUMBER:
Method validateLength
has 89 lines of code (exceeds 25 allowed). Consider refactoring.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_NUMBER:
File Snowflake.php
has 312 lines of code (exceeds 250 allowed). Consider refactoring.
<?php
declare(strict_types=1);
namespace Keboola\Datatype\Definition;
The class Snowflake has an overall complexity of 100 which is very high. The configured complexity threshold is 50.
class Snowflake extends Common
{
public const METADATA_BACKEND = 'snowflake';
public const TYPE_NUMBER = 'NUMBER';
public const TYPE_DECIMAL = 'DECIMAL';
Method getBasetype
has 40 lines of code (exceeds 25 allowed). Consider refactoring.
public function getBasetype(): string
{
switch (strtoupper($this->type)) {
case self::TYPE_INT:
case self::TYPE_INTEGER:
Function getBasetype
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
public function getBasetype(): string
{
switch (strtoupper($this->type)) {
case self::TYPE_INT:
case self::TYPE_INTEGER:
Avoid too many return
statements within this method.
return self::TYPE_VARCHAR;
Avoid too many return
statements within this method.
return self::TYPE_TIMESTAMP;
Avoid too many return
statements within this method.
return self::TYPE_NUMBER;
The method validateLength() has an NPath complexity of 1002. The configured NPath complexity threshold is 200.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_NUMBER:
The method getBasetype() has a Cyclomatic Complexity of 23. The configured cyclomatic complexity threshold is 10.
public function getBasetype(): string
{
switch (strtoupper($this->type)) {
case self::TYPE_INT:
case self::TYPE_INTEGER:
The method validateLength() has a Cyclomatic Complexity of 46. The configured cyclomatic complexity threshold is 10.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_NUMBER:
Avoid using static access to class 'Keboola\Datatype\Definition\BaseType' in method 'getTypeByBasetype'.
if (!BaseType::isValid($basetype)) {
Similar blocks of code found in 2 locations. Consider refactoring.
case self::TYPE_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 !== []) {
Similar blocks of code found in 3 locations. Consider refactoring.
public static function getTypeByBasetype(string $basetype): string
{
$basetype = strtoupper($basetype);
if (!BaseType::isValid($basetype)) {
There are no issues that match your filters.