forked from codeigniter4/queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue.php
More file actions
28 lines (25 loc) · 1.13 KB
/
Queue.php
File metadata and controls
28 lines (25 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter Queue.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
return [
'generator' => [
'className' => [
'job' => 'Job class name',
],
],
'incorrectHandler' => 'This queue handler is incorrect.',
'incorrectQueueFormat' => 'The queue name should consists only lowercase letters or numbers.',
'tooLongQueueName' => 'The queue name is too long. It should be no longer than 64 letters.',
'incorrectJobHandler' => 'This job name is not defined in the $jobHandlers array.',
'incorrectPriorityFormat' => 'The priority name should consists only lowercase letters.',
'tooLongPriorityName' => 'The priority name is too long. It should be no longer than 64 letters.',
'incorrectQueuePriority' => 'This queue has incorrectly defined priority: "{0}" for the queue: "{1}".',
'incorrectDelayValue' => 'The number of seconds of delay must be a positive integer.',
];