Skip to content

Commit

Permalink
Fix CharsetStreamFilter and CharsetConverter docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zbateson committed Apr 15, 2016
1 parent f690d1e commit 572594d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Stream/CharsetStreamFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class CharsetStreamFilter extends php_user_filter
const STREAM_FILTER_NAME = 'mailmimeparser-encode';

/**
* @var ZBateson\MailMimeParser\Stream\Helper\CharsetConverter the charset
* @var \ZBateson\MailMimeParser\Stream\Helper\CharsetConverter the charset
* converter
*/
protected $converter = null;
Expand Down
8 changes: 8 additions & 0 deletions src/Stream/Helper/CharsetConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,15 @@ class CharsetConverter
*/
protected $toCharset;

/**
* @var boolean indicates if $fromCharset is supported by
* mb_convert_encoding
*/
protected $fromCharsetMbSupported = true;

/**
* @var boolean indicates if $toCharset is supported by mb_convert_encoding
*/
protected $toCharsetMbSupported = true;

/**
Expand Down

0 comments on commit 572594d

Please sign in to comment.