xref: /plugin/twofactor/Provider.php (revision fca58076a31917642cc917f0d19e4f3f0a82d9e9)
1*fca58076SAndreas Gohr<?php
2*fca58076SAndreas Gohr
3*fca58076SAndreas Gohrnamespace dokuwiki\plugin\twofactor;
4*fca58076SAndreas Gohr
5*fca58076SAndreas Gohruse dokuwiki\Extension\Plugin;
6*fca58076SAndreas Gohr
7*fca58076SAndreas Gohr/**
8*fca58076SAndreas Gohr * Baseclass for all second factor providers
9*fca58076SAndreas Gohr */
10*fca58076SAndreas Gohrabstract class Provider extends Plugin
11*fca58076SAndreas Gohr{
12*fca58076SAndreas Gohr
13*fca58076SAndreas Gohr}
14