?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/includes/cf-pro-client/classes/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/includes/cf-pro-client

?? Viewing: json_arrayable.php

<?php


namespace calderawp\calderaforms\pro;

use calderawp\calderaforms\pro\interfaces\arrayable;


/**
 * Class json_arrayable
 *
 * A bass class that can be arrayed or JSON serialized
 *
 *
 * @package calderawp\calderaforms\pro
 */
abstract class json_arrayable implements \JsonSerializable, arrayable
{

	/**
	 * @inheritdoc
	 * @since 0.0.1
	 */
	public function jsonSerialize()
	{
		return $this->toArray();
	}

}


??

??