diff --git a/framework/core/src/Foundation/Console/InfoCommand.php b/framework/core/src/Foundation/Console/InfoCommand.php index a76479d0a..52a49502c 100644 --- a/framework/core/src/Foundation/Console/InfoCommand.php +++ b/framework/core/src/Foundation/Console/InfoCommand.php @@ -159,7 +159,7 @@ class InfoCommand extends AbstractCommand // Lowercase the class name $queue = strtolower($queue); // Drop everything like queue SyncQueue, RedisQueue - $queue = str_replace('queue', null, $queue); + $queue = str_replace('queue', '', $queue); return $queue; }