CSV   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A quoteRow() 0 3 1
1
<?php
0 ignored issues
show
introduced by
Missing declare(strict_types=1).
Loading history...
2
3
namespace ClickHouseDB\Quote;
4
5
/**
6
 * @deprecated Left for compatibility
7
 */
8
class CSV
9
{
10
    public static function quoteRow($row)
0 ignored issues
show
introduced by
Method \ClickHouseDB\Quote\CSV::quoteRow() does not have parameter type hint nor @param annotation for its parameter $row.
Loading history...
introduced by
Method \ClickHouseDB\Quote\CSV::quoteRow() does not have return type hint nor @return annotation for its return value.
Loading history...
11
    {
12
        return FormatLine::CSV($row);
13
    }
14
}
15