Skip to content

Commit ac3b8e5

Browse files
authored
[1.x] Add nested controller route grouping (#433)
* Add nested controller route grouping * linting
1 parent 934b2a7 commit ac3b8e5

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

src/Support/RedisAdapter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function xadd(string $key, array $dictionary): string|Pipeline|PhpRedis|R
5050
*/
5151
public function xrange(string $key, string $start, string $end, ?int $count = null): array
5252
{
53-
return collect($this->handle([ // @phpstan-ignore return.type, argument.templateType, argument.templateType
53+
return collect($this->handle([ // @phpstan-ignore argument.templateType, argument.templateType
5454
'XRANGE',
5555
$this->config->get('database.redis.options.prefix').$key,
5656
$start,

tests/Feature/Recorders/SlowRequestsTest.php

+24
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,30 @@
488488
Pulse::ignore(fn () => expect(DB::table('pulse_values')->count())->toBe(0));
489489
});
490490

491+
it('handles controller nested route groups', function () {
492+
Config::set('pulse.recorders.'.SlowRequests::class.'.threshold', 0);
493+
494+
Route::controller(MyController::class)->group(function () {
495+
Route::get('index', 'index')->name('test')->withoutMiddleware('auth:admin');
496+
})->withoutMiddleware('auth');
497+
498+
$response = get('/index');
499+
Pulse::stopRecording();
500+
501+
$response->assertContent('ok');
502+
$entries = DB::table('pulse_entries')->get();
503+
expect($entries)->toHaveCount(1);
504+
expect($entries[0]->key)->toBe(json_encode(['GET', '/index', 'MyController@index']));
505+
});
506+
507+
class MyController
508+
{
509+
public function index()
510+
{
511+
return 'ok';
512+
}
513+
}
514+
491515
class ExceptionThrowingRecorder
492516
{
493517
public function register(callable $record, Application $app): void

0 commit comments

Comments
 (0)