14 lines
194 B
PHP
Executable File
14 lines
194 B
PHP
Executable File
<?php
|
|
|
|
namespace League\Event;
|
|
|
|
interface GeneratorInterface
|
|
{
|
|
/**
|
|
* Release all the added events.
|
|
*
|
|
* @return EventInterface[]
|
|
*/
|
|
public function releaseEvents();
|
|
}
|