Use standard boolean operator

pull/14267/head
Matthew Exon 2024-07-03 08:03:33 +02:00
rodzic c7937300db
commit f32592e148
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -230,7 +230,7 @@ class CurlResult implements ICanHandleHttpResponses
$this->redirectUrl = (string)Uri::fromParts((array)$redirect_parts);
$this->isRedirectUrl = true;
$this->redirectIsPermanent = $this->returnCode == 301 or $this->returnCode == 308;
$this->redirectIsPermanent = $this->returnCode == 301 || $this->returnCode == 308;
} else {
$this->isRedirectUrl = false;
$this->redirectIsPermanent = false;