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

__toString() public method

public __toString ( )
    public function __toString()
    {
        return $this->getTypeOf($this->value);
    }

Usage Example

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