AuthSuccess   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 2 Features 1
Metric Value
wmc 1
c 2
b 2
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
4
class AuthSuccess extends Response {
5
	public function getData(){
6
		/**
7
		 * Indicates that the server is ready to process queries. This message will be
8
		 * sent by the server either after a STARTUP message if no authentication is
9
		 * required, or after a successful CREDENTIALS message.
10
		 */
11
		return null;
12
	}
13
}
14