Files
farmOS-dev/vendor/league/event/src/GeneratorInterface.php
2024-12-10 15:08:16 +01:00

14 lines
194 B
PHP

<?php
namespace League\Event;
interface GeneratorInterface
{
/**
* Release all the added events.
*
* @return EventInterface[]
*/
public function releaseEvents();
}