Skip to content

Commit

Permalink
Use symfony 4 event namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
bensonarts committed Feb 3, 2021
1 parent 449cc97 commit 2269099
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Phpro/SoapClient/Event/FaultEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Phpro\SoapClient\Client;
use Phpro\SoapClient\Exception\SoapException;
use Symfony\Component\EventDispatcher\Event;
use Symfony\Contracts\EventDispatcher\Event;

/**
* Class FaultEvent
Expand Down
2 changes: 1 addition & 1 deletion src/Phpro/SoapClient/Event/RequestEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Phpro\SoapClient\Client;
use Phpro\SoapClient\Type\RequestInterface;
use Symfony\Component\EventDispatcher\Event;
use Symfony\Contracts\EventDispatcher\Event;

/**
* Class RequestEvent
Expand Down
3 changes: 2 additions & 1 deletion src/Phpro/SoapClient/Event/ResponseEvent.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?php

namespace Phpro\SoapClient\Event;

use Phpro\SoapClient\Client;
use Phpro\SoapClient\Type\ResultInterface;
use Symfony\Component\EventDispatcher\Event;
use Symfony\Contracts\EventDispatcher\Event;

/**
* Class ResponseEvent
Expand Down

0 comments on commit 2269099

Please sign in to comment.