Options::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 1 Features 1
Metric Value
c 3
b 1
f 1
dl 0
loc 2
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
namespace Cassandra\Request;
3
use Cassandra\Protocol\Frame;
4
5
class Options extends Request{
6
	
7
	protected $opcode = Frame::OPCODE_OPTIONS;
8
	
9
	/**
10
	 * OPTIONS
11
	 *
12
	 * Asks the server to return what STARTUP options are supported. The body of an
13
	 * OPTIONS message should be empty and the server will respond with a SUPPORTED
14
	 * message.
15
	 */
16
	public function __construct() {
17
	}
18
}