mirror of
https://github.com/appwrite/appwrite
synced 2026-05-06 06:48:22 +00:00
8 lines
170 B
PHP
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();
|
|
};
|