diff --git a/src/Stringy.php b/src/Stringy.php index 1de02a5..4cb6100 100644 --- a/src/Stringy.php +++ b/src/Stringy.php @@ -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; /**