1 | <?php |
||
11 | class MoufExplorerUrlProvider implements UrlProviderInterface |
||
12 | { |
||
13 | /** |
||
14 | * Returns the list of URLs that can be accessed, and the function/method that should be called when the URL is called. |
||
15 | * |
||
16 | * @param string $instanceName The identifier for this object in the container. |
||
17 | * |
||
18 | * @return SplashRoute[] |
||
19 | */ |
||
20 | public function getUrlsList($instanceName) |
||
39 | |||
40 | /** |
||
41 | * Returns a unique tag representing the list of SplashRoutes returned. |
||
42 | * If the tag changes, the cache is flushed by Splash. |
||
43 | * |
||
44 | * Important! This must be quick to compute. |
||
45 | * |
||
46 | * @return mixed |
||
47 | */ |
||
48 | public function getExpirationTag() : string |
||
52 | } |
||
53 |