This commit is contained in:
Marcus Hill
2023-01-31 14:11:02 +00:00
parent 87fdad9105
commit e6cc458b1c
17 changed files with 2581 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php namespace PhpMimeMailParser\Contracts;
interface CharsetManager
{
/**
* Decode the string from Charset
*
* @param string $encodedString The string in its original encoded state
* @param string $charset The Charset header of the part.
*
* @return string The decoded string
*/
public function decodeCharset($encodedString, $charset);
/**
* Get charset alias
*
* @param string $charset .
*
* @return string The charset alias
*/
public function getCharsetAlias($charset);
}