1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Factory/WebhookFactory.php

30 lines
670 B
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. 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-07-06 13:22:36 +02:00
class WebhookFactory
{
2020-07-06 13:22:36 +02:00
public static function create(int $company_id, int $user_id) :Webhook
{
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-07-06 13:22:36 +02:00
return $webhook;
}
}