Files
bendtstudio0-static/pancake/system/vendor/league/event/src/GeneratorInterface.php
2025-11-26 13:22:58 -05:00

14 lines
194 B
PHP
Executable File

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