Skip to content

Commit

Permalink
Add a deprecation when a Node uses echo/print
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jan 25, 2024
1 parent 42e4bc7 commit d131e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Fixture/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected function configureContainer(ContainerBuilder $c, LoaderInterface $load
'router' => ['utf8' => true],
'http_method_override' => false,
];
if (Kernel::MAJOR_VERSION >= 6 && Kernel::MINOR_VERSION >= 2) {
if (6 === Kernel::MAJOR_VERSION) {
$config['handle_all_throwables'] = true;
$config['php_errors']['log'] = true;
}
Expand Down

0 comments on commit d131e6d

Please sign in to comment.