service = $service; } /** * @throws PipedriveConfigurationException * @throws PipedriveEventException * @throws PipedriveMetaException * @throws PipedriveRequestQueuesException * * @return void */ public function execute(): void { $this->service->execute(self::CALL_TYPE); } /** * @return void */ public function cleanup(): void { $this->service->cleanup(); } // @codeCoverageIgnoreStart /** * @inheritDoc */ public function beforeScheduleAction(ArrayObject $data) { // TODO: Implement beforeScheduleAction() method. } /** * @inheritDoc */ public function afterScheduleAction(ArrayObject $data) { // TODO: Implement afterScheduleAction() method. } // @codeCoverageIgnoreEnd }