| 1 | <?php | ||
| 8 | class StringType extends EdmString | ||
| 9 | { | ||
| 10 | /** | ||
| 11 | * Checks this type (String) is compatible with another type | ||
| 12 | * Note: implementation of IType::isCompatibleWith. | ||
| 13 | * | ||
| 14 | * @param IType $type Type to check compatibility | ||
| 15 | * | ||
| 16 | * @return bool | ||
| 17 | */ | ||
| 18 | public function isCompatibleWith(IType $type) | ||
| 22 | } | ||
| 23 |