<?php
/**
* Parameter.php - A parameter of a Jaxon request
*
* This class is used to create client side requests to the Jaxon functions and callable objects.
*
* @package jaxon-core
* @copyright 2016 Thierry Feuzeu <thierry.feuzeu@gmail.com>
* @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
* @link https://github.com/jaxon-php/jaxon-core
*/
namespace Jaxon\Request\Factory\Contracts;
interface Parameter
{
/**
* Generate the javascript code of the parameter.
*
* @return string
*/
public function getScript();
}
|