| 1 | <?php |
||
| 20 | class SymfonyProxy implements ProxyInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Get Symfony cache directory. |
||
| 24 | * |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | 7 | public function getCacheDir() |
|
| 36 | |||
| 37 | /** |
||
| 38 | * Start the proxy server. |
||
| 39 | */ |
||
| 40 | 1 | public function start() |
|
| 44 | |||
| 45 | /** |
||
| 46 | * Stop the proxy server. |
||
| 47 | */ |
||
| 48 | 1 | public function stop() |
|
| 52 | |||
| 53 | /** |
||
| 54 | * Clear all cached content from the proxy server. |
||
| 55 | */ |
||
| 56 | 6 | public function clear() |
|
| 74 | } |
||
| 75 |