1
0
mirror of https://github.com/elyby/accounts.git synced 2025-01-20 10:32:49 +05:30

19 lines
343 B
PHP

<?php
namespace common\components\Sentry;
use Yii;
class Component extends \mito\sentry\Component {
public $jsNotifier = false;
public function init() {
if (is_array($this->client) && !isset($this->client['release'])) {
$this->client['release'] = Yii::$app->version;
}
parent::init();
}
}