Skip to content

Commit 3d7e9ab

Browse files
committed
Fix up Psalm
1 parent c5fba90 commit 3d7e9ab

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Model/Table/FailedJobsTable.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111
*
1212
* @method \Cake\Queue\Model\Entity\FailedJob newEmptyEntity()
1313
* @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 = [])
1515
* @method \Cake\Queue\Model\Entity\FailedJob get($primaryKey, $options = [])
1616
* @method \Cake\Queue\Model\Entity\FailedJob findOrCreate($search, ?callable $callback = null, $options = [])
1717
* @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 = [])
1919
* @method \Cake\Queue\Model\Entity\FailedJob|false save(\Cake\Datasource\EntityInterface $entity, $options = [])
2020
* @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 = [])
2525
* @mixin \Cake\ORM\Behavior\TimestampBehavior
2626
*/
2727
class FailedJobsTable extends Table

0 commit comments

Comments
 (0)