Total Complexity | 1 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class EdgeArraySetFactory implements EdgeSetFactoryInterface |
||
13 | { |
||
14 | /** |
||
15 | * Create a new edge set for a particular vertex |
||
16 | * |
||
17 | * @param VertexInterface $sourceVertex - the vertex for which the edge set is being created |
||
18 | */ |
||
19 | 30 | public function createEdgeSet(VertexInterface $vertex): EdgeSet |
|
24 |