1
0
Fork 0
mirror of synced 2024-09-18 18:40:24 +12:00
appwrite/tests/resources/functions/php-event/index.php
2023-10-17 16:55:08 +03: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();
};