mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
refactor: remove unused IAppConfig dependency from SequentialSigningService
IAppConfig was injected but never used in any method. Removed dependency to clean up constructor. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
30c4612419
commit
d5e3cae60c
1 changed files with 0 additions and 2 deletions
|
|
@ -12,14 +12,12 @@ use OCA\Libresign\Db\File as FileEntity;
|
|||
use OCA\Libresign\Db\SignRequestMapper;
|
||||
use OCA\Libresign\Enum\SignatureFlow;
|
||||
use OCA\Libresign\Enum\SignRequestStatus;
|
||||
use OCP\IAppConfig;
|
||||
|
||||
class SequentialSigningService {
|
||||
private int $currentOrder = 1;
|
||||
private ?FileEntity $file = null;
|
||||
|
||||
public function __construct(
|
||||
private IAppConfig $appConfig,
|
||||
private SignRequestMapper $signRequestMapper,
|
||||
private IdentifyMethodService $identifyMethodService,
|
||||
) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue