2015-02-13 16:19:01 -04:00
|
|
|
<?php
|
|
|
|
|
|
2015-02-24 18:14:41 -04:00
|
|
|
namespace Features;
|
2015-02-13 16:19:01 -04:00
|
|
|
/**
|
|
|
|
|
* Description of ActionsByEmailFeature
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class ActionsByEmailFeature implements EnterpriseFeature
|
|
|
|
|
{
|
|
|
|
|
public function setup()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function install()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function enable()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function disable()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|