@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | { |
| 119 | 119 | $this->encryption->expects($this->once()) |
| 120 | 120 | ->method('encryptFileWithKey') |
| 121 | - ->will($this->returnCallback(function ($input, $output) { |
|
| 121 | + ->will($this->returnCallback(function($input, $output) { |
|
| 122 | 122 | $fs = new Filesystem(); |
| 123 | 123 | $fs->dumpFile($output, ''); |
| 124 | 124 | })); |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | { |
| 138 | 138 | $this->encryption->expects($this->once()) |
| 139 | 139 | ->method('decryptFileWithKey') |
| 140 | - ->will($this->returnCallback(function ($input, $output) { |
|
| 140 | + ->will($this->returnCallback(function($input, $output) { |
|
| 141 | 141 | $fs = new Filesystem(); |
| 142 | 142 | $fs->dumpFile($output, 'Plain text'); |
| 143 | 143 | })); |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | { |
| 245 | 245 | $this->encryption->expects($this->once()) |
| 246 | 246 | ->method('encryptFileWithPassword') |
| 247 | - ->will($this->returnCallback(function ($input, $output, $password) { |
|
| 247 | + ->will($this->returnCallback(function($input, $output, $password) { |
|
| 248 | 248 | $fs = new Filesystem(); |
| 249 | 249 | $fs->dumpFile($output, ''); |
| 250 | 250 | })); |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | { |
| 277 | 277 | $this->encryption->expects($this->once()) |
| 278 | 278 | ->method('decryptFileWithPassword') |
| 279 | - ->will($this->returnCallback(function ($input, $output, $password) { |
|
| 279 | + ->will($this->returnCallback(function($input, $output, $password) { |
|
| 280 | 280 | $fs = new Filesystem(); |
| 281 | 281 | $fs->dumpFile($output, 'Plain text'); |
| 282 | 282 | })); |