for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace POData\Providers\Metadata\Type;
/**
* Class String.
*/
class StringType extends EdmString
{
* Checks this type (String) is compatible with another type
* Note: implementation of IType::isCompatibleWith.
*
* @param IType $type Type to check compatibility
* @return bool
public function isCompatibleWith(IType $type)
return parent::isCompatibleWith($type);
}