Skip to content

Commit

Permalink
Fix for Symfony 2.4
Browse files Browse the repository at this point in the history
EventDispatcher > EventDispatcherInterface
  • Loading branch information
peshi committed Nov 20, 2013
1 parent 3a3ac48 commit 578dd1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Server/App/ClankApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

use JDare\ClankBundle\Server\App\Handler\RPCHandlerInterface;
use JDare\ClankBundle\Server\App\Handler\TopicHandlerInterface;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use JDare\ClankBundle\Event\ClientEvent;
use JDare\ClankBundle\Event\ClientErrorEvent;

class ClankApp implements WampServerInterface {

protected $topicHandler, $rpcHandler, $eventDispatcher;

public function __construct(RPCHandlerInterface $rpcHandler, TopicHandlerInterface $topicHandler, EventDispatcher $eventDispatcher)
public function __construct(RPCHandlerInterface $rpcHandler, TopicHandlerInterface $topicHandler, EventDispatcherInterface $eventDispatcher)
{
$this->rpcHandler = $rpcHandler;
$this->topicHandler = $topicHandler;
Expand Down

0 comments on commit 578dd1a

Please sign in to comment.