Может кто-нибудь помочь мне с автопроводкой в Symfony3.4?
Я пытаюсь реализовать следующий прослушиватель, но я не знаю, чтобы внедрить голосованияManagerInterface.Вот ошибка, мой код и мой конфиг. Спасибо за вашу помощь:)
Невозможно автоматически подключить службу "AppBundle \ EventListener \ CommentVoteListener": аргумент "$ voiceManager" метода "__construct ()" ссылается на интерфейс "FOS\ CommentBundle \ Model \ VoteManagerInterface ", но такой службы не существует.Возможно, вам следует использовать псевдоним этого интерфейса для одной из этих существующих служб: "fos_comment.manager.vote.default", "fos_comment.manager.vote.acl".
<?php
namespace AppBundle\EventListener;
use FOS\CommentBundle\Event\VotePersistEvent;
use FOS\CommentBundle\Events;
use FOS\CommentBundle\Model\VoteManagerInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* Description of CommentVoteListener
*
*/
class CommentVoteListener implements EventSubscriberInterface {
private $voteManager;
private $token_storage;
public function __construct(VoteManagerInterface $voteManager, TokenStorageInterface $token_storage) {
$this->voteManager = $voteManager;
$this->token_storage = $token_storage;
}
/**
* Assumptions:
* 1) User is logged in (caught by FOSCB acl)
* 2) VoteBlamerListener has already run which assigned the voter (this event has priority of -1)
*
* Make sure the user has not already voted, and make sure that the user is not the author.
*
* @param VotePersistEvent $event
* @return void
*/
public function onVotePrePersist(VotePersistEvent $event) {
$vote = $event->getVote();
$user = $this->token_storage->getToken()->getUser();
// make sure user is not the author
if ($vote->getComment()->getAuthor() === $user) {
$this->stopPersistence($event);
}
// make sure user hasn't already voted
$existingVote = $this->voteManager->findVoteBy(array('comment' => $vote->getComment(), 'voter' => $user));
if (null !== $existingVote && $vote->getValue() === $existingVote->getValue()) {
$this->stopPersistence($event);
}
}
protected function stopPersistence(VotePersistEvent $event) {
$event->abortPersistence();
$event->stopPropagation();
}
public static function getSubscribedEvents() {
return array(
Events::VOTE_PRE_PERSIST => array('onVotePrePersist', -1),
);
}
}
}
app.listener.vote:
class: AppBundle\EventListener\CommentVoteListener
arguments:
- "@fos_comment.manager.vote.acl"
- "@security.token_storage"
tags:
- { name: kernel.event_listener, event: fos_comment.vote.pre_persist, method: onVotePrePersist }
или
app.listener.vote:
class: AppBundle\EventListener\CommentVoteListener
arguments: ["@fos_comment.manager.vote.acl", "@security.token_storage"]
tags:
- { name: kernel.event_listener, event: fos_comment.vote.pre_persist, method: onVotePrePersist }