Test Setup Failed
Push — master ( 214430...dc0943 )
by
unknown
07:54 queued 04:03
created
src/Oro/Bundle/ImportExportBundle/File/BatchFileManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function splitFile($pathFile)
78 78
     {
79
-        if (! ($this->writer && $this->reader)) {
79
+        if (!($this->writer && $this->reader)) {
80 80
             throw new InvalidConfigurationException('Reader and Writer must be configured.');
81 81
         }
82 82
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      */
145 145
     public function mergeFiles(array $files, $summaryFile)
146 146
     {
147
-        if (! ($this->writer && $this->reader)) {
147
+        if (!($this->writer && $this->reader)) {
148 148
             throw new InvalidConfigurationException('Reader and Writer must be configured.');
149 149
         }
150 150
         $contextWriter = null;
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             $items = [];
156 156
             $i = 0;
157 157
             while ($item = $this->reader->read($contextReader)) {
158
-                if (! $contextWriter) {
158
+                if (!$contextWriter) {
159 159
                     $contextWriter = new Context(
160 160
                         [
161 161
                             'filePath' => $summaryFile,
Please login to merge, or discard this patch.