<?phprequire_once(__DIR__ . '/vendor/autoload.php');// Configure Bearer authorization: bearerAuth$config = Tinq\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');$apiInstance = new Tinq\Api\PlagiarismChecker( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client(), $config);$content_type = application/json; // string$body = array('key' => new \stdClass); // objecttry { $apiInstance->checkPlagiarism($content_type, $body);} catch (Exception $e) { echo 'Exception when calling PlagiarismChecker->checkPlagiarism: ', $e->getMessage(), PHP_EOL;}