/var/www/vhosts/ihelp.ro/httpdocs/vendor/psy/psysh/src/Readline/Hoa
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/psy/psysh/src/Readline/Hoa/EventBucket.php (2945B)
setData($data);
return;
}
/**
* Sends this object on the event channel.
*/
public function send(string $eventId, EventSource $source)
{
return Event::notify($eventId, $source, $this);
}
/**
* Sets a new source.
*/
public function setSource(EventSource $source)
{
$old = $this->_source;
$this->_source = $source;
return $old;
}
/**
* Returns the source.
*/
public function getSource()
{
return $this->_source;
}
/**
* Sets new data.
*/
public function setData($data)
{
$old = $this->_data;
$this->_data = $data;
return $old;
}
/**
* Returns the data.
*/
public function getData()
{
return $this->_data;
}
}