Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
3 / 3 |
| Vertex | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
3 / 3 |
| __construct($name) | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
| getName() | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| <?php | |
| /* | |
| * Mondrian | |
| */ | |
| namespace Trismegiste\Mondrian\Graph; | |
| /** | |
| * Vertex is a vertex of a graph | |
| */ | |
| class Vertex | |
| { | |
| protected $name; | |
| /** | |
| * Construct the vertex with its name (preferably unique) | |
| * | |
| * @param string $name | |
| */ | |
| public function __construct($name) | |
| { | |
| $this->name = $name; | |
| } | |
| public function getName() | |
| { | |
| return $this->name; | |
| } | |
| } |