Skip to content

Commit da0e1bc

Browse files
committed
Fix stan
1 parent 6fa9f36 commit da0e1bc

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/Database/Adapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public function resetMetadata(): static
246246
*
247247
* @param int $milliseconds The timeout value in milliseconds for database queries.
248248
* @param string $event The event the timeout should fire for
249-
* @return $this
249+
* @return void
250250
*
251251
* @throws Exception The provided timeout value must be greater than or equal to 0.
252252
*/

src/Database/Adapter/Pool.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ public function __construct(UtopiaPool $pool)
3232
*
3333
* Required because __call() can't be used to implement abstract methods.
3434
*
35-
* @template T
3635
* @param string $method
37-
* @param array $args
38-
* @return T
36+
* @param array<mixed> $args
37+
* @return mixed
3938
*/
4039
public function delegate(string $method, array $args): mixed
4140
{

0 commit comments

Comments
 (0)