-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntegrationsOptions.php
More file actions
80 lines (70 loc) · 2.72 KB
/
Copy pathIntegrationsOptions.php
File metadata and controls
80 lines (70 loc) · 2.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
namespace Leads\Sentry\Entities;
use Sentry\Integration\ErrorListenerIntegration;
use Sentry\Integration\ExceptionListenerIntegration;
use Sentry\Integration\FatalErrorListenerIntegration;
use Sentry\Integration\ModulesIntegration;
/**
* Включение/отключение интеграций клиента Sentry
*
* @link https://docs.sentry.io/platforms/php/integrations/
*/
class IntegrationsOptions
{
//**********************************************************************
// Интеграции автоматической обработки ошибок и неперехваченных исключений:
// - ExceptionListenerIntegration
// - ErrorListenerIntegration
// - FatalErrorListenerIntegration
//**********************************************************************
/**
* Установить вкл/выкл интеграций автоматической обработки ошибок и неперехваченных исключений
* - ErrorListenerIntegration
* - FatalErrorListenerIntegration
*
* @param bool $enable
* @return $this
*/
public function setAutoHandler(bool $enable): self
{
$this->autoHandler = $enable;
return $this;
}
/**
* Получить статус вкл/выкл интеграций автоматической обработки ошибок и неперехваченных исключений
*
* @return bool
*/
public function getAutoHandler(): bool
{
return $this->autoHandler;
}
//**********************************************************************
// Интеграция сбора инфомрации об используемых пакетах ModulesIntegration
//**********************************************************************
/**
* Установить вкл/выкл интеграции сбора информации об используемых пакетах
*
* @param bool $enable
* @return $this
*/
public function setPackageCollector(bool $enable): self
{
$this->packageCollector = $enable;
return $this;
}
/**
* Получить статус вкл/выкл интеграции сбора информации об используемых пакетах
*
* @return bool
*/
public function getPackageCollector(): bool
{
return $this->packageCollector;
}
//######################################################################
// PRIVATE
//######################################################################
private $autoHandler = true;
private $packageCollector = true;
}