lockfile again
This commit is contained in:
22
vendor/league/event/src/EmitterAwareInterface.php
vendored
Normal file
22
vendor/league/event/src/EmitterAwareInterface.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace League\Event;
|
||||
|
||||
interface EmitterAwareInterface
|
||||
{
|
||||
/**
|
||||
* Set the Emitter.
|
||||
*
|
||||
* @param EmitterInterface $emitter
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setEmitter(?EmitterInterface $emitter = null);
|
||||
|
||||
/**
|
||||
* Get the Emitter.
|
||||
*
|
||||
* @return EmitterInterface
|
||||
*/
|
||||
public function getEmitter();
|
||||
}
|
||||
Reference in New Issue
Block a user