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