@@ -311,7 +311,7 @@ |
||
| 311 | 311 | * peut etre utilise pour l'import depuis xml, |
| 312 | 312 | * ou la copie de base a base (mysql<->sqlite par exemple) |
| 313 | 313 | * |
| 314 | - * @param array $tables |
|
| 314 | + * @param string[] $tables |
|
| 315 | 315 | * @param array $exclure_tables |
| 316 | 316 | * @param string $serveur |
| 317 | 317 | */ |
@@ -326,14 +326,15 @@ |
||
| 326 | 326 | $connecte = false; |
| 327 | 327 | } |
| 328 | 328 | } |
| 329 | - if ($connecte) |
|
| 330 | - # on ajoute les liaisons en premier |
|
| 329 | + if ($connecte) { |
|
| 330 | + # on ajoute les liaisons en premier |
|
| 331 | 331 | # si une restauration est interrompue, |
| 332 | 332 | # cela se verra mieux si il manque des objets |
| 333 | 333 | # que des liens |
| 334 | 334 | { |
| 335 | 335 | array_unshift($tables_for_dump, $link_table); |
| 336 | 336 | } |
| 337 | + } |
|
| 337 | 338 | } |
| 338 | 339 | |
| 339 | 340 | return array($tables_for_dump, $tables_for_link); |
@@ -83,7 +83,7 @@ |
||
| 83 | 83 | * Couples champ/valeur à modifier |
| 84 | 84 | * @param string $serveur |
| 85 | 85 | * Nom du connecteur à la base de données |
| 86 | - * @return bool|string |
|
| 86 | + * @return string|false |
|
| 87 | 87 | * - false : Aucune modification, aucun champ n'est à modifier |
| 88 | 88 | * - chaîne vide : Vide si tout s'est bien passé |
| 89 | 89 | * - chaîne : Texte d'un message d'erreur |
@@ -122,7 +122,7 @@ |
||
| 122 | 122 | * @param int $height_max |
| 123 | 123 | * Hauteur minimale de l'image à traiter (10000 par défaut) |
| 124 | 124 | * @return |
| 125 | - * Le tag html `<img src=... />` avec une class `filtre_inactif` ou pas |
|
| 125 | + string Le tag html `<img src=... />` avec une class `filtre_inactif` ou pas |
|
| 126 | 126 | */ |
| 127 | 127 | function image_select($img, $width_min = 0, $height_min = 0, $width_max = 10000, $height_max = 1000) { |
| 128 | 128 | if (!$img) { |
@@ -511,11 +511,12 @@ |
||
| 511 | 511 | $position = 'focus', |
| 512 | 512 | $background_color = 'white' |
| 513 | 513 | ) { |
| 514 | - if (function_exists('image_recadre') && ($GLOBALS['meta']['image_process'] ?? '') === 'gd2') |
|
| 515 | - return image_reduire(image_recadre($im, $width.':'.$height, '-', $position, $background_color), $width, $height); |
|
| 516 | - else |
|
| 517 | - return image_passe_partout($im, $width, $height); |
|
| 518 | -} |
|
| 514 | + if (function_exists('image_recadre') && ($GLOBALS['meta']['image_process'] ?? '') === 'gd2') { |
|
| 515 | + return image_reduire(image_recadre($im, $width.':'.$height, '-', $position, $background_color), $width, $height); |
|
| 516 | + } else { |
|
| 517 | + return image_passe_partout($im, $width, $height); |
|
| 518 | + } |
|
| 519 | + } |
|
| 519 | 520 | |
| 520 | 521 | /** |
| 521 | 522 | * Réduit les images d'un certain facteur |
@@ -644,7 +644,7 @@ |
||
| 644 | 644 | * |
| 645 | 645 | * @param string $dir |
| 646 | 646 | * Répertoire à parcourir |
| 647 | - * @param int|string $pattern |
|
| 647 | + * @param integer $pattern |
|
| 648 | 648 | * Expression régulière pour trouver des fichiers, tel que `[.]lock$` |
| 649 | 649 | * @param int $maxfiles |
| 650 | 650 | * Nombre de fichiers maximums retournés |
@@ -339,8 +339,7 @@ |
||
| 339 | 339 | or md5_file($fichier) != md5_file($fichier_tmp)) { |
| 340 | 340 | if ($use_copy) { |
| 341 | 341 | @copy($fichier_tmp, $fichier); |
| 342 | - } |
|
| 343 | - else { |
|
| 342 | + } else { |
|
| 344 | 343 | @rename($fichier_tmp, $fichier); |
| 345 | 344 | } |
| 346 | 345 | // eviter que PHP ne reserve le vieux timestamp |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | * |
| 33 | 33 | * @param $function |
| 34 | 34 | * The function name to call. |
| 35 | - * @param $description |
|
| 35 | + * @param string $description |
|
| 36 | 36 | * A human-readable description of the queued job. |
| 37 | 37 | * @param $arguments |
| 38 | 38 | * Optional array of arguments to pass to the function. |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | * |
| 163 | 163 | * @param int $id_job |
| 164 | 164 | * id de la tache a retirer |
| 165 | - * @return bool |
|
| 165 | + * @return boolean|string |
|
| 166 | 166 | */ |
| 167 | 167 | function queue_remove_job($id_job) { |
| 168 | 168 | include_spip('base/abstract_sql'); |
@@ -466,7 +466,7 @@ discard block |
||
| 466 | 466 | * Nom de la fonction de tâche |
| 467 | 467 | * @param string $inclure |
| 468 | 468 | * Nom de l'inclusion contenant la fonction |
| 469 | - * @return bool|int |
|
| 469 | + * @return integer |
|
| 470 | 470 | * Périodicité de la tâche en secondes, si tâche périodique, sinon false. |
| 471 | 471 | */ |
| 472 | 472 | function queue_is_cron_job($function, $inclure) { |
@@ -429,9 +429,11 @@ |
||
| 429 | 429 | if ($periode = queue_is_cron_job($row['fonction'], $row['inclure'])) { |
| 430 | 430 | // relancer avec les nouveaux arguments de temps |
| 431 | 431 | include_spip('inc/genie'); |
| 432 | - if ($result < 0) // relancer tout de suite, mais en baissant la priorite |
|
| 432 | + if ($result < 0) { |
|
| 433 | + // relancer tout de suite, mais en baissant la priorite |
|
| 433 | 434 | { |
| 434 | 435 | queue_genie_replan_job($row['fonction'], $periode, 0 - $result, null, $row['priorite'] - 1); |
| 436 | + } |
|
| 435 | 437 | } else // relancer avec la periode prevue |
| 436 | 438 | { |
| 437 | 439 | queue_genie_replan_job($row['fonction'], $periode, $time); |
@@ -337,8 +337,8 @@ discard block |
||
| 337 | 337 | * @param string|array $select Champs sélectionnés |
| 338 | 338 | * @param string|array $from Tables sélectionnées |
| 339 | 339 | * @param string|array $where Contraintes |
| 340 | - * @param string|array $groupby Regroupements |
|
| 341 | - * @param string|array $orderby Tris |
|
| 340 | + * @param string $groupby Regroupements |
|
| 341 | + * @param string $orderby Tris |
|
| 342 | 342 | * @param string $limit Limites de résultats |
| 343 | 343 | * @param string|array $having Contraintes posts sélections |
| 344 | 344 | * @param string $serveur Nom de la connexion |
@@ -970,7 +970,7 @@ discard block |
||
| 970 | 970 | * @param int $row_number Position. Déplacer le pointeur à cette ligne |
| 971 | 971 | * @param string $serveur Nom de la connexion |
| 972 | 972 | * @param bool $requeter Inutilisé |
| 973 | - * @return bool True si déplacement réussi, false sinon. |
|
| 973 | + * @return boolean|null True si déplacement réussi, false sinon. |
|
| 974 | 974 | **/ |
| 975 | 975 | function spip_mysql_seek($r, $row_number, $serveur = '', $requeter = true) { |
| 976 | 976 | if ($r and mysqli_num_rows($r)) { |
@@ -50,11 +50,9 @@ discard block |
||
| 50 | 50 | $port and !is_numeric($socket = $port) |
| 51 | 51 | and (!$host or $host=='localhost')) { |
| 52 | 52 | $link = @mysqli_connect($host, $login, $pass, '', null, $socket); |
| 53 | - } |
|
| 54 | - elseif ($port) { |
|
| 53 | + } elseif ($port) { |
|
| 55 | 54 | $link = @mysqli_connect($host, $login, $pass, '', $port); |
| 56 | - } |
|
| 57 | - else { |
|
| 55 | + } else { |
|
| 58 | 56 | $link = @mysqli_connect($host, $login, $pass); |
| 59 | 57 | } |
| 60 | 58 | |
@@ -1612,8 +1610,7 @@ discard block |
||
| 1612 | 1610 | if (!$type) { |
| 1613 | 1611 | if (is_bool($v)) { |
| 1614 | 1612 | return strval(intval($v)); |
| 1615 | - } |
|
| 1616 | - elseif (is_numeric($v)) { |
|
| 1613 | + } elseif (is_numeric($v)) { |
|
| 1617 | 1614 | return strval($v); |
| 1618 | 1615 | } |
| 1619 | 1616 | return "'" . addslashes($v) . "'"; |
@@ -319,7 +319,7 @@ |
||
| 319 | 319 | /** |
| 320 | 320 | * Constructeur |
| 321 | 321 | * |
| 322 | - * @param array $process ? |
|
| 322 | + * @param boolean $process ? |
|
| 323 | 323 | **/ |
| 324 | 324 | public function __construct($process = array()) { |
| 325 | 325 | if (is_array($process)) { |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | * the constructor |
| 89 | 89 | * |
| 90 | 90 | * @param array $options |
| 91 | - * @return boolean |
|
| 91 | + * @return boolean|null |
|
| 92 | 92 | * @since 0.5.2 |
| 93 | 93 | */ |
| 94 | 94 | public function __construct($options = false) |
@@ -393,7 +393,7 @@ discard block |
||
| 393 | 393 | /** |
| 394 | 394 | * Use this method to get the last error ocurred |
| 395 | 395 | * @param void |
| 396 | - * @return string The last error, that occured |
|
| 396 | + * @return boolean The last error, that occured |
|
| 397 | 397 | */ |
| 398 | 398 | public function get_last_error() |
| 399 | 399 | { |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | /** |
| 404 | 404 | * The actual decoding algorithm |
| 405 | 405 | * @param string |
| 406 | - * @return mixed |
|
| 406 | + * @return false|string |
|
| 407 | 407 | */ |
| 408 | 408 | protected function _decode($encoded) |
| 409 | 409 | { |
@@ -464,7 +464,7 @@ discard block |
||
| 464 | 464 | /** |
| 465 | 465 | * The actual encoding algorithm |
| 466 | 466 | * @param string |
| 467 | - * @return mixed |
|
| 467 | + * @return false|string |
|
| 468 | 468 | */ |
| 469 | 469 | protected function _encode($decoded) |
| 470 | 470 | { |
@@ -699,7 +699,7 @@ discard block |
||
| 699 | 699 | * Decomposes a Hangul syllable |
| 700 | 700 | * (see http://www.unicode.org/unicode/reports/tr15/#Hangul |
| 701 | 701 | * @param integer 32bit UCS4 code point |
| 702 | - * @return array Either Hangul Syllable decomposed or original 32bit value as one value array |
|
| 702 | + * @return integer[] Either Hangul Syllable decomposed or original 32bit value as one value array |
|
| 703 | 703 | */ |
| 704 | 704 | protected function _hangul_decompose($char) |
| 705 | 705 | { |
@@ -369,7 +369,7 @@ |
||
| 369 | 369 | * Effacer le jeton d'un auteur apres utilisation |
| 370 | 370 | * |
| 371 | 371 | * @param int $id_auteur |
| 372 | - * @return bool |
|
| 372 | + * @return boolean|string |
|
| 373 | 373 | */ |
| 374 | 374 | function auteur_effacer_jeton($id_auteur) { |
| 375 | 375 | return sql_updateq("spip_auteurs", array("cookie_oubli" => ''), "id_auteur=" . intval($id_auteur)); |