SuiteCRM-Core/core/legacy/AuthenticationService.php
Dillon-Brown 587a79613e Add API Platform Framework with Symfony/Flex
This implements the basic structure that will be used for the API and core application.
2021-03-30 19:21:30 +01:00

36 lines
600 B
PHP

<?php
namespace SuiteCRM\Core\Legacy;
use SuiteCRM\Core\Legacy\Authentication;
/**
* Class AuthenticationService
* @package SuiteCRM\Core\Legacy
*/
class AuthenticationService
{
/**
* @return string
*/
public function getName(): string
{
return 'users.authentication';
}
/**
* @return string
*/
public function getDescription(): string
{
return 'This service will deal with legacy authentication';
}
/**
* @return mixed
*/
public function createService()
{
return new Authentication();
}
}