Home
last modified time | relevance | path

Searched refs:UserStateTogglerInterface (Results 1 – 8 of 8) sorted by relevance

/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Admin/User/
H A DDisableAction.php28 use Ampache\Module\User\UserStateTogglerInterface; alias
41 private UserStateTogglerInterface $userStateToggler;
46 UserStateTogglerInterface $userStateToggler
H A DEnableAction.php29 use Ampache\Module\User\UserStateTogglerInterface; alias
44 private UserStateTogglerInterface $userStateToggler;
50 UserStateTogglerInterface $userStateToggler
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Api/Method/
H A DUserUpdateMethod.php34 use Ampache\Module\User\UserStateTogglerInterface; alias
136 private static function getUserStateToggler(): UserStateTogglerInterface
140 return $dic->get(UserStateTogglerInterface::class);
/dports/audio/ampache/ampache-php74-5.0.0/tests/Module/Application/Admin/User/
H A DEnableActionTest.php33 use Ampache\Module\User\UserStateTogglerInterface; alias
49 /** @var UserStateTogglerInterface|MockInterface|null */
59 $this->userStateToggler = $this->mock(UserStateTogglerInterface::class);
H A DDisableActionTest.php32 use Ampache\Module\User\UserStateTogglerInterface; alias
45 /** @var MockInterface|UserStateTogglerInterface|null */
54 $this->userStateToggler = $this->mock(UserStateTogglerInterface::class);
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/User/
H A DUserStateTogglerInterface.php27 interface UserStateTogglerInterface interface
H A Dservice_definition.php32 UserStateTogglerInterface::class => autowire(UserStateToggler::class),
H A DUserStateToggler.php36 final class UserStateToggler implements UserStateTogglerInterface