diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-04 21:33:05 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-04 21:33:05 -0500 |
commit | 135b921db75da5995eab7e36393ecd4d2b0bc66f (patch) | |
tree | 46efc60fcf1f9d5c57ab1fb9418c2acfbda0698a /vendor/swiftmailer/classes/Swift/KeyCache/KeyCacheInputStream.php | |
parent | 850645dd6b22f5b495d1680e0b49540e0ebf9bd3 (diff) |
Switch to composer
Diffstat (limited to 'vendor/swiftmailer/classes/Swift/KeyCache/KeyCacheInputStream.php')
-rw-r--r-- | vendor/swiftmailer/classes/Swift/KeyCache/KeyCacheInputStream.php | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/vendor/swiftmailer/classes/Swift/KeyCache/KeyCacheInputStream.php b/vendor/swiftmailer/classes/Swift/KeyCache/KeyCacheInputStream.php deleted file mode 100644 index 76039d8a..00000000 --- a/vendor/swiftmailer/classes/Swift/KeyCache/KeyCacheInputStream.php +++ /dev/null @@ -1,51 +0,0 @@ -<?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. - */ - -/** - * Writes data to a KeyCache using a stream. - * - * @author Chris Corbyn - */ -interface Swift_KeyCache_KeyCacheInputStream extends Swift_InputByteStream -{ - /** - * Set the KeyCache to wrap. - * - * @param Swift_KeyCache $keyCache - */ - public function setKeyCache(Swift_KeyCache $keyCache); - - /** - * Set the nsKey which will be written to. - * - * @param string $nsKey - */ - public function setNsKey($nsKey); - - /** - * Set the itemKey which will be written to. - * - * @param string $itemKey - */ - public function setItemKey($itemKey); - - /** - * Specify a stream to write through for each write(). - * - * @param Swift_InputByteStream $is - */ - public function setWriteThroughStream(Swift_InputByteStream $is); - - /** - * Any implementation should be cloneable, allowing the clone to access a - * separate $nsKey and $itemKey. - */ - public function __clone(); -} |