Skip to content

Commit c33080a

Browse files
committed
Merge branch '5.3' into 5.4
* 5.3: Fix optional before mandatory parameters Escape all special characters for parse_mode MARKDOWN_V2
2 parents bc6d494 + 8b10083 commit c33080a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Event/ConsoleEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class ConsoleEvent extends Event
2828
private $input;
2929
private $output;
3030

31-
public function __construct(Command $command = null, InputInterface $input, OutputInterface $output)
31+
public function __construct(?Command $command, InputInterface $input, OutputInterface $output)
3232
{
3333
$this->command = $command;
3434
$this->input = $input;

0 commit comments

Comments
 (0)