Commit 2b12f7e9 authored by Bovo Alan Davide's avatar Bovo Alan Davide
Browse files

remove typo

parent 8fb5cfc7
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -20,8 +20,8 @@ $options = [

try {
    $pdo = new PDO($dsn, $user, $pass, $options);
} catch (\PDOException $e) {
} catch (PDOException $e) {
    // In un ambiente di produzione, non mostrare l'errore dettagliato all'utente
    throw new \PDOException($e->getMessage(), (int)$e->getCode());
    throw new PDOException($e->getMessage(), (int)$e->getCode());
}
?>