From 8409722cac2f8b3118db44bb9c55f4f90b694f53 Mon Sep 17 00:00:00 2001 From: Patrick Dawkins Date: Mon, 21 Aug 2023 08:44:55 -0400 Subject: [PATCH] Fix a PHP < 7.3 incompatibility in mount:size command --- src/Command/Mount/MountSizeCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/Mount/MountSizeCommand.php b/src/Command/Mount/MountSizeCommand.php index 5a3ab74cc..526d20ffa 100644 --- a/src/Command/Mount/MountSizeCommand.php +++ b/src/Command/Mount/MountSizeCommand.php @@ -157,7 +157,7 @@ protected function execute(InputInterface $input, OutputInterface $output) } $this->stdErr->writeln(''); $this->stdErr->writeln( - 'To increase the available space, edit the disk key in the application configuration.', + 'To increase the available space, edit the disk key in the application configuration.' ); }