Skip to content

Commit 8a94a64

Browse files
committed
fix: update type annotations for queryLogs and list method in QueryLogger
1 parent fe5d55b commit 8a94a64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/Helpers/QueryLogger.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class QueryLogger
88
{
99
/**
10-
* @var array<string, string|float>
10+
* @var array<int, array<string, float|string>>
1111
*/
1212
private static array $queryLogs = [];
1313

@@ -25,7 +25,7 @@ public static function log(QueryExecuted $log): void
2525
/**
2626
* Get query Log
2727
*
28-
* @return array<string, string|float>
28+
* @return array<int, array<string, float|string>>
2929
*/
3030
public static function list(): array
3131
{

0 commit comments

Comments
 (0)