xref: /plugin/twofactor/Manager.php (revision fca58076a31917642cc917f0d19e4f3f0a82d9e9)
1*fca58076SAndreas Gohr<?php
2*fca58076SAndreas Gohr
3*fca58076SAndreas Gohrnamespace dokuwiki\plugin\twofactor;
4*fca58076SAndreas Gohr
5*fca58076SAndreas Gohr/**
6*fca58076SAndreas Gohr * Manages the child plugins etc.
7*fca58076SAndreas Gohr */
8*fca58076SAndreas Gohrclass Manager {
9*fca58076SAndreas Gohr
10*fca58076SAndreas Gohr    /**
11*fca58076SAndreas Gohr     * @return Provider[];
12*fca58076SAndreas Gohr     */
13*fca58076SAndreas Gohr    public function getProviders() {
14*fca58076SAndreas Gohr        return [];
15*fca58076SAndreas Gohr    }
16*fca58076SAndreas Gohr
17*fca58076SAndreas Gohr}
18