<?php
/**
* Abstract class for sub-classing. Used to group business logic using the Command Pattern, if it is too complex to be implemented in the Resource itself.
* @package diy-framework
* @subpackage controller
* @author Martynas Jusevicius <hide@address.com>
* @link http://www.xml.lt
*/
abstract class Command
{
/**
* Executes this Command.
*/
public abstract function execute();
}
?>