builder-create-page-interface.php
1 year ago
builder-interface.php
1 year ago
builder-update-page-interface.php
1 year ago
builder-interface.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JFB_Modules\Onboarding\Builders\Interfaces; |
| 4 | |
| 5 | interface Builder_Interface { |
| 6 | |
| 7 | public function set_form_id( int $form_id ); |
| 8 | |
| 9 | public function get_form_id(): int; |
| 10 | |
| 11 | public function set_redirect_url( string $url ); |
| 12 | |
| 13 | public function set_builder_type( string $type ); |
| 14 | |
| 15 | public function get_builder_type(): string; |
| 16 | |
| 17 | public function get_redirect_url(): string; |
| 18 | |
| 19 | } |
| 20 |