Issues (2354)

src/Query/Degeneration.php (10 issues)

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...
Expected 1 blank line after function; 0 found
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...
Expected 1 blank line after function; 0 found
Loading history...
8
    public function getBind():array;
0 ignored issues
show
Method \ClickHouseDB\Query\Degeneration::getBind() does not have @return annotation for its traversable return value.
Loading history...
There must be exactly one space between return type hint colon and return type hint.
Loading history...
9
}