Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
third-party
/
src
/
ai-authorization
/
application
:
code-generator-interface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Yoast\WP\SEO\AI_Authorization\Application; /** * Interface Code_Generator_Interface. */ interface Code_Generator_Interface { /** * Generates a unique code using the user's email and random data. * * @param string $user_email The user's email. * @param int $length The length of the returned value. * * @return string The generated unique code. */ public function generate( string $user_email, int $length = 10 ): string; }