Options   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 3
Bugs 1 Features 1
Metric Value
wmc 1
c 3
b 1
f 1
lcom 0
cbo 1
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
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
}