The interface Bdf\QueueBundle\Consumpt...actoryProviderInterface has been deprecated: Since 1.3. Use Bdf\QueueBundle\Consumption\ReceiverFactoryInterface
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
9
class LegacyReceiverFactory implements /** @scrutinizer ignore-deprecated */ ReceiverFactoryProviderInterface
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be
removed and what other interface to use instead.
Loading history...
10
{
11
public function getReceiverNames(): array
12
{
13
return ['legacy'];
14
}
15
16
public function create(ReceiverFactory $factory, ReceiverInterface $receiver, ...$arguments): ReceiverInterface
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.