kahlan\matcher\ToReceive::__get PHP Method

__get() public method

Magic getter, if called with 'ordered' will set ordered to true.
public __get ( $name )
    public function __get($name)
    {
        if ($name !== 'ordered') {
            throw new Exception("Unsupported attribute `{$name}` only `ordered` is available.");
        }
        $this->_ordered = true;
        return $this;
    }