|
11 | 11 | * |
12 | 12 | * @method \Cake\Queue\Model\Entity\FailedJob newEmptyEntity() |
13 | 13 | * @method \Cake\Queue\Model\Entity\FailedJob newEntity(array $data, array $options = []) |
14 | | - * @method \Cake\Queue\Model\Entity\FailedJob[] newEntities(array $data, array $options = []) |
| 14 | + * @method array<\Cake\Queue\Model\Entity\FailedJob> newEntities(array $data, array $options = []) |
15 | 15 | * @method \Cake\Queue\Model\Entity\FailedJob get($primaryKey, $options = []) |
16 | 16 | * @method \Cake\Queue\Model\Entity\FailedJob findOrCreate($search, ?callable $callback = null, $options = []) |
17 | 17 | * @method \Cake\Queue\Model\Entity\FailedJob patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = []) |
18 | | - * @method \Cake\Queue\Model\Entity\FailedJob[] patchEntities(iterable $entities, array $data, array $options = []) |
| 18 | + * @method array<\Cake\Queue\Model\Entity\FailedJob> patchEntities(iterable $entities, array $data, array $options = []) |
19 | 19 | * @method \Cake\Queue\Model\Entity\FailedJob|false save(\Cake\Datasource\EntityInterface $entity, $options = []) |
20 | 20 | * @method \Cake\Queue\Model\Entity\FailedJob saveOrFail(\Cake\Datasource\EntityInterface $entity, $options = []) |
21 | | - * @method \Cake\Queue\Model\Entity\FailedJob[]|\Cake\Datasource\ResultSetInterface|false saveMany(iterable $entities, $options = []) |
22 | | - * @method \Cake\Queue\Model\Entity\FailedJob[]|\Cake\Datasource\ResultSetInterface saveManyOrFail(iterable $entities, $options = []) |
23 | | - * @method \Cake\Queue\Model\Entity\FailedJob[]|\Cake\Datasource\ResultSetInterface|false deleteMany(iterable $entities, $options = []) |
24 | | - * @method \Cake\Queue\Model\Entity\FailedJob[]|\Cake\Datasource\ResultSetInterface deleteManyOrFail(iterable $entities, $options = []) |
| 21 | + * @method iterable<\Cake\Queue\Model\Entity\FailedJob>|false saveMany(iterable $entities, $options = []) |
| 22 | + * @method iterable<\Cake\Queue\Model\Entity\FailedJob> saveManyOrFail(iterable $entities, $options = []) |
| 23 | + * @method iterable<\Cake\Queue\Model\Entity\FailedJob>|false deleteMany(iterable $entities, $options = []) |
| 24 | + * @method iterable<\Cake\Queue\Model\Entity\FailedJob> deleteManyOrFail(iterable $entities, $options = []) |
25 | 25 | * @mixin \Cake\ORM\Behavior\TimestampBehavior |
26 | 26 | */ |
27 | 27 | class FailedJobsTable extends Table |
28 | 28 | { |
29 | 29 | /** |
30 | 30 | * Initialize method |
31 | 31 | * |
32 | | - * @param array $config The configuration for the Table. |
| 32 | + * @param array<string, mixed> $config The configuration for the Table. |
33 | 33 | * @return void |
34 | 34 | */ |
35 | 35 | public function initialize(array $config): void |
|
0 commit comments