We removed the explicit MethodNameInflector
dependency on Projector
and Processor
instances, instead this will be injected when the class is being resolved from the IoC container
class BookProjector extends Projector
{
- public function __construct(MethodNameInflector $inflector, ReadRepository $readRepository)
+ public function __construct(ReadRepository $readRepository)
{
- parent::__construct($inflector);
$this->readRepository = $readRepository;
}
}