| 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 Reader |
||
|
|
|||
| 29 | */ |
||
| 30 | public function setTempFolder($tempFolder) |
||
| 35 | } |
||
| 36 |
This check compares the return type specified in the
@returnannotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.