Completed
Push — master ( 5ee616...9400f0 )
by Terrence
15:46
created
src/Service/Content.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1224,6 +1224,7 @@  discard block
 block discarded – undo
1224 1224
      *        the authnContextClassRef? If not, then ignore the 'Request
1225 1225
      *        Silver' checkbox and silver certification in metadata.
1226 1226
      *        Defaults to true.
1227
+     * @param string $responseurl
1227 1228
      */
1228 1229
     public static function redirectToGetShibUser(
1229 1230
         $providerId = '',
@@ -2272,7 +2273,7 @@  discard block
 block discarded – undo
2272 2273
      *        following: 'pkcs12', 'gsca', or 'delegate'.
2273 2274
      * @param int $defaultmaxlifetime Default maxlifetime (in hours) for the
2274 2275
      *        credential.
2275
-     * @return array An array consisting of two entries: the minimum and
2276
+     * @return integer[] An array consisting of two entries: the minimum and
2276 2277
      *         maximum lifetimes (in hours) for a credential.
2277 2278
      */
2278 2279
     public static function getMinMaxLifetimes($section, $defaultmaxlifetime)
Please login to merge, or discard this patch.
src/Service/IdpList.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      *
158 158
      * @param string $filetype (Optional) Type type of file to read, either
159 159
      *        'xml' or 'json'. Defaults to 'json'.
160
-     * @return bool True if the idplist was read from file. False otherwise.
160
+     * @return boolean|null True if the idplist was read from file. False otherwise.
161 161
      */
162 162
     public function read($filetype = 'json')
163 163
     {
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
      *
236 236
      * @param string $filetype (Optional) Type type of file to write, either
237 237
      *        'xml' or 'json'. Defaults to 'json'.
238
-     * @return bool True if the idplist was written to file. False
238
+     * @return boolean|null True if the idplist was written to file. False
239 239
      *         otherwise.
240 240
      */
241 241
     public function write($filetype = 'json')
Please login to merge, or discard this patch.