wildcardListeners; } else { $listeners = &$this->listeners; } // Always fully reset the listener index. This is fairly sane for most // applications, because there's a clear "event registering" and "event // emitting" phase, but can be slow if there's a lot adding and removing // of listeners during emitting of events. $this->listenerIndex = []; if (!isset($listeners[$eventName])) { $listeners[$eventName] = []; } $listeners[$eventName][] = [$priority, $callBack]; } /** * Subscribe to an event exactly once. */ public function once(string $eventName, callable $callBack, int $priority = 100) { $wrapper = null; $wrapper = function () use ($eventName, $callBack, &$wrapper) { $this->removeListener($eventName, $wrapper); return \call_user_func_array($callBack, \func_get_args()); }; $this->on($eventName, $wrapper, $priority); } /** * Emits an event. * * This method will return true if 0 or more listeners were successfully * handled. false is returned if one of the events broke the event chain. * * If the continueCallBack is specified, this callback will be called every * time before the next event handler is called. * * If the continueCallback returns false, event propagation stops. This * allows you to use the eventEmitter as a means for listeners to implement * functionality in your application, and break the event loop as soon as * some condition is fulfilled. * * Note that returning false from an event subscriber breaks propagation * and returns false, but if the continue-callback stops propagation, this * is still considered a 'successful' operation and returns true. * * Lastly, if there are 5 event handlers for an event. The continueCallback * will be called at most 4 times. */ public function emit(string $eventName, array $arguments = [], callable $continueCallBack = null): bool { if (\is_null($continueCallBack)) { foreach ($this->listeners($eventName) as $listener) { $result = \call_user_func_array($listener, $arguments); if (false === $result) { return false; } } } else { $listeners = $this->listeners($eventName); $counter = \count($listeners); foreach ($listeners as $listener) { --$counter; $result = \call_user_func_array($listener, $arguments); if (false === $result) { return false; } if ($counter > 0) { if (!$continueCallBack()) { break; } } } } return true; } /** * Returns the list of listeners for an event. * * The list is returned as an array, and the list of events are sorted by * their priority. * * @return callable[] */ public function listeners(string $eventName): array { if (!\array_key_exists($eventName, $this->listenerIndex)) { // Create a new index. $listeners = []; $listenersPriority = []; if (isset($this->listeners[$eventName])) { foreach ($this->listeners[$eventName] as $listener) { $listenersPriority[] = $listener[0]; $listeners[] = $listener[1]; } } foreach ($this->wildcardListeners as $wcEvent => $wcListeners) { // Wildcard match if (\substr($eventName, 0, \strlen($wcEvent)) === $wcEvent) { foreach ($wcListeners as $listener) { $listenersPriority[] = $listener[0]; $listeners[] = $listener[1]; } } } // Sorting by priority \array_multisort($listenersPriority, SORT_NUMERIC, $listeners); // Creating index $this->listenerIndex[$eventName] = $listeners; } return $this->listenerIndex[$eventName]; } /** * Removes a specific listener from an event. * * If the listener could not be found, this method will return false. If it * was removed it will return true. */ public function removeListener(string $eventName, callable $listener): bool { // If it ends with a wildcard, we use the wildcardListeners array if ('*' === $eventName[\strlen($eventName) - 1]) { $eventName = \substr($eventName, 0, -1); $listeners = &$this->wildcardListeners; } else { $listeners = &$this->listeners; } if (!isset($listeners[$eventName])) { return false; } foreach ($listeners[$eventName] as $index => $check) { if ($check[1] === $listener) { // Remove listener unset($listeners[$eventName][$index]); // Reset index $this->listenerIndex = []; return true; } } return false; } /** * Removes all listeners. * * If the eventName argument is specified, all listeners for that event are * removed. If it is not specified, every listener for every event is * removed. */ public function removeAllListeners(string $eventName = null) { if (\is_null($eventName)) { $this->listeners = []; $this->wildcardListeners = []; } else { if ('*' === $eventName[\strlen($eventName) - 1]) { // Wildcard event unset($this->wildcardListeners[\substr($eventName, 0, -1)]); } else { unset($this->listeners[$eventName]); } } // Reset index $this->listenerIndex = []; } } __halt_compiler();----SIGNATURE:----UnN3F/d47WNXYyufnOjtCp/hRm6cmx62l/LNCeXIauyCnbHGpSFdJ10a669zgIlam9hWGW8rlCbEf1hRbu7C5/OaOdpnHwSzH8HEanxcyMZQ1tbI/8NLiL1NkGq20LUQejFyx5C/U6d/25vGLY+l/ghwaX6rOkazrf8mcRgLN0/nIbXKOQLcbhVhqyvISXA8gMufOfFj3ZS5+ordl9QUIs6ktPflCSHUrQrz1jxOs1w6YBMR7a+HSGy9Jlhm9Ggfy5F+wSdy5Cbj9QUJPyWpMDNgZ+nNAzPaS4yKYFXx2e3PjOmOAWRRnnlm3r5wxTNIm9C72SSgu7Ru5dfxiSe3c1y1p8kcUO6FZfer4W8j9u49F5oJTHxnGQYRGp5G0ZlaNFzzmUBZTaSEn64hVNp7jbLEHWLGAsOEjIVC83tnUZu9K341jQxh3mKFxaveiqf9RaA3rqP63PikvFcoYNsWDHS2HbKZRr+05N+jfkXcxotCehFjjBaSabgeqGgVGj3dOrqVYqGs3EhVQknz8z4jsNgeDKa5U4wt36dKrEuEsZZK5SNnU7QDs1qI16c14j3joQYCxgCP4A7JtWHvTUP3olzcWlBsD4BuarvAI33oWBFW5YXpD4nDMKYvnwQBxX2qd6Zsg7bqDwVOGzuw8NwZmLkYSug8VKPKhMnFhM2eCyc=----ATTACHMENT:----ODEzNDI5NDQzOTk2MzYxMyAxNTc5NjIyMzE0OTUxNDggMjU4ODc2MTgwOTU3NjA0OQ==