Event::getData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
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 6
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 Event extends Response {
6
	public function getData(){
7
		/**
8
		 * TODO
9
		 */
10
		return '';
11
	}
12
}
13