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

9 lines
170 B
PHP
Raw Normal View History

2023-09-25 00:19:31 +13:00
<?php
return function ($context) {
$context->log($context->req->body['$id']);
$context->log($context->req->body['name']);
return $context->res->empty();
};