jalismrs / symfony.bundle.event.exception
Adds an exception event with its listener
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 421
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.4 || ^8.0
- jalismrs/symfony.common.event: ^1.0.0
- symfony/config: ^5.0
- symfony/dependency-injection: ^5.0
- symfony/event-dispatcher-contracts: ^2.2.0
- symfony/http-kernel: ^5.0
Requires (Dev)
- composer/package-versions-deprecated: *
- phpunit/phpunit: 9.4.2
- roave/security-advisories: dev-master
README
Adds an exception event with its listener
Test
phpunit
or vendor/bin/phpunit
coverage reports will be available in var/coverage
Use
EventListener is assumed to be active and configured
use Jalismrs\Symfony\Bundle\JalismrsExceptionEventBundle\Event\ExceptionEvent; use Symfony\Component\EventDispatcher\EventDispatcher; class SomeClass { private EventDispatcher $eventDispatcher; public function someFunction(): void { try { // do something } catch(Exception $exception) { $exceptionEvent = new ExceptionEvent( $exception ); $this->eventDispatcher->dispatch($exceptionEvent); } } }