FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ninja-forms
/
blocks
/
views
/
includes
/
Authentication
Edit File: TokenFactory.php
<?php namespace NinjaForms\Blocks\Authentication; /** * Creates a new token using the stored secret. */ class TokenFactory { /** * @return Token */ public static function make() { return new Token( SecretStore::getOrCreate() ); } }
Save
Back