for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Christoph Wurst <[email protected]>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\TwoFactorGateway\Provider;
class Factory extends AFactory {
#[\Override]
protected function getPrefix(): string {
return 'OCA\\TwoFactorGateway\\Provider\\Channel\\';
}
protected function getSuffix(): string {
return 'Provider';
protected function getBaseClass(): string {
return AProvider::class;