Signer.php 365 B

12345678910111213141516171819
  1. <?php
  2. /*
  3. * This file is part of SwiftMailer.
  4. * (c) 2004-2009 Chris Corbyn
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * Base Class of Signer Infrastructure.
  11. *
  12. * @author Xavier De Cock <xdecock@gmail.com>
  13. */
  14. interface Swift_Signer
  15. {
  16. public function reset();
  17. }