Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHP 8.4 compatibility: implicitly nullable parameter declarations deprecated #311

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/State/StateHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class StateHelper
* @param OutputInterface $output
* @return State
*/
public static function injectIntoCallbackObject($callback, InputInterface $input, OutputInterface $output = null)
public static function injectIntoCallbackObject($callback, InputInterface $input, ?OutputInterface $output = null)
{
return static::inject(static::recoverCallbackObject($callback), $input, $output);
}
Expand All @@ -29,7 +29,7 @@ public static function injectIntoCallbackObject($callback, InputInterface $input
* @param OutputInterface $output
* @return State
*/
public static function inject($target, InputInterface $input, OutputInterface $output = null)
public static function inject($target, InputInterface $input, ?OutputInterface $output = null)
{
// Do not allow injection unless the target can save its state
if (!$target || !($target instanceof SavableState)) {
Expand Down
Loading