📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 19:55:22
📂
/ (Root)
/
home
/
apkbfjox
/
stargame.pk
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
ai
/
authorization
/
infrastructure
📍 /home/apkbfjox/stargame.pk/wp-content/plugins/wordpress-seo/src/ai/authorization/infrastructure
🔄 Refresh
✏️
Editing: token-user-meta-repository-interface.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\AI\Authorization\Infrastructure; /** * Interface Token_Repository_Interface */ interface Token_User_Meta_Repository_Interface { /** * Get the token for a user. * * @param int $user_id The user ID. * * @return string The token data. */ public function get_token( int $user_id ): string; /** * Store the token for a user. * * @param int $user_id The user ID. * @param string $value The token value. * * @return void */ public function store_token( int $user_id, string $value ): void; /** * Delete the token for a user. * * @param int $user_id The user ID. * * @return void */ public function delete_token( int $user_id ): void; }
💾 Save Changes
❌ Cancel