Browse Source

remove unused variable

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
tags/v12.0.0beta1
Bjoern Schiessle 7 years ago
parent
commit
f32304ffb9
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      settings/BackgroundJobs/VerifyUserData.php

+ 1
- 1
settings/BackgroundJobs/VerifyUserData.php View File

@@ -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…
Cancel
Save