Test Failed
Push — master ( c6e89f...8536e5 )
by Christopher
26:06 queued 18:56
created
src/MetadataV3/edm/TAnonymousFunctionExpressionType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     
19 19
     public function __construct()
20 20
     {
21
-        $this->gExpressionMaximum = (0 == count($this->parameters)) ? 1 : 0 ;
21
+        $this->gExpressionMaximum = (0 == count($this->parameters)) ? 1 : 0;
22 22
     }
23 23
     
24 24
     /**
Please login to merge, or discard this patch.
src/MetadataV3/edm/TFunctionType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
         }
279 279
         foreach ($this->returnType as $type) {
280 280
             if (!is_string($type) || !$this->isTCommandTextValid($type)) {
281
-                $msg = $type . " must be a valid TCommandText";
281
+                $msg = $type." must be a valid TCommandText";
282 282
                 return false;
283 283
             }
284 284
         }
Please login to merge, or discard this patch.
src/MetadataV3/edm/EntityContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -348,7 +348,7 @@
 block discarded – undo
348 348
     public function isOK(&$msg = null)
349 349
     {
350 350
         if (!$this->isTSimpleIdentifierValid($this->name)) {
351
-            $msg = "Name(" . $this->name . ") must be a valid TSimpleIdentifier " . __FILE__ . ":" . __LINE__;
351
+            $msg = "Name(".$this->name.") must be a valid TSimpleIdentifier ".__FILE__.":".__LINE__;
352 352
             return false;
353 353
         }
354 354
 
Please login to merge, or discard this patch.
tests/EdmxTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         $edmx = new Edmx();
20 20
         $this->assertTrue($edmx->isOK($msg), $msg);
21 21
         $this->assertNull($msg);
22
-        $ymlDir = dirname(__DIR__) . DIRECTORY_SEPARATOR . "src" . DIRECTORY_SEPARATOR . "MetadataV3" . DIRECTORY_SEPARATOR . "JMSmetadata";
22
+        $ymlDir = dirname(__DIR__).DIRECTORY_SEPARATOR."src".DIRECTORY_SEPARATOR."MetadataV3".DIRECTORY_SEPARATOR."JMSmetadata";
23 23
         $serializer =
24 24
             \JMS\Serializer\SerializerBuilder::create()
25 25
                 ->addMetadataDir($ymlDir)
@@ -33,6 +33,6 @@  discard block
 block discarded – undo
33 33
 
34 34
         $xml = new \DOMDocument();
35 35
         $xml->loadXML($data);
36
-        $xml->schemaValidate(dirname(__DIR__) . DIRECTORY_SEPARATOR . "xsd" . DIRECTORY_SEPARATOR . "/Microsoft.Data.Entity.Design.Edmx_3.xsd");
36
+        $xml->schemaValidate(dirname(__DIR__).DIRECTORY_SEPARATOR."xsd".DIRECTORY_SEPARATOR."/Microsoft.Data.Entity.Design.Edmx_3.xsd");
37 37
     }
38 38
 }
Please login to merge, or discard this patch.