summaryrefslogtreecommitdiffstats
path: root/library/SSRS/Object/RenderStream.php
blob: 58482b69827f4247974d2c6a85b32bb23ebd5b78 (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;
    }

}