Failed Conditions
Push — master ( 2f7299...1dbc04 )
by Igor
03:34
created

src/Query/Degeneration.php (6 issues)

Severity
1
<?php
0 ignored issues
show
Missing declare(strict_types=1).
Loading history...
2
namespace ClickHouseDB\Query;
0 ignored issues
show
Expected 1 lines before namespace statement, found 0.
Loading history...
3
4
interface Degeneration
5
{
6
    public function process($sql);
0 ignored issues
show
Method \ClickHouseDB\Query\Degeneration::process() does not have parameter type hint nor @param annotation for its parameter $sql.
Loading history...
Method \ClickHouseDB\Query\Degeneration::process() does not have void return type hint.
Loading history...
7
    public function bindParams(array $bindings);
0 ignored issues
show
Method \ClickHouseDB\Query\Degeneration::bindParams() does not have @param annotation for its traversable parameter $bindings.
Loading history...
Method \ClickHouseDB\Query\Degeneration::bindParams() does not have void return type hint.
Loading history...
8
}