<?php
/**
* Page DocBlock definition
* @package org.zadara.marius.pax
*/
/**
* Instruction evaluator interface definition.
*
* @author Marius Zadara <hide@address.com>
* @category Interfaces
* @copyright (C) 2008-2009 Marius Zadara
* @license Free for non-comercial use
* @package org.zadara.marius.pax
* @see IPAXObject
* @since 5.0
*/
interface IInstructionEvaluator extends IPAXObject
{
/**
* Method to evaluate instruction.
*
* @access public
* @static
* @param string $instruction The instruction to evaluate
* @return mixed
*/
public static function evaluate($instruction);
}
?>