mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-07 00:46:59 +01:00
* [MOD] Code refactoring by enforcing type checks (WIP)
* [MOD] Update dependencies Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
@@ -108,7 +108,7 @@ final class SecurityManagerController extends ControllerBase
|
||||
* @throws ConstraintException
|
||||
* @throws QueryException
|
||||
*/
|
||||
protected function getEventlogList()
|
||||
protected function getEventlogList(): DataGridTab
|
||||
{
|
||||
return $this->dic->get(EventlogGrid::class)
|
||||
->getGrid($this->dic->get(EventlogService::class)->search($this->itemSearchData))
|
||||
@@ -124,7 +124,7 @@ final class SecurityManagerController extends ControllerBase
|
||||
* @throws ConstraintException
|
||||
* @throws QueryException
|
||||
*/
|
||||
protected function getTracksList()
|
||||
protected function getTracksList(): DataGridTab
|
||||
{
|
||||
return $this->dic->get(TrackGrid::class)
|
||||
->getGrid($this->dic->get(TrackService::class)->search($this->itemSearchData))
|
||||
@@ -134,7 +134,7 @@ final class SecurityManagerController extends ControllerBase
|
||||
/**
|
||||
* @return TabsGridHelper
|
||||
*/
|
||||
public function getTabsGridHelper()
|
||||
public function getTabsGridHelper(): TabsGridHelper
|
||||
{
|
||||
return $this->tabsGridHelper;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user