forked from wallabag/wallabag
Migrate to constructor promoted properties
This commit is contained in:
@ -15,11 +15,9 @@ use Simpleue\Queue\RedisQueue;
|
||||
*/
|
||||
class Producer implements ProducerInterface
|
||||
{
|
||||
private $queue;
|
||||
|
||||
public function __construct(RedisQueue $queue)
|
||||
{
|
||||
$this->queue = $queue;
|
||||
public function __construct(
|
||||
private RedisQueue $queue,
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user