Issues (2354)

src/Transport/IStream.php (13 issues)

1
<?php
0 ignored issues
show
Missing declare(strict_types=1).
Loading history...
2
3
namespace ClickHouseDB\Transport;
4
5
/**
6
 * @package ClickHouseDB\Transport
0 ignored issues
show
Use of annotation @package is forbidden.
Loading history...
7
 */
8
interface IStream
9
{
10
    public function isGzipHeader();
0 ignored issues
show
Method \ClickHouseDB\Transport\IStream::isGzipHeader() does not have void return type hint.
Loading history...
Expected 1 blank line after function; 0 found
Loading history...
11
    public function closure(callable $callable);
0 ignored issues
show
Method \ClickHouseDB\Transport\IStream::closure() does not have void return type hint.
Loading history...
Expected 1 blank line after function; 0 found
Loading history...
12
    public function getStream();
0 ignored issues
show
Method \ClickHouseDB\Transport\IStream::getStream() does not have void return type hint.
Loading history...
Expected 1 blank line after function; 0 found
Loading history...
13
    public function getClosure();
0 ignored issues
show
Method \ClickHouseDB\Transport\IStream::getClosure() does not have void return type hint.
Loading history...
Expected 1 blank line after function; 0 found
Loading history...
14
    public function isWrite();
0 ignored issues
show
Method \ClickHouseDB\Transport\IStream::isWrite() does not have void return type hint.
Loading history...
Expected 1 blank line after function; 0 found
Loading history...
15
    public function applyGzip();
0 ignored issues
show
Method \ClickHouseDB\Transport\IStream::applyGzip() does not have void return type hint.
Loading history...
16
}
17