parse_variable($variable); } /** * Parse the type of the given variable, and convert it if needed. * * @param mixed $variable The variable to parse. * @todo Type and conversion */ function parse_variable($variable) { $this->variable = $variable; } } /** * Interface used for extending the jQuery class. */ interface pQueryExtension { /** * The minimum php version required to use the package. * * @var string */ const REQUIRED_PHP_VERSION; /** * Constructor. * * @param mixed $variable The variable to use an utility on. */ function __construct($variable); } ?>