AbstractAfter.php 313 B

123456789101112131415161718
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\Configuration\Addon;
  3. /**
  4. * Description of AbstractAfter
  5. *
  6. * @author Rafał Ossowski <rafal.os@thurdata.com>
  7. */
  8. abstract class AbstractAfter
  9. {
  10. public function __construct()
  11. {
  12. }
  13. abstract public function execute(array $params = []);
  14. }