SuiteCRM 8 initial commit

This commit is contained in:
Dillon-Brown 2021-03-30 19:12:01 +01:00
commit c895877b7e
547 changed files with 40449 additions and 0 deletions

View file

@ -0,0 +1,38 @@
<?php
namespace SuiteCRM\Core\Legacy;
use SuiteCRM\Core\Base\Module\Service\ServiceFactoryInterface;
use SuiteCRM\Core\Legacy\Authentication;
/**
* Class AuthenticationService
* @package SuiteCRM\Core\Legacy
*/
class AuthenticationService implements ServiceFactoryInterface
{
/**
* @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();
}
}