1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-12 08:14:06 +02:00

Add docblocks for str and encoding

This commit is contained in:
Daniel St. Jules
2014-10-14 23:14:02 -07:00
parent 3f926c654a
commit 8e16ad472d

View File

@@ -4,8 +4,19 @@ namespace Stringy;
class Stringy implements \Countable, \IteratorAggregate, \ArrayAccess
{
/**
* An instance's string.
*
* @var string
*/
protected $str;
/**
* The string's encoding, which should be one of the mbstring module's
* supported encodings.
*
* @var string
*/
protected $encoding;
/**