Completed
Push — master ( 50d24f...812ecb )
by judicael
03:47
created
bundles/lib/Cache/File.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @access public
98 98
      * @param  string $sName name of the session
99
-     * @return mixed
99
+     * @return boolean
100 100
      */
101 101
     public function delete(string $sName)
102 102
     {
@@ -107,7 +107,6 @@  discard block
 block discarded – undo
107 107
      * flush the cache
108 108
      *
109 109
      * @access public
110
-     * @param  string $sName name of the session
111 110
      * @return mixed
112 111
      */
113 112
     public function flush()
@@ -120,7 +119,7 @@  discard block
 block discarded – undo
120 119
      *
121 120
      * @access public
122 121
      * @param  string $sName name of the session
123
-     * @return mixed
122
+     * @return string
124 123
      */
125 124
     private function _getSubDirectory($sName)
126 125
     {
Please login to merge, or discard this patch.
bundles/lib/Cache/Redis.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      * flush the cache
94 94
      *
95 95
      * @access public
96
-     * @return mixed
96
+     * @return boolean
97 97
      */
98 98
     public function flush()
99 99
     {
@@ -129,9 +129,8 @@  discard block
 block discarded – undo
129 129
      * @access public
130 130
      * @param  string $sName name of the session
131 131
      * @param  mixed $mValue value of this sesion var
132
-     * @param  int $iFlag unused
133 132
      * @param  int $iExpire expiration of cache
134
-     * @return mixed
133
+     * @return Apc
135 134
      */
136 135
     public function add(string $sName, $mValue, int $iExpire = false)
137 136
     {
Please login to merge, or discard this patch.