@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | { |
95 | 95 | $this->encryption->expects($this->once()) |
96 | 96 | ->method('encryptFile') |
97 | - ->will($this->returnCallback(function ($input, $output) { |
|
97 | + ->will($this->returnCallback(function($input, $output) { |
|
98 | 98 | $fs = new Filesystem(); |
99 | 99 | $fs->dumpFile($output, ''); |
100 | 100 | })); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | { |
111 | 111 | $this->encryption->expects($this->once()) |
112 | 112 | ->method('decryptFile') |
113 | - ->will($this->returnCallback(function ($input, $output) { |
|
113 | + ->will($this->returnCallback(function($input, $output) { |
|
114 | 114 | $fs = new Filesystem(); |
115 | 115 | $fs->dumpFile($output, 'Plain text'); |
116 | 116 | })); |