<?php
/**
 * Online VAT id checker class with disabled soap call
 */
class oxModOnlineVatIdCheck extends oxModOnlineVatIdCheck_parent
{
     /**
     * Checks online if USt.ID number is valid.
     * Returns true on success. On error sets error value.
     *
     * @param object $oCheckVat vat object
     *
     * @return bool
     */
    protected function _checkOnline( $oCheckVat )
    {
        return true;
    }
}
