Oara\Network\Publisher\Skimlinks::checkConnection PHP Method

checkConnection() public method

public checkConnection ( ) : boolean
return boolean
    public function checkConnection()
    {
        $connection = false;
        try {
            self::getMerchantList();
            $connection = true;
        } catch (\Exception $e) {
        }
        return $connection;
    }