url = $url; $this->webhook = $webhook; } /** * Return class information * * @access public * @return string */ public function __toString() { return get_called_class(); } /** * Execute the action * * @access public * @param array $data Event data dictionary * @return bool True if the action was executed or false when not executed */ public function execute(array $data) { $this->webhook->notify($this->url, $data); return true; } }