📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 19:26:17
📂
/ (Root)
/
home
/
apkbfjox
/
epiwinn.com.pk
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
ai
/
authorization
/
application
📍 /home/apkbfjox/epiwinn.com.pk/wp-content/plugins/wordpress-seo/src/ai/authorization/application
🔄 Refresh
✏️
Editing: code-verifier-handler-interface.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\AI\Authorization\Application; use Yoast\WP\SEO\AI\Authorization\Domain\Code_Verifier; /** * Interface Code_Verifier_Handler_Interface * * This interface defines the methods for handling code verifier. */ interface Code_Verifier_Handler_Interface { /** * Generate a code verifier for a user. * * @param string $user_email The user email. * * @return Code_Verifier The generated code verifier. */ public function generate( string $user_email ): Code_Verifier; /** * Validate the code verifier for a user. * * @param int $user_id The user ID. * * @return string The code verifier. * * @throws RuntimeException If the code verifier is expired or invalid. */ public function validate( int $user_id ): string; }
💾 Save Changes
❌ Cancel