mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
28 lines
521 B
PHP
28 lines
521 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\models;
|
|
|
|
use yii\db\ActiveQueryInterface;
|
|
use yii\db\ActiveRecord;
|
|
|
|
/**
|
|
* Fields:
|
|
* @property int $webhook_id
|
|
* @property string $event_type
|
|
*
|
|
* Relations:
|
|
* @property WebHook $webhook
|
|
*/
|
|
class WebHookEvent extends ActiveRecord {
|
|
|
|
public static function tableName(): string {
|
|
return '{{%webhooks_events}}';
|
|
}
|
|
|
|
public function getWebhook(): ActiveQueryInterface {
|
|
return $this->hasOne(WebHook::class, ['id' => 'webhook_id']);
|
|
}
|
|
|
|
}
|