Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | CRAP |
<?php | |
namespace Mtkocak\DataStructures; | |
interface TreeInterface | |
{ | |
public function root(TreeNodeInterface $node = NULL); | |
public function add($value); | |
public function delete(TreeNodeInterface $node); | |
public function isEmpty(); | |
} |