From 5aeddcd5e3dac87f2c61be5da6d036198f5e6bd5 Mon Sep 17 00:00:00 2001 From: Art4 Date: Mon, 10 Feb 2025 07:11:24 +0000 Subject: [PATCH] Fix version in deprecation message --- bin/daemon.php | 2 +- bin/jetstream.php | 2 +- bin/worker.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/daemon.php b/bin/daemon.php index 162a92948f..3fa1b60a68 100755 --- a/bin/daemon.php +++ b/bin/daemon.php @@ -24,7 +24,7 @@ chdir(dirname(__DIR__)); require dirname(__DIR__) . '/vendor/autoload.php'; -fwrite(STDOUT, '`bin/daemon.php` is deprecated since 2024.02 and will be removed in 5 months, please use `bin/console.php daemon` instead.' . \PHP_EOL); +fwrite(STDOUT, '`bin/daemon.php` is deprecated since 2025.02 and will be removed in 5 months, please use `bin/console.php daemon` instead.' . \PHP_EOL); // BC: Add console command as second argument $argv = $_SERVER['argv'] ?? []; diff --git a/bin/jetstream.php b/bin/jetstream.php index c97557dbb0..b5ed177a59 100755 --- a/bin/jetstream.php +++ b/bin/jetstream.php @@ -19,7 +19,7 @@ chdir(dirname(__DIR__)); require dirname(__DIR__) . '/vendor/autoload.php'; -fwrite(STDOUT, '`bin/jetstream.php` is deprecated since 2024.02 and will be removed in 5 months, please use `bin/console.php jetstream` instead.' . \PHP_EOL); +fwrite(STDOUT, '`bin/jetstream.php` is deprecated since 2025.02 and will be removed in 5 months, please use `bin/console.php jetstream` instead.' . \PHP_EOL); // BC: Add console command as second argument $argv = $_SERVER['argv'] ?? []; diff --git a/bin/worker.php b/bin/worker.php index f319bd766f..cd3d035599 100755 --- a/bin/worker.php +++ b/bin/worker.php @@ -21,7 +21,7 @@ chdir(dirname(__DIR__)); require dirname(__DIR__) . '/vendor/autoload.php'; -fwrite(STDOUT, '`bin/worker.php` is deprecated since 2024.02 and will be removed in 5 months, please use `bin/console.php worker` instead.' . \PHP_EOL); +fwrite(STDOUT, '`bin/worker.php` is deprecated since 2025.02 and will be removed in 5 months, please use `bin/console.php worker` instead.' . \PHP_EOL); // BC: Add console command as second argument $argv = $_SERVER['argv'] ?? [];