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