File "IncomingDumpEntry.php"
Full Path: /var/www/html/back/vendor/laravel/telescope/src/IncomingDumpEntry.php
File size: 1.45 KB
MIME-type: text/x-php
Charset: utf-8
<?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)
{
return match ($entryPoint->type) {
EntryType::REQUEST => $entryPoint->content['method'].' '.$entryPoint->content['uri'],
EntryType::JOB => $entryPoint->content['name'],
EntryType::COMMAND => $entryPoint->content['command'],
default => '',
};
}
}