fixed a typo in a variable. Why did neither PhpStorm nor PHP raise an issue with that?

Signed-off-by: tracer <tracer@24unix.net>
This commit is contained in:
tracer 2022-02-06 19:36:20 +01:00
parent a57ad539b0
commit 480033d0d5
1 changed files with 1 additions and 1 deletions

View File

@ -1136,7 +1136,7 @@ class BindAPI
echo 'At least one IP address is required.' . PHP_EOL;
exit(0);
}
$apikey = $argiments['apikey'] ?? '';
$apikey = $arguments['apikey'] ?? '';
try {
if ($this->nameserverRepository->findByName(name: $name)) {