Examples\Blog\Schema\ContentBlockUnion::resolveType PHP Method

resolveType() public method

public resolveType ( $object )
    public function resolveType($object)
    {
        return empty($object['id']) ? null : (strpos($object['id'], 'post') !== false ? new PostType() : new BannerType());
    }
ContentBlockUnion