Update Nickname lexer

This commit is contained in:
Daniel Supernault 2020-07-26 22:09:11 -06:00
parent c1e41e5936
commit ce498e9b67
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 0 additions and 2 deletions

View File

@ -18,8 +18,6 @@ class Nickname
$username = $parts[0];
$domain = $parts[1];
if(parse_url(filter_var('https://test.dev', FILTER_VALIDATE_URL), PHP_URL_HOST))
return ['domain' => $domain, 'username' => $username];
}
}