The class Synapse has an overall complexity of 66 which is very high. The configured complexity threshold is 50.
class Synapse extends Common
{
public const METADATA_BACKEND = 'synapse';
public const TYPE_DECIMAL = 'DECIMAL';
public const TYPE_NUMERIC = 'NUMERIC';
Function validateLength
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_FLOAT:
Method validateLength
has 50 lines of code (exceeds 25 allowed). Consider refactoring.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_FLOAT:
Method getBasetype
has 33 lines of code (exceeds 25 allowed). Consider refactoring.
public function getBasetype(): string
{
switch (strtoupper($this->type)) {
case self::TYPE_INT:
case self::TYPE_BIGINT:
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_BIGINT:
Function getSQLDefinition
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
public function getSQLDefinition(): string
{
$definition = $this->getType();
$length = $this->getLength();
if ($length !== null && $length !== '') {
Avoid too many return
statements within this method.
return null;
Avoid too many return
statements within this method.
return self::TYPE_NVARCHAR;
Avoid too many return
statements within this method.
return self::TYPE_NUMERIC;
Avoid too many return
statements within this method.
return self::TYPE_DATETIME2;
The method getDefaultLength() has a Cyclomatic Complexity of 10. The configured cyclomatic complexity threshold is 10.
public function getDefaultLength()
{
switch (strtoupper($this->getType())) {
case self::TYPE_FLOAT:
return self::MAX_LENGTH_FLOAT;
The method validateLength() has a Cyclomatic Complexity of 20. The configured cyclomatic complexity threshold is 10.
private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_FLOAT:
The method getBasetype() has a Cyclomatic Complexity of 16. The configured cyclomatic complexity threshold is 10.
public function getBasetype(): string
{
switch (strtoupper($this->type)) {
case self::TYPE_INT:
case self::TYPE_BIGINT:
Avoid using static access to class 'Keboola\Datatype\Definition\BaseType' in method 'getTypeByBasetype'.
if (!BaseType::isValid($basetype)) {
The method getSQLDefinition uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
} else {
$length = $this->getDefaultLength();
if ($length !== null) {
$definition .= sprintf('(%s)', $length);
}
Similar blocks of code found in 3 locations. Consider refactoring.
public static function getTypeByBasetype(string $basetype): string
{
$basetype = strtoupper($basetype);
if (!BaseType::isValid($basetype)) {
Similar blocks of code found in 2 locations. Consider refactoring.
public const TYPES = [
self::TYPE_DECIMAL, self::TYPE_NUMERIC,
self::TYPE_FLOAT, self::TYPE_REAL,
self::TYPE_MONEY, self::TYPE_SMALLMONEY,
self::TYPE_BIGINT, self::TYPE_INT, self::TYPE_SMALLINT, self::TYPE_TINYINT,
There are no issues that match your filters.