src/MetadataV3/edm/Groups/TFunctionImportParameterAttributesTrait.php 1 location
|
@@ 229-232 (lines=4) @@
|
226 |
|
$msg = "Precision must be a valid TPrecisionFacet"; |
227 |
|
return false; |
228 |
|
} |
229 |
|
if (null != $this->scale && !$this->isTScaleFacetValid($this->scale)) { |
230 |
|
$msg = "Scale must be a valid TScaleFacet"; |
231 |
|
return false; |
232 |
|
} |
233 |
|
if (null != $this->sRID && !$this->isTSridFacetValid($this->sRID)) { |
234 |
|
$msg = "SRID must be a valid TSRIDFacet"; |
235 |
|
return false; |
src/MetadataV3/edm/Groups/TCommonPropertyAttributesTrait.php 1 location
|
@@ 432-435 (lines=4) @@
|
429 |
|
$msg = "Precision must be a valid TPrecisionFacet"; |
430 |
|
return false; |
431 |
|
} |
432 |
|
if (null != $this->scale && !$this->isTScaleFacetValid($this->scale)) { |
433 |
|
$msg = "Scale must be a valid TScaleFacet"; |
434 |
|
return false; |
435 |
|
} |
436 |
|
if (null != $this->unicode && !$this->isTIsUnicodeFacetTraitValid($this->unicode)) { |
437 |
|
$msg = "Unicode must be a valid TUnicodeFacet"; |
438 |
|
return false; |
src/MetadataV3/edm/Groups/TFacetAttributesTrait.php 1 location
|
@@ 287-290 (lines=4) @@
|
284 |
|
$msg = "Precision must be a valid TPrecisionFacet"; |
285 |
|
return false; |
286 |
|
} |
287 |
|
if (null != $this->scale && !$this->isTScaleFacetValid($this->scale)) { |
288 |
|
$msg = "Scale must be a valid TScaleFacet"; |
289 |
|
return false; |
290 |
|
} |
291 |
|
if (null != $this->sRID && !$this->isTSridFacetValid($this->sRID)) { |
292 |
|
$msg = "SRID must be a valid TSridFacet"; |
293 |
|
return false; |