diff options
Diffstat (limited to 'vendor/swiftmailer/classes/Swift/Signer.php')
-rw-r--r-- | vendor/swiftmailer/classes/Swift/Signer.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/swiftmailer/classes/Swift/Signer.php b/vendor/swiftmailer/classes/Swift/Signer.php new file mode 100644 index 00000000..7448179f --- /dev/null +++ b/vendor/swiftmailer/classes/Swift/Signer.php @@ -0,0 +1,20 @@ +<?php + +/* + * This file is part of SwiftMailer. + * (c) 2004-2009 Chris Corbyn + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * Base Class of Signer Infrastructure. + * + * + * @author Xavier De Cock <xdecock@gmail.com> + */ +interface Swift_Signer +{ + public function reset(); +} |