@@ -18,7 +18,7 @@ |
||
| 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 | /** |
@@ -278,7 +278,7 @@ |
||
| 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 | } |
@@ -348,7 +348,7 @@ |
||
| 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 | |