Files
luos/workflow/engine/classes/features/EnterpriseFeature.php

21 lines
411 B
PHP

<?php
namespace Features\ActionsByEmail;
/*
* 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();
}