| 12345678910111213141516171819202122 |
- <?php
- namespace ThirdParty\Urs\Webhook;
- use App\Module\ThirdParty\Dto\Config;
- use App\Module\ThirdParty\Dto\Credential;
- use Illuminate\Http\Request;
- abstract class WebhookReceiver extends \App\Module\ThirdParty\Services\WebhookReceiver
- {
- /**
- *
- * @return \ThirdParty\Urs\Dto\Config
- */
- protected function getConfigDto(): Config
- {
- return \ThirdParty\Urs\Dto\Config::fromArray($this->getConfig());
- }
- }
|