Issues (2354)

src/Quote/CSV.php (3 issues)

Severity
1
<?php
0 ignored issues
show
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
Method \ClickHouseDB\Quote\CSV::quoteRow() does not have parameter type hint nor @param annotation for its parameter $row.
Loading history...
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