1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 02:54:03 +00:00

Update comments

This commit is contained in:
lukinovec 2025-02-11 12:22:10 +01:00
parent d8129ac2cc
commit 509279f188
2 changed files with 5 additions and 4 deletions

View file

@ -127,7 +127,7 @@ test('url generator can override specific route names while all other functional
Route::get('/foo', fn () => 'foo')->name('foo');
Route::get('/bar', fn () => 'bar')->name('bar');
Route::get('/baz', fn () => 'baz')->name('baz'); // not overridden
Route::get('/baz', fn () => 'baz')->name('baz'); // Not overridden
TenancyUrlGenerator::$override = ['foo' => 'bar'];