Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 6 |
CRAP | |
0.00% |
0 / 12 |
CargoTreeFormatNode | |
0.00% |
0 / 1 |
|
0.00% |
0 / 6 |
42 | |
0.00% |
0 / 12 |
getParent | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
setParent | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
getChildren | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
addChild | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
getValues | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
setValues | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
/** | |
* Class to print query results in a "tree" display, using a field that | |
* defines a "parent" relationship between rows. | |
* | |
* @author Yaron Koren | |
* @ingroup Cargo | |
*/ | |
class CargoTreeFormatNode { | |
private $mParent; | |
private $mChildren = []; | |
private $mValues = []; | |
public function getParent() { | |
return $this->mParent; | |
} | |
public function setParent( $parent ) { | |
$this->mParent = $parent; | |
} | |
public function getChildren() { | |
return $this->mChildren; | |
} | |
public function addChild( $child ) { | |
$this->mChildren[] = $child; | |
} | |
public function getValues() { | |
return $this->mValues; | |
} | |
public function setValues( $values ) { | |
$this->mValues = $values; | |
} | |
} |