jalismrs / symfony.bundle.event.loop
Adds loop events with their listener
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 422
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 loop events with their 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\JalismrsLoopEventBundle\Event\LoopAdvanceEvent; use Jalismrs\Symfony\Bundle\JalismrsLoopEventBundle\Event\LoopFinishEvent; use Jalismrs\Symfony\Bundle\JalismrsLoopEventBundle\Event\LoopStartEvent; use Symfony\Component\EventDispatcher\EventDispatcher; class SomeClass { private EventDispatcher $eventDispatcher; public function someFunction( array $datas ): void { $count = count($datas); if ($count > 0) { $loopStartEvent = new LoopStartEvent( $count ); $this->eventDispatcher->dispatch($loopStartEvent); foreach ($datas as $data) { // do something $loopAdvanceEvent = new LoopAdvanceEvent(); $this->eventDispatcher->dispatch($loopAdvanceEvent); } $loopFinishEvent = new LoopFinishEvent(); $this->eventDispatcher->dispatch($loopFinishEvent); } } }