blob: 7405109d72ef4e674b88090961c524cebe3103d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* UF Form Generator
*
* @link https://github.com/lcharette/UF_FormGenerator
* @copyright Copyright (c) 2017 Louis Charette
* @license https://github.com/lcharette/UF_FormGenerator/blob/master/LICENSE (MIT License)
*/
namespace UserFrosting\Sprinkle\FormGenerator\Element;
/**
* InputInterface
*
* Interface for Form elements classes
*/
interface InputInterface {
public function __construct($name, $element, $value = null);
public function parse();
}
|