← All changes
|
includes/blocks/form-builder/actions/interfaces/form-submission-action.php
+13
-0
2.7.7
→
2.14.0
View file →
| @@ -1,0 +1,13 @@ | ||
| 1 | +<?php | |
| 2 | +namespace ABlocks\Blocks\FormBuilder\Actions\Interfaces; | |
| 3 | + | |
| 4 | +use ABlocks\Blocks\FormBuilder\ValidateFormData; | |
| 5 | + | |
| 6 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 7 | + exit; | |
| 8 | +} | |
| 9 | + | |
| 10 | +interface FormSubmissionAction { | |
| 11 | + public function __construct( ValidateFormData $obj); | |
| 12 | + public function action(); | |
| 13 | +} | |