Skip to content

Commit 2e8091e

Browse files
committed
cs fix
1 parent d32b857 commit 2e8091e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

system/Debug/Toolbar/Collectors/Routes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Routes extends BaseCollector
5151
* Returns the data of this collector to be formatted in the toolbar
5252
*
5353
* @return array{
54-
* matchedRoute: array<array{
54+
* matchedRoute: list<array{
5555
* directory: string,
5656
* controller: string,
5757
* method: string,

system/Router/RouteCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1724,7 +1724,7 @@ public function resetRoutes()
17241724
* @return array<
17251725
* string,
17261726
* array{
1727-
* filter?: string|list<string>, namespace?: string, hostname?: string,
1727+
* filter?: list<string>|string, namespace?: string, hostname?: string,
17281728
* subdomain?: string, offset?: int, priority?: int, as?: string,
17291729
* redirect?: int
17301730
* }

system/Test/Mock/MockConnection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class MockConnection extends BaseConnection
2727
{
2828
/**
2929
* @var array{
30-
* connect?: object|resource|false|list<object|resource|false>,
31-
* execute?: object|resource|false,
30+
* connect?: false|list<false|object|resource>|object|resource,
31+
* execute?: false|object|resource,
3232
* }
3333
*/
3434
protected $returnValues = [];

0 commit comments

Comments
 (0)