mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
43 lines
698 B
PHP
43 lines
698 B
PHP
<?php
|
|
|
|
namespace Kanboard\Event;
|
|
|
|
use Symfony\Component\EventDispatcher\Event as BaseEvent;
|
|
|
|
/**
|
|
* Authentication Success Event
|
|
*
|
|
* @package event
|
|
* @author Frederic Guillot
|
|
*/
|
|
class AuthSuccessEvent extends BaseEvent
|
|
{
|
|
/**
|
|
* Authentication provider name
|
|
*
|
|
* @access private
|
|
* @var string
|
|
*/
|
|
private $authType;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @access public
|
|
* @param string $authType
|
|
*/
|
|
public function __construct($authType)
|
|
{
|
|
$this->authType = $authType;
|
|
}
|
|
|
|
/**
|
|
* Get authentication type
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getAuthType()
|
|
{
|
|
return $this->authType;
|
|
}
|
|
}
|