url = $url; $this->webhook = $webhook; } /** * 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; } }