Code Duplication    Length = 9-9 lines in 2 locations

src/Surfnet/StepupSelfService/SelfServiceBundle/Service/RemoteVettingService.php 2 locations

@@ 93-101 (lines=9) @@
90
    /**
91
     * @param ProcessId $processId
92
     */
93
    public function startValidation(ProcessId $processId)
94
    {
95
        $this->logger->notice('Starting a remote vetting authentication', [
96
            'second-factor' => $this->remoteVettingContext->getTokenId(),
97
            'process' => $processId->getProcessId(),
98
        ]);
99
100
        $this->remoteVettingContext->validating($processId);
101
    }
102
103
    /**
104
     * @param ProcessId $processId
@@ 107-115 (lines=9) @@
104
     * @param ProcessId $processId
105
     * @param AttributeListDto $externalAttributes
106
     */
107
    public function finishValidation(ProcessId $processId, AttributeListDto $externalAttributes)
108
    {
109
        $this->logger->notice('Finishing a remote vetting authentication', [
110
            'second-factor' => $this->remoteVettingContext->getTokenId(),
111
            'process' => $processId->getProcessId(),
112
        ]);
113
114
        $this->remoteVettingContext->validated($processId, $externalAttributes);
115
    }
116
117
    /**
118
     * @param ProcessId $processId