Examples\Blog\Schema\ContentBlockInterface::resolveType PHP Метод

resolveType() публичный Метод

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