chore: Refactor Api interfaces naming

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2024-01-16 08:55:21 +01:00
parent 7eee87b74c
commit 37b49d60d2
47 changed files with 200 additions and 197 deletions

View File

@@ -4,7 +4,7 @@
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2022, Rubén Domínguez nuxsmin@$syspass.org
* @copyright 2012-2024, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
@@ -25,9 +25,8 @@
namespace SP\Modules\Api\Controllers\UserGroup;
use Klein\Klein;
use SP\Core\Acl\Acl;
use SP\Core\Application;
use SP\Domain\Api\Ports\ApiServiceInterface;
use SP\Domain\Api\Ports\ApiService;
use SP\Domain\Core\Acl\AclInterface;
use SP\Domain\Core\Exceptions\InvalidClassException;
use SP\Domain\User\Ports\UserGroupServiceInterface;
@@ -45,10 +44,10 @@ abstract class UserGroupBase extends ControllerBase
* @throws InvalidClassException
*/
public function __construct(
Application $application,
Klein $router,
ApiServiceInterface $apiService,
AclInterface $acl,
Application $application,
Klein $router,
ApiService $apiService,
AclInterface $acl,
UserGroupServiceInterface $groupService
) {
parent::__construct($application, $router, $apiService, $acl);