Authenticator.php 208 B

1234567891011121314
  1. <?php
  2. namespace fphammerle\yii2\auth\clientcert;
  3. class Authenticator extends \yii\base\Component
  4. {
  5. /**
  6. * @return string
  7. */
  8. public static function foo()
  9. {
  10. return 'bar';
  11. }
  12. }