Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class ProtocolOnNextCaller { |
||
18 | /** |
||
19 | * @var \Plasma\Drivers\MySQL\ProtocolParser |
||
20 | */ |
||
21 | protected $parser; |
||
22 | |||
23 | /** |
||
24 | * @var \Plasma\BinaryBuffer |
||
25 | */ |
||
26 | protected $buffer; |
||
27 | |||
28 | /** |
||
29 | * Constructor. |
||
30 | * @param \Plasma\Drivers\MySQL\ProtocolParser $parser |
||
31 | * @param \Plasma\BinaryBuffer $buffer |
||
32 | */ |
||
33 | function __construct(\Plasma\Drivers\MySQL\ProtocolParser $parser, \Plasma\BinaryBuffer $buffer) { |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Get the parser. |
||
40 | * @return \Plasma\Drivers\MySQL\ProtocolParser |
||
41 | */ |
||
42 | function getParser(): \Plasma\Drivers\MySQL\ProtocolParser { |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * Get the buffer. |
||
48 | * @return \Plasma\BinaryBuffer |
||
49 | */ |
||
50 | function getBuffer(): \Plasma\BinaryBuffer { |
||
54 |