Passed
Push — master ( 606919...d35033 )
by Maja
07:18 queued 23s
created
web/lib/admin/OptionDisplay.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
      * @param int $rowid the HTML field base name of the option to be displayed
206 206
      * @param string $optionName the name of the option to display
207 207
      * @param string $optionValue the value of the option to display
208
-     * @param mixed $optionLang the language of the option to display
208
+     * @param null|string $optionLang the language of the option to display
209 209
      * @return string HTML code
210 210
      * @throws Exception
211 211
      */
Please login to merge, or discard this patch.
core/AbstractProfile.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -96,6 +96,12 @@
 block discarded – undo
96 96
      */
97 97
     protected $frontendHandle;
98 98
 
99
+    /**
100
+     * @param integer $idpIdentifier
101
+     * @param string $deviceId
102
+     * @param string $area
103
+     * @param string $lang
104
+     */
99 105
     protected function saveDownloadDetails($idpIdentifier, $profileId, $deviceId, $area, $lang, $eapType) {
100 106
         if (CONFIG['PATHS']['logdir']) {
101 107
             $file = fopen(CONFIG['PATHS']['logdir'] . "/download_details.log", "a");
Please login to merge, or discard this patch.
core/diag/Telepath.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@
 block discarded – undo
216 216
      * realm (and indirectly that of the links and statuses of involved proxies
217 217
      * and returns a judgment whether external Monitoring API tests are warranted
218 218
      * or not
219
-     * @return boolean TRUE if external tests have to be run
219
+     * @return boolean|null TRUE if external tests have to be run
220 220
      */
221 221
     private function CATInternalTests() {
222 222
         // we are expecting to get a REJECT from all runs, because that means the packet got through to the IdP.
Please login to merge, or discard this patch.
core/ProfileSilverbullet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@
 block discarded – undo
254 254
      * create a CSR
255 255
      * 
256 256
      * @param resource $privateKey the private key to create the CSR with
257
-     * @return array with the CSR and some meta info
257
+     * @return integer with the CSR and some meta info
258 258
      */
259 259
     private function generateCsr($privateKey) {
260 260
         // token leads us to the NRO, to set the OU property of the cert
Please login to merge, or discard this patch.
core/UserAPI.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -138,6 +138,7 @@  discard block
 block discarded – undo
138 138
      * 
139 139
      * @param string $device
140 140
      * @param AbstractProfile $profile
141
+     * @param string $generatedFor
141 142
      * @return array info about the new installer (mime and link)
142 143
      */
143 144
     private function generateNewInstaller($device, $profile, $generatedFor, $token, $password) {
@@ -329,6 +330,7 @@  discard block
 block discarded – undo
329 330
      * @param string either 'idp' or 'federation' is allowed 
330 331
      * @param int $width maximum width of the generated image - if 0 then it is treated as no upper bound
331 332
      * @param int $height  maximum height of the generated image - if 0 then it is treated as no upper bound
333
+     * @param string $type
332 334
      * @return array|null array with image information or NULL if there is no logo
333 335
      */
334 336
     protected function getLogo($identifier, $type, $width = 0, $height = 0) {
@@ -470,6 +472,7 @@  discard block
 block discarded – undo
470 472
     /**
471 473
      * Order active identity providers according to their distance and name
472 474
      * @param array $currentLocation - current location
475
+     * @param string $country
473 476
      * @return array $IdPs -  list of arrays ('id', 'name');
474 477
      */
475 478
     public function orderIdentityProviders($country, $currentLocation = NULL) {
Please login to merge, or discard this patch.