Skip to content

Commit 24a7a72

Browse files
Stefan WeilUBMA Sysadmins
authored andcommitted
Fix runtime warnings
1 parent fa8d60c commit 24a7a72

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

module/VuFind/src/VuFind/Db/Table/UserList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function __construct(
7676
PluginManager $tm,
7777
$cfg,
7878
?RowGateway $rowObj = null,
79-
Container $session = null,
79+
?Container $session = null,
8080
$table = 'user_list'
8181
) {
8282
$this->session = $session;

module/VuFind/src/VuFind/Tags/TagsService.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -289,12 +289,12 @@ public function getTagByText(string $text): ?TagsEntityInterface
289289
/**
290290
* Get all resources associated with the provided tag query.
291291
*
292-
* @param string $q Search query
293-
* @param string $source Record source (optional limiter)
294-
* @param string $sort Resource field to sort on (optional)
295-
* @param int $offset Offset for results
296-
* @param ?int $limit Limit for results (null for none)
297-
* @param bool $fuzzy Are we doing an exact (false) or fuzzy (true) search?
292+
* @param string $q Search query
293+
* @param ?string $source Record source (optional limiter)
294+
* @param ?string $sort Resource field to sort on (optional)
295+
* @param int $offset Offset for results
296+
* @param ?int $limit Limit for results (null for none)
297+
* @param bool $fuzzy Are we doing an exact (false) or fuzzy (true) search?
298298
*
299299
* @return array
300300
*/

0 commit comments

Comments
 (0)