From c98ddbd9cb6c63f7effd45829e1ca9ff78a3a6b2 Mon Sep 17 00:00:00 2001
From: filippo.bertilotti <filippobertilotti@gmail.com>
Date: Fri, 03 May 2024 10:47:19 +0200
Subject: [PATCH] aggiunta specifica restituzione tipi alle functions

---
 htdocs/contact.php |   24 ++++++------------------
 1 files changed, 6 insertions(+), 18 deletions(-)

diff --git a/htdocs/contact.php b/htdocs/contact.php
index 6cec6a4..1f5505c 100644
--- a/htdocs/contact.php
+++ b/htdocs/contact.php
@@ -13,13 +13,10 @@
     $email = $_POST['email'] ?? '';
     $msg = '';
 
-    /*
-     *  
+    /**
      *  Inserisce i dati trasmessi dal form ($email e $number) nella tabella
-     * 
      */
-
-    function insertDataOnTable(mysqli $mysql, string $email, string $number) { 
+    function insertDataOnTable(mysqli $mysql, string $email, string $number): bool { 
         $esitoInserimento = false;
         $query = "INSERT INTO Contact (email, telefono) VALUES ('$email', '$number');";
         try {
@@ -32,15 +29,10 @@
     }
 
 
-    /*
-     *
-     * 
+    /**
      *  controlla se ci sono errori sulla digitazione dei dati messi nel form
-     * 
-     * 
      */
-
-    function controlloErrori(string $email, string $number, array &$errorMsgs) {
+    function controlloErrori(string $email, string $number, array &$errorMsgs): bool {
         if(!is_numeric($number) || strlen($number) != 10) {
             $errorMsgs['number'] = 'Numero di telefono non corretto';
         }else {
@@ -58,14 +50,10 @@
         return $validazioneOk;
     }
 
-    /*
-     *
-     * 
+    /**
      *  controlla se nelle 24 ore prima non sia stata messa nel campo email la stessa mail per evitarne lo spam
-     * 
-     * 
      */
-    function controlloSpamEmail(mysqli $connection, string $email) {
+    function controlloSpamEmail(mysqli $connection, string $email): bool {
         $spam = false;
         $query = "SELECT email, dtm_richiesta FROM Contact WHERE email = '$email' AND dtm_richiesta BETWEEN DATE_SUB(NOW(), INTERVAL 1 DAY) AND NOW();";
         

--
Gitblit v1.8.0