summaryrefslogtreecommitdiffstats
path: root/library/SSRS/Object/RenderStream.php
blob: 9333631bc5698f4784d18480cd1e265b3eba243d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace SSRS\Object;

class RenderStream extends ObjectAbstract {

    public $Result;
    public $MimeType;

    public function __construct(stdClass $stream) {
        $this->Result = $stream->Result;
        $this->MimeType = $stream->MimeType;
    }

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

}