8889841cplugins/mailpoet/lib/Automation/Engine/Endpoints/Automations/AutomationsDeleteEndpoint.php000064400000001642150476753000036153 0ustar00home/clixcotz/tcchp.clix.co.tz/wp-contentdeleteController = $deleteController; } public function handle(Request $request): Response { $automationId = intval($request->getParam('id')); $this->deleteController->deleteAutomation($automationId); return new Response(null); } public static function getRequestSchema(): array { return [ 'id' => Builder::integer()->required(), ]; } }