1 | <?php |
||
25 | class Noop implements ProxyClientInterface, BanInterface, PurgeInterface, RefreshInterface, TagsInterface |
||
26 | { |
||
27 | /** |
||
28 | * NoopClient constructor. |
||
29 | * |
||
30 | * @param array $servers |
||
31 | * @param array $options |
||
32 | * @param null $httpClient |
||
33 | * @param null $messageFactory |
||
34 | * @param null $uriFactory |
||
35 | */ |
||
36 | public function __construct( |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function ban(array $headers) |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function banPath($path, $contentType = null, $hosts = null) |
||
61 | |||
62 | |||
63 | /** |
||
64 | * {@inheritdoc} |
||
65 | */ |
||
66 | public function invalidateTags(array $tags) |
||
70 | |||
71 | /** |
||
72 | * {@inheritdoc} |
||
73 | */ |
||
74 | public function getTagsHeaderValue(array $tags) |
||
78 | |||
79 | /** |
||
80 | * {@inheritdoc} |
||
81 | */ |
||
82 | public function getTagsHeaderName() |
||
86 | |||
87 | /** |
||
88 | * {@inheritdoc} |
||
89 | */ |
||
90 | public function purge($url, array $headers = []) |
||
94 | |||
95 | /** |
||
96 | * {@inheritdoc} |
||
97 | */ |
||
98 | public function refresh($url, array $headers = []) |
||
102 | |||
103 | /** |
||
104 | * {@inheritdoc} |
||
105 | */ |
||
106 | public function flush() |
||
110 | } |
||
111 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.