1 | <?php |
||
13 | class ReaderOptions extends ReaderOptionsCommon |
||
14 | { |
||
15 | /** @var string|null Temporary folder where the temporary files will be created */ |
||
16 | protected $tempFolder = null; |
||
17 | |||
18 | /** |
||
19 | * @return string|null Temporary folder where the temporary files will be created |
||
20 | */ |
||
21 | 105 | public function getTempFolder() |
|
25 | |||
26 | /** |
||
27 | * @param string|null $tempFolder Temporary folder where the temporary files will be created |
||
28 | * @return ReaderOptions |
||
29 | */ |
||
30 | public function setTempFolder($tempFolder) |
||
35 | } |
||
36 |