📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 19:19:21
📂
/ (Root)
/
home
/
apkbfjox
/
stargame.pk
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
ai
/
free-sparks
/
application
📍 /home/apkbfjox/stargame.pk/wp-content/plugins/wordpress-seo/src/ai/free-sparks/application
🔄 Refresh
✏️
Editing: free-sparks-handler-interface.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\AI\Free_Sparks\Application; /** * Interface Consent_Handler_Interface * * This interface defines the methods for handling user consent. */ interface Free_Sparks_Handler_Interface { /** * Retrieves the timestamp. * * @param string $format The format in which to return the timestamp. Defaults to 'Y-m-d H:i:s'. * * @return ?string The timestamp when the user started using free sparks, or null if not set. */ public function get( string $format = 'Y-m-d H:i:s' ): ?string; /** * Registers the starting of the free sparks. * * @param ?int $timestamp The timestamp when the user started using free sparks. If null, the current time will be * used. * * @return bool True if the operation was successful, false otherwise. */ public function start( ?int $timestamp = null ): bool; }
💾 Save Changes
❌ Cancel