@@ -7,7 +7,7 @@ |
||
| 7 | 7 | public function isTActionValid($string) |
| 8 | 8 | { |
| 9 | 9 | if (!is_string($string)) { |
| 10 | - $msg = "Input must be a string: ". get_class($this); |
|
| 10 | + $msg = "Input must be a string: " . get_class($this); |
|
| 11 | 11 | throw new \InvalidArgumentException($msg); |
| 12 | 12 | } |
| 13 | 13 | return 'Cascade' == $string || 'None' == $string; |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | public function isTParameterModeValid($string) |
| 8 | 8 | { |
| 9 | 9 | if (!is_string($string)) { |
| 10 | - $msg = "Input must be a string: ". get_class($this); |
|
| 10 | + $msg = "Input must be a string: " . get_class($this); |
|
| 11 | 11 | throw new \InvalidArgumentException($msg); |
| 12 | 12 | } |
| 13 | 13 | return 'In' == $string || 'Out' == $string || 'InOut' == $string; |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | public function isTCommandTextValid($string) |
| 12 | 12 | { |
| 13 | 13 | if (!is_string($string)) { |
| 14 | - $msg = "Input must be a string: ". get_class($this); |
|
| 14 | + $msg = "Input must be a string: " . get_class($this); |
|
| 15 | 15 | throw new \InvalidArgumentException($msg); |
| 16 | 16 | } |
| 17 | 17 | return true; |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | public function isTMultiplicityValid($string) |
| 8 | 8 | { |
| 9 | 9 | if (!is_string($string)) { |
| 10 | - $msg = "Input must be a string: ". get_class($this); |
|
| 10 | + $msg = "Input must be a string: " . get_class($this); |
|
| 11 | 11 | throw new \InvalidArgumentException($msg); |
| 12 | 12 | } |
| 13 | 13 | return '0..1' == $string || '1' == $string || '*' == $string; |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | "GeometricMultiPoint", "GeometricMultiLineString", "GeometricMultiPolygon", "GeometryCollection", |
| 14 | 14 | "Guid", "Int16", "Int32", "Int64", "String", "SByte"]; |
| 15 | 15 | if (!is_string($string)) { |
| 16 | - $msg = "Input must be a string: ". get_class($this); |
|
| 16 | + $msg = "Input must be a string: " . get_class($this); |
|
| 17 | 17 | throw new \InvalidArgumentException($msg); |
| 18 | 18 | } |
| 19 | 19 | if (!in_array($string, $validType)) { |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | $regex = '/(Collection|Ref)\([^ \t]{1,}(\.[^ \t]{1,}){0,}\/)'; |
| 18 | 18 | |
| 19 | 19 | if (!is_string($string)) { |
| 20 | - $msg = "Input must be a string: ". get_class($this); |
|
| 20 | + $msg = "Input must be a string: " . get_class($this); |
|
| 21 | 21 | throw new \InvalidArgumentException($msg); |
| 22 | 22 | } |
| 23 | 23 | if ($this->isTQualifiedNameValid($string)) { |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | |
| 18 | 18 | public function __construct() |
| 19 | 19 | { |
| 20 | - $this->gExpressionMaximum = (0 == count($this->parameters)) ? 1 : 0 ; |
|
| 20 | + $this->gExpressionMaximum = (0 == count($this->parameters)) ? 1 : 0; |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /** |
@@ -158,7 +158,7 @@ |
||
| 158 | 158 | $msg = 'Type name cannot be null or empty'; |
| 159 | 159 | return false; |
| 160 | 160 | } |
| 161 | - if (null != $this->modificationFunctionMapping && !$this->modificationFunctionMapping>isOK($msg)) { |
|
| 161 | + if (null != $this->modificationFunctionMapping && !$this->modificationFunctionMapping > isOK($msg)) { |
|
| 162 | 162 | return false; |
| 163 | 163 | } |
| 164 | 164 | if (!$this->isValidArray( |