18 lines
263 B
PHP
18 lines
263 B
PHP
<?php
|
|
|
|
namespace oat\tao\model\action;
|
|
|
|
/**
|
|
* Interface for CommonModule
|
|
*
|
|
* @author Martijn Swinkels <martijn@taotesting.com>
|
|
*/
|
|
interface CommonModuleInterface
|
|
{
|
|
|
|
/**
|
|
* Initialization for the controller.
|
|
*/
|
|
public function initialize();
|
|
}
|