WebAuthnRegisterController.php 836 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Http\Controllers\Auth;
  3. use App\Http\Controllers\Controller;
  4. use DarkGhostHunter\Larapass\Http\RegistersWebAuthn;
  5. class WebAuthnRegisterController extends Controller
  6. {
  7. use RegistersWebAuthn;
  8. /*
  9. |--------------------------------------------------------------------------
  10. | WebAuthn Registration Controller
  11. |--------------------------------------------------------------------------
  12. |
  13. | This controller receives an user request to register a device and also
  14. | verifies the registration. If everything goes ok, the credential is
  15. | persisted into the application, otherwise it will signal failure.
  16. |
  17. */
  18. /**
  19. * Create a new controller instance.
  20. *
  21. * @return void
  22. */
  23. public function __construct()
  24. {
  25. // $this->middleware('auth');
  26. }
  27. }