| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/app/vendor/laravel/telescope/src/ |
Upload File : |
<?php
namespace Laravel\Telescope;
class IncomingDumpEntry extends IncomingEntry
{
/**
* Determine if the incoming entry is an exception.
*
* @return bool
*/
public function isDump()
{
return true;
}
/**
* Assign entry point parameters from the given batch entries.
*
* @param array $batch
* @return void
*/
public function assignEntryPointFromBatch(array $batch)
{
$entryPoint = collect($batch)->first(function ($entry) {
return in_array($entry->type, [EntryType::REQUEST, EntryType::JOB, EntryType::COMMAND]);
});
if (! $entryPoint) {
return;
}
$this->content = array_merge($this->content, [
'entry_point_type' => $entryPoint->type,
'entry_point_uuid' => $entryPoint->uuid,
'entry_point_description' => $this->entryPointDescription($entryPoint),
]);
}
/**
* Description for the entry point.
*
* @param \Laravel\Telescope\IncomingDumpEntry $entryPoint
* @return string
*/
private function entryPointDescription($entryPoint)
{
switch ($entryPoint->type) {
case EntryType::REQUEST:
return $entryPoint->content['method'].' '.$entryPoint->content['uri'];
case EntryType::JOB:
return $entryPoint->content['name'];
case EntryType::COMMAND:
return $entryPoint->content['command'];
}
return '';
}
}