diff options
Diffstat (limited to 'main/app/sprinkles/FormGenerator/src/Element/InputInterface.php')
-rw-r--r-- | main/app/sprinkles/FormGenerator/src/Element/InputInterface.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/main/app/sprinkles/FormGenerator/src/Element/InputInterface.php b/main/app/sprinkles/FormGenerator/src/Element/InputInterface.php deleted file mode 100644 index 66225bc..0000000 --- a/main/app/sprinkles/FormGenerator/src/Element/InputInterface.php +++ /dev/null @@ -1,22 +0,0 @@ -<?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(); -} |