15 lines
221 B
PHP
15 lines
221 B
PHP
<?php namespace Phroute\Phroute;
|
|
|
|
|
|
/**
|
|
* Interface RouteDataProviderInterface
|
|
* @package Phroute\Phroute
|
|
*/
|
|
interface RouteDataProviderInterface {
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getData();
|
|
}
|