Skip to content

Commit 8b1780b

Browse files
committed
[Security] Fix deprecation layer
Signed-off-by: Alexander M. Turek <[email protected]>
1 parent 7b37c75 commit 8b1780b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firewall/ChannelListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function __construct(AccessMapInterface $map, /*LoggerInterface*/ $logger
4343
$nrOfArgs = \func_num_args();
4444
$logger = $nrOfArgs > 2 ? func_get_arg(2) : null;
4545
$httpPort = $nrOfArgs > 3 ? func_get_arg(3) : 80;
46-
$httpPort = $nrOfArgs > 4 ? func_get_arg(4) : 443;
46+
$httpsPort = $nrOfArgs > 4 ? func_get_arg(4) : 443;
4747
}
4848

4949
if (null !== $logger && !$logger instanceof LoggerInterface) {

0 commit comments

Comments
 (0)