| 123456789101112131415161718 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\Configuration\Addon;
- /**
- * Description of AbstractAfter
- *
- * @autor ThurData <info@thrudata.ch>
- */
- abstract class AbstractAfter
- {
- public function __construct()
- {
-
- }
- abstract public function execute(array $params = []);
- }
|