1 | <?php |
||
20 | class SymfonyProxy implements ProxyInterface |
||
21 | { |
||
22 | /** |
||
23 | * Get Symfony cache directory |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | 5 | public function getCacheDir() |
|
31 | |||
32 | /** |
||
33 | * Start the proxy server |
||
34 | */ |
||
35 | public function start() |
||
39 | |||
40 | /** |
||
41 | * Stop the proxy server |
||
42 | */ |
||
43 | public function stop() |
||
47 | |||
48 | /** |
||
49 | * Clear all cached content from the proxy server |
||
50 | */ |
||
51 | 5 | public function clear() |
|
65 | } |
||
66 |