Test Failed
Push — master ( 3cdfc8...d830a9 )
by Alex
04:20
created
src/MetadataV3/edm/Groups/TEntitySetAttributesTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,15 +109,15 @@
 block discarded – undo
109 109
     public function isTEntitySetAttributesOK(&$msg = null)
110 110
     {
111 111
         if (null != $this->name && !$this->isTSimpleIdentifierValid($this->name)) {
112
-            $msg = "Name must be a valid TSimpleIdentifier: " . get_class($this);
112
+            $msg = "Name must be a valid TSimpleIdentifier: ".get_class($this);
113 113
             return false;
114 114
         }
115 115
         if (null != $this->entityType && !$this->isTQualifiedNameValid($this->entityType)) {
116
-            $msg = "Entity type must be a valid TQualifiedName: " . get_class($this);
116
+            $msg = "Entity type must be a valid TQualifiedName: ".get_class($this);
117 117
             return false;
118 118
         }
119 119
         if (null != $this->getterAccess && !$this->isTAccessOk($this->getterAccess)) {
120
-            $msg = "Getter access must be a valid TAccess: " . get_class($this);
120
+            $msg = "Getter access must be a valid TAccess: ".get_class($this);
121 121
             return false;
122 122
         }
123 123
 
Please login to merge, or discard this patch.
src/IsOKTraits/IsOKToolboxTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             return true;
76 76
         }
77 77
         if (!$object instanceof $instanceOf) {
78
-            $msg = "Supplied object not an instance of ".$instanceOf. ": " . get_class($this);
78
+            $msg = "Supplied object not an instance of ".$instanceOf.": ".get_class($this);
79 79
             return false;
80 80
         }
81 81
         return $object->isOK($msg);
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     {
86 86
         $result = $this->isValidArray($arr, $instanceOf, $minCount, $maxCount);
87 87
         if (!$result) {
88
-            $msg = "Supplied array not a valid array: " . get_class($this);
88
+            $msg = "Supplied array not a valid array: ".get_class($this);
89 89
             return false;
90 90
         }
91 91
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
         }
121 121
         foreach ($arr as $item) {
122 122
             if (!($item instanceof IsOK)) {
123
-                $msg = "Child item is not an instance of IsOK: " . get_class($this);
123
+                $msg = "Child item is not an instance of IsOK: ".get_class($this);
124 124
                 return false;
125 125
             }
126 126
             if (!$item->isOK($msg)) {
Please login to merge, or discard this patch.