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: }