15 lines
232 B
PHP
15 lines
232 B
PHP
<?php
|
|
|
|
namespace Fhaculty\Graph\Set;
|
|
|
|
/**
|
|
* Basic interface for every class that provides access to its Set of Vertices
|
|
*/
|
|
interface VerticesAggregate
|
|
{
|
|
/**
|
|
* @return Vertices
|
|
*/
|
|
public function getVertices();
|
|
}
|