From b75340b7fabf375f1ff88ac26c4ff86ffe7ca454 Mon Sep 17 00:00:00 2001 From: Snider Date: Mon, 9 Mar 2026 19:01:34 +0000 Subject: [PATCH] fix: remove duplicate onApiRoutes method in Boot.php Co-Authored-By: Claude Opus 4.6 --- src/php/Boot.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/php/Boot.php b/src/php/Boot.php index 1e13af4..308bec2 100644 --- a/src/php/Boot.php +++ b/src/php/Boot.php @@ -167,14 +167,6 @@ class Boot extends ServiceProvider // in the existing boot() method until we migrate to pure event-driven nav. } - /** - * Handle API routes registration event. - */ - public function onApiRoutes(ApiRoutesRegistering $event): void - { - $event->routes(fn () => require __DIR__.'/Routes/api.php'); - } - /** * Handle console booting event. */