@@ -72,19 +72,19 @@ Tables should annotate their entity related methods, their relations and behavio
7272A LocationsTable class would then get the following doc block annotations added if not already present:
7373``` php
7474/**
75- * @method \App\Model\Entity\Location get($primaryKey, mixed[] $options = [])
75+ * @method \App\Model\Entity\Location get($primaryKey, array $options = [])
7676 * @method \App\Model\Entity\Location newEmptyEntity()
77- * @method \App\Model\Entity\Location newEntity(mixed[] $data, mixed[] $options = [])
78- * @method array<\App\Model\Entity\Location> newEntities(mixed[] $data, mixed[] $options = [])
79- * @method \App\Model\Entity\Location|false save(\Cake\Datasource\EntityInterface $entity, mixed[] $options = [])
80- * @method \App\Model\Entity\Location saveOrFail(\Cake\Datasource\EntityInterface $entity, mixed[] $options = [])
81- * @method \App\Model\Entity\Location patchEntity(\Cake\Datasource\EntityInterface $entity, mixed[] $data, mixed[] $options = [])
82- * @method array<\App\Model\Entity\Location> patchEntities(iterable $entities, mixed[] $data, mixed[] $options = [])
83- * @method \App\Model\Entity\Location findOrCreate($search, ?callable $callback = null, mixed[] $options = [])
84- * @method \Cake\Datasource\ResultSetInterface<\App\Model\Entity\Location>|false saveMany(iterable $entities, mixed[] $options = [])
85- * @method \Cake\Datasource\ResultSetInterface<\App\Model\Entity\Location> saveManyOrFail(iterable $entities, mixed[] $options = [])
86- * @method \Cake\Datasource\ResultSetInterface<\App\Model\Entity\Location>|false deleteMany(iterable $entities, mixed[] $options = [])
87- * @method \Cake\Datasource\ResultSetInterface<\App\Model\Entity\Location> deleteManyOrFail(iterable $entities, mixed[] $options = [])
77+ * @method \App\Model\Entity\Location newEntity(array $data, array $options = [])
78+ * @method array<\App\Model\Entity\Location> newEntities(array $data, array $options = [])
79+ * @method \App\Model\Entity\Location|false save(\Cake\Datasource\EntityInterface $entity, array $options = [])
80+ * @method \App\Model\Entity\Location saveOrFail(\Cake\Datasource\EntityInterface $entity, array $options = [])
81+ * @method \App\Model\Entity\Location patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = [])
82+ * @method array<\App\Model\Entity\Location> patchEntities(iterable $entities, array $data, array $options = [])
83+ * @method \App\Model\Entity\Location findOrCreate($search, ?callable $callback = null, array $options = [])
84+ * @method \Cake\Datasource\ResultSetInterface<\App\Model\Entity\Location>|false saveMany(iterable $entities, array $options = [])
85+ * @method \Cake\Datasource\ResultSetInterface<\App\Model\Entity\Location> saveManyOrFail(iterable $entities, array $options = [])
86+ * @method \Cake\Datasource\ResultSetInterface<\App\Model\Entity\Location>|false deleteMany(iterable $entities, array $options = [])
87+ * @method \Cake\Datasource\ResultSetInterface<\App\Model\Entity\Location> deleteManyOrFail(iterable $entities, array $options = [])
8888 *
8989 * @property \Cake\ORM\Association\HasMany<\App\Model\Table\ImagesTable> $Images
9090 * @property \Cake\ORM\Association\BelongsTo<\App\Model\Table\UsersTable> $Users
0 commit comments