2015-02-13 16:19:01 -04:00
|
|
|
<?php
|
|
|
|
|
|
2015-02-18 17:31:53 -04:00
|
|
|
namespace Features\ActionsByEmail;
|
2015-02-13 16:19:01 -04:00
|
|
|
/*
|
|
|
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
|
|
|
* To change this template file, choose Tools | Templates
|
|
|
|
|
* and open the template in the editor.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author gustav
|
|
|
|
|
*/
|
|
|
|
|
interface EnterpriseFeature
|
|
|
|
|
{
|
|
|
|
|
public function setup();
|
|
|
|
|
public function install();
|
|
|
|
|
public function enable();
|
|
|
|
|
public function disable();
|
|
|
|
|
}
|