Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/Mysqli.stub
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class mysqli_result implements Traversable, IteratorAggregate
* @param array<mixed> $constructor_args
* @return T|null|false
*/
function fetch_object(string $class = stdClass::class, array $constructor_args = []): object|false|null {}
function fetch_object(string $class = 'stdClass', array $constructor_args = []) {}
}

/**
Expand All @@ -76,4 +76,4 @@ class mysqli_result implements Traversable, IteratorAggregate
* @param array<mixed> $constructor_args
* @return T|null|false
*/
function mysqli_fetch_object(mysqli_result $result, string $class = stdClass::class, array $constructor_args = []): object|false|null {}
function mysqli_fetch_object(mysqli_result $result, string $class = 'stdClass', array $constructor_args = []) {}