Skip to content

Commit

Permalink
Fix deprecated on php 8.4
Browse files Browse the repository at this point in the history
FOS\CKEditorBundle\Command\CKEditorInstallerCommand::block(): Implicitly marking parameter $background as nullable is deprecated, the explicit nullable type must be used instead

FOS\CKEditorBundle\Command\CKEditorInstallerCommand::block(): Implicitly marking parameter $font as nullable is deprecated, the explicit nullable type must be used instead
  • Loading branch information
BaHeK1994 authored Dec 18, 2024
1 parent 9d4cd4f commit 8db9d3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/CKEditorInstallerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ private function info(string $message, OutputInterface $output): void
private function block(
string $message,
OutputInterface $output,
string $background = null,
string $font = null
?string $background = null,
?string $font = null
): void {
$options = [];

Expand Down

0 comments on commit 8db9d3b

Please sign in to comment.