Test Failed
Push — master ( 503637...fd902b )
by George
02:50
created
src/Analyse/Lexical.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
      */
179 179
     private function handleInvalidMandatoryColumn()
180 180
     {
181
-        $errorMessage = $this->schemaColumn->name . " on row $this->rowNumber is missing.";
181
+        $errorMessage = $this->schemaColumn->name." on row $this->rowNumber is missing.";
182 182
         $this->setError(Analyse::ERROR_REQUIRED_FIELD_MISSING_DATA, $errorMessage);
183 183
         $this->setErrorRowStatistic($this->rowNumber);
184 184
         $this->valid = false;
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      */
214 214
     private function handleInvalidFormat()
215 215
     {
216
-        $errorMessage  = "The data in column " . $this->schemaColumn->name ." on row $this->rowNumber doesn't ";
216
+        $errorMessage  = "The data in column ".$this->schemaColumn->name." on row $this->rowNumber doesn't ";
217 217
         $errorMessage .= "match the required format of $this->format.";
218 218
         $this->setError(self::ERROR_INVALID_FORMAT, $errorMessage);
219 219
         $this->setErrorRowStatistic($this->rowNumber);
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
      */
267 267
     private function handleInvalidPattern()
268 268
     {
269
-        $errorMessage  = "The data in column " . $this->schemaColumn->name . " on row $this->rowNumber doesn't ";
269
+        $errorMessage  = "The data in column ".$this->schemaColumn->name." on row $this->rowNumber doesn't ";
270 270
         $errorMessage .= "match the required pattern of $this->pattern.";
271 271
         $this->setError(self::ERROR_INVALID_PATTERN, $errorMessage);
272 272
         $this->setErrorRowStatistic($this->rowNumber);
Please login to merge, or discard this patch.