# jetformbuilder/3.6.3/includes/classes/arrayable/arrayable.php

JetFormBuilder — Dynamic Blocks Form Builder, version 3.6.3. 21 lines.

- Page: https://pluginprobe.com/plugins/jetformbuilder/3.6.3/code/includes/classes/arrayable/arrayable.php
- Raw: https://pluginprobe.com/plugins/jetformbuilder/3.6.3/raw/includes/classes/arrayable/arrayable.php
- Modified: 2023-11-20T11:46:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetformbuilder/3.6.3/code/includes/classes/arrayable/arrayable.php#L10-L20`.

```php
<?php


namespace Jet_Form_Builder\Classes\Arrayable;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

interface Arrayable {

	/**
	 * Get the instance as an array.
	 *
	 * @return array
	 */
	public function to_array(): array;

}

```
