diff options
Diffstat (limited to 'lib/private/StreamImage.php')
-rw-r--r-- | lib/private/StreamImage.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/private/StreamImage.php b/lib/private/StreamImage.php index 9290bf38b0f..34fe590efbd 100644 --- a/lib/private/StreamImage.php +++ b/lib/private/StreamImage.php @@ -133,4 +133,12 @@ class StreamImage implements IStreamImage { public function resizeCopy(int $maxSize): IImage { throw new \BadMethodCallException('Not implemented'); } + + public function loadFromData(string $str): \GdImage|false { + throw new \BadMethodCallException('Not implemented'); + } + + public function readExif(string $data): void { + throw new \BadMethodCallException('Not implemented'); + } } |