@@ -205,7 +205,7 @@ |
||
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 | */ |
@@ -96,6 +96,12 @@ |
||
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"); |
@@ -216,7 +216,7 @@ |
||
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. |
@@ -254,7 +254,7 @@ |
||
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 |
@@ -138,6 +138,7 @@ discard block |
||
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 |
||
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 |
||
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) { |