first commit
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* @file classes/job/resources/CLIFailedJobResource.php
|
||||
*
|
||||
* Copyright (c) 2014-2022 Simon Fraser University
|
||||
* Copyright (c) 2000-2022 John Willinsky
|
||||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
||||
*
|
||||
* @class CLIFailedJobResource
|
||||
*
|
||||
* @brief Mapping class for CLI output values
|
||||
*/
|
||||
|
||||
namespace PKP\job\resources;
|
||||
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
use PKP\job\traits\JobResource;
|
||||
|
||||
class CLIFailedJobResource extends JsonResource
|
||||
{
|
||||
use JobResource;
|
||||
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*/
|
||||
public function toArray($request): array
|
||||
{
|
||||
return [
|
||||
'id' => $this->getResource()->id,
|
||||
'queue' => $this->getResource()->queue,
|
||||
'displayName' => $this->getJobName(),
|
||||
'connection' => $this->getResource()->connection,
|
||||
'failed_at' => $this->getFailedAt(),
|
||||
'exception' => chunk_split($this->getResource()->exceptionMessage(), 50),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user