src/MetadataV3/edm/Groups/TFacetAttributesTrait.php 1 location
|
@@ 349-352 (lines=4) @@
|
| 346 |
|
$msg = "SRID must be a valid TSridFacet: " . get_class($this); |
| 347 |
|
return false; |
| 348 |
|
} |
| 349 |
|
if (null != $this->unicode && !$this->isTIsUnicodeFacetTraitValid($this->unicode)) { |
| 350 |
|
$msg = "Unicode must be a valid TUnicodeFacet: " . get_class($this); |
| 351 |
|
return false; |
| 352 |
|
} |
| 353 |
|
|
| 354 |
|
return true; |
| 355 |
|
} |
src/MetadataV3/edm/Groups/TCommonPropertyAttributesTrait.php 1 location
|
@@ 513-516 (lines=4) @@
|
| 510 |
|
$msg = "Scale must be a valid TScaleFacet: " . get_class($this); |
| 511 |
|
return false; |
| 512 |
|
} |
| 513 |
|
if (null != $this->unicode && !$this->isTIsUnicodeFacetTraitValid($this->unicode)) { |
| 514 |
|
$msg = "Unicode must be a valid TUnicodeFacet: " . get_class($this); |
| 515 |
|
return false; |
| 516 |
|
} |
| 517 |
|
if (null != $this->collation && !$this->isTCollationFacetValid($this->collation)) { |
| 518 |
|
$msg = "Collation must be a valid TCollationFacet: " . get_class($this); |
| 519 |
|
return false; |