@@ -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 |
@@ -131,6 +131,7 @@ discard block |
||
131 | 131 | * |
132 | 132 | * @param string $device |
133 | 133 | * @param AbstractProfile $profile |
134 | + * @param string $generatedFor |
|
134 | 135 | * @return array info about the new installer (mime and link) |
135 | 136 | */ |
136 | 137 | private function generateNewInstaller($device, $profile, $generatedFor, $token, $password) { |
@@ -719,6 +720,7 @@ discard block |
||
719 | 720 | /** |
720 | 721 | * Order active identity providers according to their distance and name |
721 | 722 | * @param array $currentLocation - current location |
723 | + * @param string $country |
|
722 | 724 | * @return array $IdPs - list of arrays ('id', 'name'); |
723 | 725 | */ |
724 | 726 | public function orderIdentityProviders($country, $currentLocation = NULL) { |