2020-04-09 12:48:04 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-09 12:48:04 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
use App\Models\Webhook;
|
2020-04-09 12:48:04 +02:00
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
class WebhookFactory
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
2020-07-06 13:22:36 +02:00
|
|
|
public static function create(int $company_id, int $user_id) :Webhook
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
2020-07-06 13:22:36 +02:00
|
|
|
$webhook = new Webhook;
|
|
|
|
$webhook->company_id = $company_id;
|
|
|
|
$webhook->user_id = $user_id;
|
|
|
|
$webhook->target_url = '';
|
|
|
|
$webhook->event_id = 1;
|
|
|
|
$webhook->format = 'JSON';
|
2020-04-09 12:48:04 +02:00
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
return $webhook;
|
2020-04-09 12:48:04 +02:00
|
|
|
}
|
|
|
|
}
|