File ManagerCurrent Directory: wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/CommonLinux appserver-0d5e4f1e-php-cc8da225320a42ba9b7d66cba40b1f03 6.6.123+ #1 SMP PREEMPT_DYNAMIC Wed Mar 11 09:04:28 UTC 2026 x86_64Edit File: Event.php <?php namespace Guzzle\Common; use Symfony\Component\EventDispatcher\Event as SymfonyEvent; /** * Default event for Guzzle notifications */ class Event extends SymfonyEvent implements ToArrayInterface, \ArrayAccess, \IteratorAggregate { /** @var array */ private $context; /** * @param array $context Contextual information */ public function __construct(array $context = array()) { $this->context = $context; } public function getIterator() { return new \ArrayIterator($this->context); } public function offsetGet($offset) { return isset($this->context[$offset]) ? $this->context[$offset] : null; } public function offsetSet($offset, $value) { $this->context[$offset] = $value; } public function offsetExists($offset) { return isset($this->context[$offset]); } public function offsetUnset($offset) { unset($this->context[$offset]); } public function toArray() { return $this->context; } } Upload File Directory Listing NameTypeSizeActions.. (Parent Directory)DirAbstractHasDispatcher.phpFile1.17 KB Rename | Delete | EditCollection.phpFile11.26 KB Rename | Delete | EditEvent.phpFile1.04 KB Rename | Delete | EditExceptionDirectory Rename | DeleteFromConfigInterface.phpFile487.00 B Rename | Delete | EditHasDispatcherInterface.phpFile1.33 KB Rename | Delete | EditToArrayInterface.phpFile245.00 B Rename | Delete | EditVersion.phpFile641.00 B Rename | Delete | Edit