Passed
Push — master ( cc4828...00e84f )
by Igor
10:05
created

src/Query/Expression/Expression.php (3 issues)

1
<?php
2
3
declare(strict_types=1);
4
5
namespace ClickHouseDB\Query\Expression;
6
7
interface Expression
8
{
9
    public function needsEncoding() : bool;
0 ignored issues
show
There must be no whitespace between closing parenthesis and return type colon.
Loading history...
Expected 1 blank line after function; 0 found
Loading history...
10
    public function getValue() : string;
0 ignored issues
show
There must be no whitespace between closing parenthesis and return type colon.
Loading history...
11
}
12