Ready::getData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
c 2
b 1
f 1
dl 0
loc 8
rs 9.4286
cc 1
eloc 2
nc 1
nop 0
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
}