| 1 | <?php |
||
| 17 | class Kirki_Field_Property { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * An array of the field arguments. |
||
| 21 | * |
||
| 22 | * @access protected |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | protected $args = array(); |
||
| 26 | |||
| 27 | /** |
||
| 28 | * The class constructor. |
||
| 29 | * |
||
| 30 | * @access public |
||
| 31 | * @param array $args The arguments of the field. |
||
| 32 | */ |
||
| 33 | public function __construct( $args ) { |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Gets the property. |
||
| 39 | * |
||
| 40 | * @access public |
||
| 41 | */ |
||
| 42 | public function get_property() {} |
||
| 43 | } |
||
| 44 |