Fix class namespaces pointing to non-existing Core\Module

This commit is contained in:
Dillon-Brown 2019-12-24 16:47:16 +00:00
parent f27aee78e5
commit e212c81a3a
2 changed files with 3 additions and 4 deletions

View file

@ -2,7 +2,7 @@
namespace SuiteCRM\Core\Modules\Administration;
use SuiteCRM\Core\Module\ModuleInterface;
use SuiteCRM\Core\Base\Module\ModuleInterface;
/**
* Class Administration

View file

@ -2,8 +2,7 @@
namespace SuiteCRM\Core\Modules\Users\Service;
use SuiteCRM\Core\Module\Service\ServiceFactoryInterface;
use SuiteCRM\Core\Base\Module\Service\ServiceFactoryInterface;
use SuiteCRM\Core\Modules\Users\Helper\Authentication;
class AuthenticationService implements ServiceFactoryInterface
@ -31,4 +30,4 @@ class AuthenticationService implements ServiceFactoryInterface
{
return new Authentication();
}
}
}