| Conditions | 5 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function register() |
||
| 13 | { |
||
| 14 | Telescope::night(); |
||
| 15 | |||
| 16 | $this->hideSensitiveRequestDetails(); |
||
| 17 | |||
| 18 | Telescope::filter(fn (IncomingEntry $entry) => $this->app->isLocal() |
||
| 19 | || $entry->isReportableException() |
||
| 20 | || $entry->isFailedJob() |
||
| 21 | || $entry->isScheduledTask() |
||
| 22 | || $entry->hasMonitoredTag()); |
||
| 23 | } |
||
| 38 |