array-continue-exception.php
2 years ago
array-convert-once.php
2 years ago
array-tools.php
2 years ago
arrayable-once.php
2 years ago
arrayable.php
2 years ago
collection-item-interface.php
2 years ago
collection.php
2 years ago
arrayable.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Classes\Arrayable; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | interface Arrayable { |
| 12 | |
| 13 | /** |
| 14 | * Get the instance as an array. |
| 15 | * |
| 16 | * @return array |
| 17 | */ |
| 18 | public function to_array(): array; |
| 19 | |
| 20 | } |
| 21 |