Files
wyczarujprezent.pl/modules/newsletterpro/libraries/swift/classes/Swift/CharacterReaderFactory.php
2024-10-28 22:14:22 +01:00

27 lines
574 B
PHP

<?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.
*/
/**
* A factory for creating CharacterReaders.
*
* @author Chris Corbyn
*/
interface NewsletterPro_Swift_CharacterReaderFactory
{
/**
* Returns a CharacterReader suitable for the charset applied.
*
* @param string $charset
*
* @return NewsletterPro_Swift_CharacterReader
*/
public function getReaderFor($charset);
}