Skip to content
Extraits de code Groupes Projets
Valider 46b1b0d4 rédigé par marcimat's avatar marcimat
Parcourir les fichiers

Phpdoc + correction d’analyse statique

parent e9723e0f
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -209,14 +209,14 @@ function spip_version() { ...@@ -209,14 +209,14 @@ function spip_version() {
* @global bool $spip_header_silencieux permet de rendre le header minimal pour raisons de securité * @global bool $spip_header_silencieux permet de rendre le header minimal pour raisons de securité
* *
* @param string $version * @param string $version
* @return void * @return string
*/ */
function header_silencieux($version) { function header_silencieux($version): string {
if (isset($GLOBALS['spip_header_silencieux']) && (bool) $GLOBALS['spip_header_silencieux']) { if (isset($GLOBALS['spip_header_silencieux']) && (bool) $GLOBALS['spip_header_silencieux']) {
$version = ''; $version = '';
} }
return $version; return (string) $version;
} }
/** /**
......
...@@ -459,7 +459,7 @@ function bouton_spip_rss($op, $args = [], $lang = '', $title = 'RSS') { ...@@ -459,7 +459,7 @@ function bouton_spip_rss($op, $args = [], $lang = '', $title = 'RSS') {
* @param int $id_auteur * @param int $id_auteur
* @return string * @return string
*/ */
function alertes_auteur($id_auteur) { function alertes_auteur($id_auteur): string {
$alertes = []; $alertes = [];
...@@ -529,6 +529,8 @@ function alertes_auteur($id_auteur) { ...@@ -529,6 +529,8 @@ function alertes_auteur($id_auteur) {
join(' | ', $alertes) join(' | ', $alertes)
. '</div></div>'; . '</div></div>';
} }
return '';
} }
/** /**
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter