|
5 | 5 | use Sentry\State\HubInterface;
|
6 | 6 |
|
7 | 7 | /**
|
8 |
| - * @method static bool addBreadcrumb(\Sentry\Breadcrumb $breadcrumb) |
9 |
| - * @method static string|null captureMessage(string $message, \Sentry\Severity $level = null, \Sentry\State\Scope $scope = null) |
10 |
| - * @method static string|null captureException(\Throwable $exception) |
11 |
| - * @method static string|null captureEvent(\Throwable $exception) |
12 |
| - * @method static string|null captureLastError() |
| 8 | + * @see \Sentry\State\HubInterface |
| 9 | + * |
| 10 | + * @method static \Sentry\ClientInterface|null getClient() |
| 11 | + * @method static \Sentry\EventId|null getLastEventId() |
13 | 12 | * @method static \Sentry\State\Scope pushScope()
|
14 | 13 | * @method static bool popScope()
|
15 |
| - * @method static void configureScope(callable $callback) |
16 | 14 | * @method static void withScope(callable $callback)
|
17 |
| - * @method static \Sentry\Integration\IntegrationInterface|null getIntegration(string $className) |
18 |
| - * @method static \Sentry\ClientInterface|null getClient() |
| 15 | + * @method static void configureScope(callable $callback) |
19 | 16 | * @method static void bindClient(\Sentry\ClientInterface $client)
|
20 |
| - * @method static string|null getLastEventId() |
| 17 | + * @method static \Sentry\EventId|null captureMessage(string $message, \Sentry\Severity|null $level = null, \Sentry\EventHint|null $hint = null) |
| 18 | + * @method static \Sentry\EventId|null captureException(\Throwable $exception, \Sentry\EventHint|null $hint = null) |
| 19 | + * @method static \Sentry\EventId|null captureEvent(\Throwable $exception, \Sentry\EventHint|null $hint = null) |
| 20 | + * @method static \Sentry\EventId|null captureLastError(\Sentry\EventHint|null $hint = null) |
| 21 | + * @method static bool addBreadcrumb(\Sentry\Breadcrumb $breadcrumb) |
| 22 | + * @method static \Sentry\Integration\IntegrationInterface|null getIntegration(string $className) |
| 23 | + * @method static \Sentry\Tracing\Transaction startTransaction(\Sentry\Tracing\TransactionContext $context, array $customSamplingContext = []) |
| 24 | + * @method static \Sentry\Tracing\Transaction|null getTransaction() |
| 25 | + * @method static \Sentry\Tracing\Span|null getSpan() |
| 26 | + * @method static \Sentry\State\HubInterface setSpan(\Sentry\Tracing\Span|null $span) |
21 | 27 | */
|
22 | 28 | class Facade extends \Illuminate\Support\Facades\Facade
|
23 | 29 | {
|
|
0 commit comments