2016-12-08 02:21:01 +05:30
|
|
|
<?php
|
2019-12-29 20:25:21 +05:30
|
|
|
declare(strict_types=1);
|
2016-12-08 02:21:01 +05:30
|
|
|
|
2019-12-29 20:25:21 +05:30
|
|
|
namespace common\components;
|
2016-12-08 02:21:01 +05:30
|
|
|
|
2019-12-29 20:25:21 +05:30
|
|
|
use mito\sentry\Component;
|
|
|
|
use Yii;
|
2016-12-08 02:21:01 +05:30
|
|
|
|
2019-12-29 20:25:21 +05:30
|
|
|
class Sentry extends Component {
|
2016-12-08 02:21:01 +05:30
|
|
|
|
|
|
|
public function init() {
|
2017-04-15 14:20:38 +05:30
|
|
|
if (!$this->enabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-08 02:21:01 +05:30
|
|
|
if (is_array($this->client) && !isset($this->client['release'])) {
|
|
|
|
$this->client['release'] = Yii::$app->version;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent::init();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|