<?php

require_once __DIR__ . '/vendor/autoload.php';xX

function getGoogleClient() {

    $client = new Google_Client();

    $client->setClientId('111199814342-30bfm9nakp4bl0pj6rvvpamd3ev9t1r4.apps.googleusercontent.com');
    $client->setClientSecret('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');
    $client->setRedirectUri('https://bookings.flowbee.io/oauth2callback.php');

    $client->setAccessType('offline');
    $client->setPrompt('consent');
    $client->addScope(Google_Service_Calendar::CALENDAR);

    return $client;
}
