remove unused variable
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
parent
5c202884e9
commit
f32304ffb9
|
@ -149,7 +149,7 @@ class VerifyUserData extends Job {
|
|||
$result = true;
|
||||
$publishedCode = $response->getBody();
|
||||
// remove new lines and spaces
|
||||
$publishedCodeSanitized = $string = trim(preg_replace('/\s\s+/', ' ', $publishedCode));
|
||||
$publishedCodeSanitized = trim(preg_replace('/\s\s+/', ' ', $publishedCode));
|
||||
$user = $this->userManager->get($argument['uid']);
|
||||
// we don't check a valid user -> give up
|
||||
if ($user === null) {
|
||||
|
|
Loading…
Reference in New Issue