mageekguy\atoum\asserters\phpString::__toString PHP Method

__toString() public method

public __toString ( )
    public function __toString()
    {
        return is_string($this->value) === false ? parent::__toString() : $this->_('string(%s) \'%s\'', strlen($this->value), addcslashes($this->value, $this->charlist));
    }

Usage Example

Example #1
0
 public function __toString()
 {
     return is_string($this->value) === false ? parent::__toString() : $this->_('string(%s) \'%s\'', mb_strlen($this->value, 'UTF-8'), addcslashes($this->value, $this->charlist));
 }