Completed
Branch master (07b0df)
by judicael
05:36 queued 02:38
created
bundles/lib/Request.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,7 @@
 block discarded – undo
59 59
 	 * if the request is ajax
60 60
 	 *
61 61
 	 * @access public
62
-	 * @param  string $sName name of the template
63
-	 * @return bool
62
+	 * @return boolean|null
64 63
 	 */
65 64
 	public static function isXmlHttpRequest()
66 65
 	{
Please login to merge, or discard this patch.
bundles/lib/Upload.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 	 *
82 82
 	 * @access public
83 83
 	 * @param  string $sFile
84
-	 * @return bool|object
84
+	 * @return null|boolean
85 85
 	 */
86 86
 	public function upload(string $sFile)
87 87
 	{
Please login to merge, or discard this patch.
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.