Skip to content

Commit

Permalink
Merge pull request #11 from hyperunknown/event_dispatcher_interface
Browse files Browse the repository at this point in the history
EventDispatcherInterface - Fix for Symfony 2.4
  • Loading branch information
JDare committed Nov 23, 2013
2 parents 3a3ac48 + 578dd1a commit 3661c45
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 3661c45

Please sign in to comment.