Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 17:48:31 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 17:48:31 +0300
commita7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (patch)
tree629f395d91f3cf15497bbfd6597e6df9b081cf36 /tests/lib/Preview
parent1762a409f954fd9a66e7572704ea9ba7813601b4 (diff)
Add visibility to all properties and move static keyword
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/Preview')
-rw-r--r--tests/lib/Preview/GeneratorTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/Preview/GeneratorTest.php b/tests/lib/Preview/GeneratorTest.php
index bfe464f785b..3a46447632d 100644
--- a/tests/lib/Preview/GeneratorTest.php
+++ b/tests/lib/Preview/GeneratorTest.php
@@ -325,13 +325,13 @@ class GeneratorTest extends \Test\TestCase {
$image->method('dataMimeType')->willReturn('image/png');
$image->method('data')->willReturn($data);
- $image->method('resizeCopy')->willReturnCallback(function($size) use ($data) {
+ $image->method('resizeCopy')->willReturnCallback(function ($size) use ($data) {
return $this->getMockImage($size, $size, $data);
});
- $image->method('preciseResizeCopy')->willReturnCallback(function($width, $height) use ($data) {
+ $image->method('preciseResizeCopy')->willReturnCallback(function ($width, $height) use ($data) {
return $this->getMockImage($width, $height, $data);
});
- $image->method('cropCopy')->willReturnCallback(function($x, $y, $width, $height) use ($data) {
+ $image->method('cropCopy')->willReturnCallback(function ($x, $y, $width, $height) use ($data) {
return $this->getMockImage($width, $height, $data);
});