webauthn/src/Modules/Application/Controller/d3_webauthn_UserController.php

26 regels
677 B
PHP

2022-10-24 22:24:40 +02:00
<?php
/**
2022-11-04 22:45:47 +01:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
2022-10-24 22:24:40 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-11-04 22:45:47 +01:00
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
2022-10-24 22:24:40 +02:00
*/
2022-11-04 22:02:44 +01:00
declare(strict_types=1);
2022-10-24 22:24:40 +02:00
namespace D3\Webauthn\Modules\Application\Controller;
2022-11-02 12:03:38 +01:00
use D3\Webauthn\Application\Controller\Traits\checkoutGetUserTrait;
2022-10-24 22:24:40 +02:00
class d3_webauthn_UserController extends d3_webauthn_UserController_parent
{
2022-11-02 12:03:38 +01:00
use checkoutGetUserTrait;
private $parentClass = d3_webauthn_UserController_parent::class;
2022-12-13 22:24:33 +01:00
}