Ready   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
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 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getData() 0 8 1
1
<?php
2
namespace Cassandra\Response;
3
use Cassandra\Protocol\Frame;
4
5
class Ready extends Response {
6
	public function getData(){
7
		/**
8
		 * Indicates that the server is ready to process queries. This message will be
9
		 * sent by the server either after a STARTUP message if no authentication is
10
		 * required, or after a successful CREDENTIALS message.
11
		 */
12
		return null;
13
	}
14
}