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

9 lines
170 B
PHP

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