Skip to content

Commit a8895b6

Browse files
committed
used native PHP 8 functions
1 parent ada4416 commit a8895b6

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/Bridges/HttpDI/HttpExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private function sendHeaders()
111111
continue;
112112
}
113113
$value = self::buildPolicy($config->$key);
114-
if (strpos($value, "'nonce'")) {
114+
if (str_contains($value, "'nonce'")) {
115115
$this->initialization->addBody('$cspNonce = base64_encode(random_bytes(16));');
116116
$value = Nette\DI\ContainerBuilder::literal(
117117
'str_replace(?, ? . $cspNonce, ?)',

src/Http/Context.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function isModified(string|int|\DateTimeInterface $lastModified = null, s
5050
} elseif ($ifNoneMatch !== null) {
5151
$etag = $this->response->getHeader('ETag');
5252

53-
if ($etag === null || strpos(' ' . strtr($ifNoneMatch, ",\t", ' '), ' ' . $etag) === false) {
53+
if ($etag === null || !str_contains(' ' . strtr($ifNoneMatch, ",\t", ' '), ' ' . $etag)) {
5454
return true;
5555

5656
} else {

src/Http/RequestFactory.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,9 @@ private function useForwardedProxy(Url $url, &$remoteAddr, &$remoteHost): void
286286

287287
if (isset($proxyParams['for'])) {
288288
$address = $proxyParams['for'][0];
289-
$remoteAddr = strpos($address, '[') === false
290-
? explode(':', $address)[0] // IPv4
291-
: substr($address, 1, strpos($address, ']') - 1); // IPv6
289+
$remoteAddr = str_contains($address, '[')
290+
? substr($address, 1, strpos($address, ']') - 1) // IPv6
291+
: explode(':', $address)[0]; // IPv4
292292
}
293293

294294
if (isset($proxyParams['host']) && count($proxyParams['host']) === 1) {

src/Http/Response.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ public function __destruct()
225225
{
226226
if (
227227
self::$fixIE
228-
&& strpos($_SERVER['HTTP_USER_AGENT'] ?? '', 'MSIE ') !== false
228+
&& str_contains($_SERVER['HTTP_USER_AGENT'] ?? '', 'MSIE ')
229229
&& in_array($this->code, [400, 403, 404, 405, 406, 408, 409, 410, 500, 501, 505], true)
230230
&& preg_match('#^text/html(?:;|$)#', (string) $this->getHeader('Content-Type'))
231231
) {

src/Http/Url.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public function getPort(): ?int
178178
public function setPath(string $path): static
179179
{
180180
$this->path = $path;
181-
if ($this->host && substr($this->path, 0, 1) !== '/') {
181+
if ($this->host && !str_starts_with($this->path, '/')) {
182182
$this->path = '/' . $this->path;
183183
}
184184
return $this;
@@ -363,7 +363,7 @@ final public function export(): array
363363
*/
364364
private static function idnHostToUnicode(string $host): string
365365
{
366-
if (strpos($host, '--') === false) { // host does not contain IDN
366+
if (!str_contains($host, '--')) { // host does not contain IDN
367367
return $host;
368368
}
369369
if (function_exists('idn_to_utf8') && defined('INTL_IDNA_VARIANT_UTS46')) {

src/Http/UrlImmutable.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ final public function export(): array
290290

291291
protected function build(): void
292292
{
293-
if ($this->host && substr($this->path, 0, 1) !== '/') {
293+
if ($this->host && !str_starts_with($this->path, '/')) {
294294
$this->path = '/' . $this->path;
295295
}
296296

0 commit comments

Comments
 (0)