-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from gimler/feature/upgrade_php_symfony
feat: only supported php & symfony versions
- Loading branch information
Showing
9 changed files
with
49 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,9 @@ | ||
<?php | ||
|
||
|
||
namespace Freshcells\SoapClientBundle\Event; | ||
|
||
use Symfony\Component\EventDispatcher\Event as ComponentEvent; | ||
use Symfony\Contracts\EventDispatcher\Event as ContractEvent; | ||
|
||
// Symfony 4.3 BC layer | ||
if (class_exists(ContractEvent::class)) { | ||
// @codingStandardsIgnoreStart | ||
abstract class Event extends ContractEvent | ||
{ | ||
// @codingStandardsIgnoreEnd | ||
} | ||
} else { | ||
// @codingStandardsIgnoreStart | ||
abstract class Event extends ComponentEvent | ||
{ | ||
// @codingStandardsIgnoreEnd | ||
} | ||
abstract class Event extends ContractEvent | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters