This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
25
return true;
26
}
27
28
return $entry->isReportableException() ||
29
$entry->isFailedJob() ||
30
$entry->isScheduledTask() ||
31
$entry->hasMonitoredTag();
32
});
33
}
34
35
/**
36
* Prevent sensitive request details from being logged by Telescope.
37
*
38
* @return void
39
*/
40
protected function hideSensitiveRequestDetails()
41
{
42
if ($this->app->isLocal()) {
43
return;
44
}
45
46
Telescope::hideRequestParameters(['_token']);
47
48
Telescope::hideRequestHeaders([
49
'cookie',
50
'x-csrf-token',
51
'x-xsrf-token',
52
]);
53
}
54
55
/**
56
* Register the Telescope gate.
57
*
58
* This gate determines who can access Telescope in non-local environments.
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.