@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | public function isTFunctionImportAttributesValid(&$msg) |
266 | 266 | { |
267 | 267 | if (!$this->isTSimpleIdentifierValid($this->name)) { |
268 | - $msg = "Name must be a valid TSimpleIdentifier: " . get_class($this); |
|
268 | + $msg = "Name must be a valid TSimpleIdentifier: ".get_class($this); |
|
269 | 269 | return false; |
270 | 270 | } |
271 | 271 | if ($this->isComposable && $this->isSideEffecting) { |
@@ -278,11 +278,11 @@ discard block |
||
278 | 278 | return false; |
279 | 279 | }*/ |
280 | 280 | if (!$this->isObjectNullOrType('\AlgoWeb\ODataMetadata\MetadataV3\edm\TOperandType', $this->entitySet)) { |
281 | - $msg = "Entity set must be either null or an instance of TOperandType: " . get_class($this); |
|
281 | + $msg = "Entity set must be either null or an instance of TOperandType: ".get_class($this); |
|
282 | 282 | return false; |
283 | 283 | } |
284 | 284 | if (null != $this->methodAccess && !$this->isTAccessOk($this->methodAccess)) { |
285 | - $msg = "Method access must be a valid TAccess: " . get_class($this); |
|
285 | + $msg = "Method access must be a valid TAccess: ".get_class($this); |
|
286 | 286 | return false; |
287 | 287 | } |
288 | 288 | if (!$this->isValidArrayOK( |