-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathFormInterface.php
More file actions
27 lines (25 loc) · 705 Bytes
/
FormInterface.php
File metadata and controls
27 lines (25 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php declare(strict_types=1);
/**
* Interface FormInterface
*
* @author Robin 'codeFareith' von den Bergen <robinvonberg@gmx.de>
* @copyright (c) 2018-2022 by Robin von den Bergen
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version 1.0.0
*
* @link https://github.com/codeFareith/cf_google_authenticator
* @see https://www.fareith.de
* @see https://typo3.org
*/
namespace CodeFareith\CfGoogleAuthenticator\Domain\Form;
/**
* Form interface
*
* This interface should be used for any form object
*
* @package CodeFareith\CfGoogleAuthenticator\Domain\Form
* @since 1.0.0
*/
interface FormInterface
{
}