1
0
Fork 0
mirror of synced 2024-09-09 14:21:24 +12:00
appwrite/tests/resources/functions/php-event/index.php
2023-09-24 13:19:31 +02:00

8 lines
170 B
PHP

<?php
return function ($context) {
$context->log($context->req->body['$id']);
$context->log($context->req->body['name']);
return $context->res->empty();
};