1 | <?php |
||
32 | class Mock implements CacheInterface |
||
33 | { |
||
34 | /** |
||
35 | * get a value |
||
36 | * |
||
37 | * @access public |
||
38 | * @param string $sName name of the session |
||
39 | * @param int $iFlags flags |
||
40 | * @param int $iTimeout expiration of cache |
||
41 | * @return boolean |
||
42 | */ |
||
43 | public function get(string $sName, int&$iFlags = null, int $iTimeout = 0) |
||
47 | |||
48 | /** |
||
49 | * set a value |
||
50 | * |
||
51 | * @access public |
||
52 | * @param string $sName name of the session |
||
53 | * @param mixed $mValue value of this sesion var |
||
54 | * @param int $iFlag unused |
||
55 | * @param int $iExpire expiration of cache |
||
56 | * @return boolean |
||
57 | */ |
||
58 | public function set(string $sName, $mValue, int $iFlag = 0, int $iExpire = false) |
||
62 | |||
63 | /** |
||
64 | * flush the cache |
||
65 | * |
||
66 | * @access public |
||
67 | * @return boolean |
||
68 | */ |
||
69 | public function flush() |
||
73 | |||
74 | /** |
||
75 | * delete a value |
||
76 | * |
||
77 | * @access public |
||
78 | * @param string $sName name of the session |
||
79 | * @return boolean |
||
80 | */ |
||
81 | public function delete(string $sName) |
||
85 | |||
86 | /** |
||
87 | * add |
||
88 | * |
||
89 | * @access public |
||
90 | * @param string $sName name of the session |
||
91 | * @param mixed $mValue value of this sesion var |
||
92 | * @param int $iExpire expiration of cache |
||
93 | * @return boolean |
||
94 | */ |
||
95 | public function add($sName, $mValue, $iExpire = false) |
||
99 | } |
||
100 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.