<?php
/**
* Page DocBlock definition
* @package org.zadara.marius.pax
*/
/**
* General interface for PAX object.
* Any other interface will extend it.
*
* @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
* @version 5.1
* @since 5.0
*/
interface IPAXObject
{
/**
* General class constructor
* @access public
*/
public function __construct();
}
?>