1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- declare(strict_types=1);
- namespace OCP\Authentication\TwoFactorAuth;
- interface IProvidesIcons extends IProvider {
-
- public function getLightIcon(): String;
-
- public function getDarkIcon(): String;
- }
|