1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Fixed phpstan static usage warning, updated ci flows

CI flow updates to follow deprecation warnings
This commit is contained in:
Dan Brown
2022-11-03 14:14:22 +00:00
parent 8ec6b07690
commit 6364c541ea
4 changed files with 7 additions and 7 deletions

View File

@ -34,7 +34,7 @@ class SimpleListOptions
$sort = setting()->getForCurrentUser($typeKey . '_sort', '');
$order = setting()->getForCurrentUser($typeKey . '_sort_order', $sortDescDefault ? 'desc' : 'asc');
return new static($typeKey, $sort, $order, $search);
return new self($typeKey, $sort, $order, $search);
}
/**