model-dependencies-interface.php
2 years ago
model-dependencies.php
2 years ago
with-view.php
2 years ago
model-dependencies-interface.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Db_Queries\Traits; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | interface Model_Dependencies_Interface { |
| 12 | |
| 13 | public function get_dependencies(): array; |
| 14 | |
| 15 | public function prepare_dependencies(); |
| 16 | |
| 17 | } |
| 18 |