🗑️ Remove deprecated /welcome route and add test to ensure 404 on access

🔧 Add `.codegraph/config.json` for file and directory tracking configuration
This commit is contained in:
HolgerHatGarKeineNode
2026-05-20 00:47:02 +02:00
parent 154a28c75c
commit 532199fe15
4 changed files with 161 additions and 3 deletions
@@ -0,0 +1,5 @@
<?php
it('returns 404 for the removed welcome route', function () {
$this->get('/welcome')->assertNotFound();
});