/
home
/
techb158
/
immovalet.com
/
vendor
/
swiftmailer
/
swiftmailer
/
lib
/
classes
/
Swift
/
/home/techb158/immovalet.com/vendor/swiftmailer/swiftmailer/lib/classes/Swift
mkdir
upload
Name
Size
Mode
Actions
AddressEncoder/
-
0755
rm
ByteStream/
-
0755
rm
CharacterReader/
-
0755
rm
CharacterReaderFactory/
-
0755
rm
CharacterStream/
-
0755
rm
Encoder/
-
0755
rm
Events/
-
0755
rm
KeyCache/
-
0755
rm
Mailer/
-
0755
rm
Mime/
-
0755
rm
Plugins/
-
0755
rm
Signers/
-
0755
rm
StreamFilters/
-
0755
rm
Transport/
-
0755
rm
AddressEncoder.php
595
0644
edit
dl
rm
AddressEncoderException.php
721
0644
edit
dl
rm
Attachment.php
1449
0644
edit
dl
rm
CharacterReader.php
1740
0644
edit
dl
rm
CharacterReaderFactory.php
542
0644
edit
dl
rm
CharacterStream.php
2158
0644
edit
dl
rm
ConfigurableSpool.php
1362
0644
edit
dl
rm
DependencyContainer.php
9928
0644
edit
dl
rm
DependencyException.php
588
0644
edit
dl
rm
EmbeddedFile.php
1407
0644
edit
dl
rm
Encoder.php
734
0644
edit
dl
rm
FailoverTransport.php
865
0644
edit
dl
rm
FileSpool.php
5620
0644
edit
dl
rm
FileStream.php
488
0644
edit
dl
rm
Filterable.php
626
0644
edit
dl
rm
IdGenerator.php
433
0644
edit
dl
rm
Image.php
1052
0644
edit
dl
rm
InputByteStream.php
1963
0644
edit
dl
rm
IoException.php
605
0644
edit
dl
rm
KeyCache.php
2802
0644
edit
dl
rm
LoadBalancedTransport.php
878
0644
edit
dl
rm
Mailer.php
2566
0644
edit
dl
rm
MemorySpool.php
2760
0644
edit
dl
rm
Message.php
7161
0644
edit
dl
rm
MimePart.php
1168
0644
edit
dl
rm
NullTransport.php
673
0644
edit
dl
rm
OutputByteStream.php
1128
0644
edit
dl
rm
Preferences.php
2225
0644
edit
dl
rm
ReplacementFilterFactory.php
549
0644
edit
dl
rm
RfcComplianceException.php
554
0644
edit
dl
rm
SendmailTransport.php
886
0644
edit
dl
rm
Signer.php
365
0644
edit
dl
rm
SmtpTransport.php
1727
0644
edit
dl
rm
Spool.php
1240
0644
edit
dl
rm
SpoolTransport.php
780
0644
edit
dl
rm
StreamFilter.php
720
0644
edit
dl
rm
SwiftException.php
601
0644
edit
dl
rm
Transport.php
2014
0644
edit
dl
rm
TransportException.php
670
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache.php
(2802B)
<?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. */ /** * Provides a mechanism for storing data using two keys. * * @author Chris Corbyn */ interface Swift_KeyCache { /** Mode for replacing existing cached data */ const MODE_WRITE = 1; /** Mode for appending data to the end of existing cached data */ const MODE_APPEND = 2; /** * Set a string into the cache under $itemKey for the namespace $nsKey. * * @see MODE_WRITE, MODE_APPEND * * @param string $nsKey * @param string $itemKey * @param string $string * @param int $mode */ public function setString($nsKey, $itemKey, $string, $mode); /** * Set a ByteStream into the cache under $itemKey for the namespace $nsKey. * * @see MODE_WRITE, MODE_APPEND * * @param string $nsKey * @param string $itemKey * @param int $mode */ public function importFromByteStream($nsKey, $itemKey, Swift_OutputByteStream $os, $mode); /** * Provides a ByteStream which when written to, writes data to $itemKey. * * NOTE: The stream will always write in append mode. * If the optional third parameter is passed all writes will go through $is. * * @param string $nsKey * @param string $itemKey * @param Swift_InputByteStream $is optional input stream * * @return Swift_InputByteStream */ public function getInputByteStream($nsKey, $itemKey, Swift_InputByteStream $is = null); /** * Get data back out of the cache as a string. * * @param string $nsKey * @param string $itemKey * * @return string */ public function getString($nsKey, $itemKey); /** * Get data back out of the cache as a ByteStream. * * @param string $nsKey * @param string $itemKey * @param Swift_InputByteStream $is stream to write the data to */ public function exportToByteStream($nsKey, $itemKey, Swift_InputByteStream $is); /** * Check if the given $itemKey exists in the namespace $nsKey. * * @param string $nsKey * @param string $itemKey * * @return bool */ public function hasKey($nsKey, $itemKey); /** * Clear data for $itemKey in the namespace $nsKey if it exists. * * @param string $nsKey * @param string $itemKey */ public function clearKey($nsKey, $itemKey); /** * Clear all data in the namespace $nsKey if it exists. * * @param string $nsKey */ public function clearAll($nsKey); }
Save