Completed
Push — master ( d2e6ed...f00d96 )
by Alex
10:33
created
src/MetadataV3/edm/EntityContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     public function setName($name)
83 83
     {
84 84
         if (!$this->isTSimpleIdentifierValid($name)) {
85
-            $msg = "Name(" . $name . ") must be a valid TSimpleIdentifier";
85
+            $msg = "Name(".$name.") must be a valid TSimpleIdentifier";
86 86
             throw new \InvalidArgumentException($msg);
87 87
         }
88 88
         $this->name = $name;
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
     public function isOK(&$msg = null)
398 398
     {
399 399
         if (!$this->isTSimpleIdentifierValid($this->name)) {
400
-            $msg = "Name(" . $this->name . ") must be a valid TSimpleIdentifier " . __FILE__ . ":" . __LINE__;
400
+            $msg = "Name(".$this->name.") must be a valid TSimpleIdentifier ".__FILE__.":".__LINE__;
401 401
             return false;
402 402
         }
403 403
 
Please login to merge, or discard this patch.
src/MetadataV3/edm/TEntityPropertyType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     public function setStoreGeneratedPattern($storeGeneratedPattern)
69 69
     {
70 70
         if (null != $storeGeneratedPattern && !$this->isTGenerationPatternValid($storeGeneratedPattern)) {
71
-            $msg = "Store generation pattern must be a valid TGenerationPattern: " . get_class($this);
71
+            $msg = "Store generation pattern must be a valid TGenerationPattern: ".get_class($this);
72 72
             throw new \InvalidArgumentException($msg);
73 73
         }
74 74
         $this->storeGeneratedPattern = $storeGeneratedPattern;
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     public function isOK(&$msg = null)
282 282
     {
283 283
         if (null != $this->storeGeneratedPattern && !$this->isTGenerationPatternValid($this->storeGeneratedPattern)) {
284
-            $msg = "Store generation pattern must be a valid TGenerationPattern: " . get_class($this);
284
+            $msg = "Store generation pattern must be a valid TGenerationPattern: ".get_class($this);
285 285
             return false;
286 286
         }
287 287
         if (!$this->isValidArrayOK(
Please login to merge, or discard this patch.