Completed
Push — master ( 21bdd5...d26fee )
by Ben
02:46
created
src/Writer/ObjectWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             throw new WriterClosedException('The writer object was closed');
52 52
         }
53 53
 
54
-        $this->fileObject->fwrite($data. "\n");
54
+        $this->fileObject->fwrite($data . "\n");
55 55
         $this->currentLineLength = 0;
56 56
     }
57 57
 
Please login to merge, or discard this patch.
src/Encryption/AbstractEncryption.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
      */
197 197
     private function encodePassword($password)
198 198
     {
199
-        set_error_handler(function () {
199
+        set_error_handler(function() {
200 200
         }, E_NOTICE);
201 201
         $encodedPassword = iconv('UTF-8', 'ISO-8859-1', $password);
202 202
         restore_error_handler();
Please login to merge, or discard this patch.