PluginProbe
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification / 5.5.0
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification v5.5.0
5.5.0 5.4.0 5.3.2 5.3.1 5.1.6 5.1.5 trunk 2.1.5 2.11 2.12 2.13 2.15 3.0.0 3.0.1 3.0.2 3.0.3 3.0.5 3.0.51 3.0.60 3.0.61 3.0.62 3.0.70 3.0.71 3.0.72 3.1.0 All 34 releases
double-opt-in / logger / logger.interface.php

logger.interface.php in Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification 5.5.0, at logger/logger.interface.php

19 lines 612 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Forge12\Shared;
4
5 if ( ! interface_exists( 'Forge12\Shared\LoggerInterface' ) ) {
6 interface LoggerInterface {
7 public function debug( string $message, array $context = [] ): void;
8
9 public function info( string $message, array $context = [] ): void;
10
11 public function error( string $message, array $context = [] ): void;
12
13 public function critical( string $message, array $context = [] ): void;
14
15 public function warning( string $message, array $context = [] ): void;
16
17 public function notice( string $message, array $context = [] ): void; // Füge diese Zeile hinzu
18 }
19 }