14 lines
292 B
PHP
14 lines
292 B
PHP
<?php
|
|
ini_set('display_errors',1);
|
|
error_reporting(E_ALL);
|
|
|
|
require_once __DIR__ . '/../api/webhook.php';
|
|
|
|
try {
|
|
$w = new WhatsAppWebhook();
|
|
echo "Webhook instance OK\n";
|
|
} catch (Throwable $t) {
|
|
echo "ERROR: " . $t->getMessage() . "\n";
|
|
echo $t->getTraceAsString() . "\n";
|
|
}
|