We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b709c8a commit a700da4Copy full SHA for a700da4
core/Cache/ListGenerator.class.php
@@ -0,0 +1,21 @@
1
+<?php
2
+ /***************************************************************************
3
+ * Copyright (C) 2012 by Artem Naumenko *
4
+ * *
5
+ * This program is free software; you can redistribute it and/or modify *
6
+ * it under the terms of the GNU Lesser General Public License as *
7
+ * published by the Free Software Foundation; either version 3 of the *
8
+ * License, or (at your option) any later version. *
9
10
+ ***************************************************************************/
11
+
12
+ /**
13
+ * @param string $key
14
+ *
15
+ * @return Listable
16
+ */
17
18
+ interface ListGenerator
19
+ {
20
+ public function fetchList($key);
21
+ }
0 commit comments