ParentDict   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A kill() 0 6 1
1
<?php namespace Knot\Dict;
2
3
use Knot\Dict;
4
5
/**
6
 * Class ParentDict
7
 * @package Knot\Dict
8
 */
9
class ParentDict extends Dict {
10
11
	/**
12
	 * @return $this
13
	 */
14
	public function kill()
15
	{
16
		$this->data = [ ];
17
18
		return $this;
19
	}
20
21
}