8000 - · symfony/symfony@1a6e99b · GitHub
[go: up one dir, main page]

Skip to content

Commit 1a6e99b

Browse files
committed
-
1 parent 02c1105 commit 1a6e99b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/Mailer/Transport/Dsn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,6 @@ public function getOption(string $key, mixed $default = null): mixed
8282

8383
public function getBooleanOption(string $key, bool $default = false): bool
8484
{
85-
return filter_var($this->getOption($key, $default), FILTER_VALIDATE_BOOLEAN);
85+
return filter_var($this->getOption($key, $default), \FILTER_VALIDATE_BOOLEAN);
8686
}
8787
}

src/Symfony/Component/Notifier/Transport/Dsn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function getRequiredOption(string $key): mixed
9595

9696
public function getBooleanOption(string $key, bool $default = false): bool
9797
{
98-
return filter_var($this->getOption($key, $default), FILTER_VALIDATE_BOOLEAN);
98+
return filter_var($this->getOption($key, $default), \FILTER_VALIDATE_BOOLEAN);
9999
}
100100

101101
public function getOptions(): array

0 commit comments

Comments
 (0)
0