Test Failed
Push — master ( 0de449...3cdfc8 )
by Alex
08:28 queued 43s
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.
src/MetadataV3/edm/Groups/TTypeAttributesTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,11 +37,11 @@
 block discarded – undo
37 37
     public function isTTypeAttributesValid(&$msg = null)
38 38
     {
39 39
         if (null == $this->name) {
40
-            $msg = "Name cannot be null " . __FILE__ . " Class: " . __Class__;
40
+            $msg = "Name cannot be null ".__FILE__." Class: ".__Class__;
41 41
             return false;
42 42
         }
43 43
         if (!$this->isTSimpleIdentifierValid($this->name)) {
44
-            $msg = "Name must be a valid TSimpleIdentifier " . __FILE__ . " Class: " . __Class__;
44
+            $msg = "Name must be a valid TSimpleIdentifier ".__FILE__." Class: ".__Class__;
45 45
             return false;
46 46
         }
47 47
         
Please login to merge, or discard this patch.
src/MetadataManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         if (!$this->V3Edmx->isOK($msg)) {
18 18
             throw new \Exception($msg);
19 19
         }
20
-        $ymlDir = dirname(__DIR__) . DIRECTORY_SEPARATOR . "MetadataV3" . DIRECTORY_SEPARATOR . "JMSmetadata";
20
+        $ymlDir = dirname(__DIR__).DIRECTORY_SEPARATOR."MetadataV3".DIRECTORY_SEPARATOR."JMSmetadata";
21 21
         $this->serializer =
22 22
             \JMS\Serializer\SerializerBuilder::create()
23 23
                 ->addMetadataDir($ymlDir)
Please login to merge, or discard this patch.
edm/EntityContainer/AssociationSetAnonymousType/EndAnonymousType.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use AlgoWeb\ODataMetadata\IsOKTraits\IsOKToolboxTrait;
7 7
 use AlgoWeb\ODataMetadata\MetadataV3\edm\Groups\GEmptyElementExtensibilityTrait;
8 8
 use AlgoWeb\ODataMetadata\MetadataV3\edm\IsOKTraits\TSimpleIdentifierTrait;
9
-use AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType;
10 9
 
11 10
 /**
12 11
  * Class representing EndAnonymousType
Please login to merge, or discard this patch.
tests/EdmxTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
         $edmx = new Edmx();
21 21
         $this->assertTrue($edmx->isOK($msg), $msg);
22 22
         $this->assertNull($msg);
23
-        $ymlDir = dirname(__DIR__) . $ds . "src" . $ds . "MetadataV3" . $ds . "JMSmetadata";
23
+        $ymlDir = dirname(__DIR__).$ds."src".$ds."MetadataV3".$ds."JMSmetadata";
24 24
         $serializer =
25 25
             \JMS\Serializer\SerializerBuilder::create()
26 26
                 ->addMetadataDir($ymlDir)
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $ds = DIRECTORY_SEPARATOR;
35 35
         $xml = new \DOMDocument();
36 36
         $xml->loadXML($data);
37
-        $xml->schemaValidate(dirname(__DIR__) . $ds . "xsd" . $ds . "/Microsoft.Data.Entity.Design.Edmx_3.xsd");
37
+        $xml->schemaValidate(dirname(__DIR__).$ds."xsd".$ds."/Microsoft.Data.Entity.Design.Edmx_3.xsd");
38 38
     }
39 39
 
40 40
     public function testWithSingleEntitySerializeOk()
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         $this->assertNull($msg);
52 52
 
53 53
 
54
-        $ymlDir = dirname(__DIR__) . $ds . "src" . $ds . "MetadataV3" . $ds . "JMSmetadata";
54
+        $ymlDir = dirname(__DIR__).$ds."src".$ds."MetadataV3".$ds."JMSmetadata";
55 55
         $serializer =
56 56
             \JMS\Serializer\SerializerBuilder::create()
57 57
                 ->addMetadataDir($ymlDir)
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $this->assertNull($msg);
79 79
 
80 80
 
81
-        $ymlDir = dirname(__DIR__) . $ds . "src" . $ds . "MetadataV3" . $ds . "JMSmetadata";
81
+        $ymlDir = dirname(__DIR__).$ds."src".$ds."MetadataV3".$ds."JMSmetadata";
82 82
         $serializer =
83 83
             \JMS\Serializer\SerializerBuilder::create()
84 84
                 ->addMetadataDir($ymlDir)
Please login to merge, or discard this patch.