@@ -82,7 +82,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -68,7 +68,7 @@ discard block |
||
| 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 |
||
| 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( |