|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace Jet_Form_Builder\Actions\Methods; |
|
5
|
|
|
6
|
// If this file is called directly, abort. |
|
7
|
if ( ! defined( 'WPINC' ) ) { |
|
8
|
die; |
|
9
|
} |
|
10
|
|
|
11
|
interface Object_Dynamic_Property { |
|
12
|
|
|
13
|
public function is_supported( string $key, $value ): bool; |
|
14
|
|
|
15
|
} |
|
16
|
|