fix: comments

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-03-03 21:54:09 -05:00
parent babdbfacaf
commit e2cbb390f6
2 changed files with 7 additions and 21 deletions

View File

@@ -45,19 +45,6 @@ class DefaultController extends ControllerAbstract {
private readonly LoggerInterface $logger,
) {}
/**
* Main API endpoint for mail operations
*
* Single operation:
* {
* "version": 1,
* "transaction": "tx-1",
* "operation": "entity.create",
* "data": {...}
* }
*
* @return JsonResponse
*/
#[AuthenticatedRoute('/v1', name: 'chrono.manager.v1', methods: ['POST'])]
public function index(
int $version,
@@ -184,7 +171,6 @@ class DefaultController extends ControllerAbstract {
}
// ==================== Service Operations =====================
private function serviceList(string $tenantId, string $userId, array $data): mixed {