StreamWrapper
last analyzed

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 18
c 0
b 0
f 0

8 Methods

Rating   Name   Duplication   Size   Complexity  
stream_eof() 0 1 ?
stream_tell() 0 1 ?
stream_write() 0 1 ?
stream_read() 0 1 ?
stream_seek() 0 1 ?
stream_stat() 0 1 ?
stream_truncate() 0 1 ?
stream_set_option() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
namespace FakeSocket;
5
6
interface StreamWrapper
7
{
8
    public function stream_eof();
0 ignored issues
show
Coding Style introduced by
Method name "StreamWrapper::stream_eof" is not in camel caps format
Loading history...
9
10
    public function stream_tell();
0 ignored issues
show
Coding Style introduced by
Method name "StreamWrapper::stream_tell" is not in camel caps format
Loading history...
11
12
    public function stream_write($data);
0 ignored issues
show
Coding Style introduced by
Method name "StreamWrapper::stream_write" is not in camel caps format
Loading history...
13
14
    public function stream_read($count);
0 ignored issues
show
Coding Style introduced by
Method name "StreamWrapper::stream_read" is not in camel caps format
Loading history...
15
16
    public function stream_seek($offset, $whence);
0 ignored issues
show
Coding Style introduced by
Method name "StreamWrapper::stream_seek" is not in camel caps format
Loading history...
17
18
    public function stream_stat();
0 ignored issues
show
Coding Style introduced by
Method name "StreamWrapper::stream_stat" is not in camel caps format
Loading history...
19
20
    public function stream_truncate($new_size);
0 ignored issues
show
Coding Style introduced by
Method name "StreamWrapper::stream_truncate" is not in camel caps format
Loading history...
21
22
    public function stream_set_option($option, $arg1, $arg2);
0 ignored issues
show
Coding Style introduced by
Method name "StreamWrapper::stream_set_option" is not in camel caps format
Loading history...
23
}
24