Completed
Push — master ( c93584...7286b1 )
by Francesco
04:37
created
Tests/EncryptionWrapperTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
                          }));
Please login to merge, or discard this patch.