dinner time
Some checks failed
CI / testsuite (mysql, 8.2, ) (push) Successful in 14m15s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 14m19s
CI / testsuite (mysql, 8.4, ) (push) Successful in 17m10s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 13m57s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 13m43s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 18m27s
CI / Coding Standard & Static Analysis (push) Failing after 7m28s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 15m54s

This commit is contained in:
2026-01-23 19:25:11 -08:00
parent a39017c817
commit b2d1ae2d01
3 changed files with 38 additions and 3 deletions

View File

@@ -4,10 +4,14 @@ declare(strict_types=1);
namespace CakeAddresses\Model\Table;
use ArrayObject;
use Cake\Datasource\EntityInterface;
use Cake\Datasource\ResultSetInterface;
use Cake\Event\EventInterface;
use Cake\ORM\Association\BelongsTo;
use Cake\ORM\RulesChecker;
use Cake\ORM\Table;
use Cake\Validation\Validator;
use CakeAddresses\Model\Entity\Address;
/**
* Addresses Model
@@ -19,9 +23,9 @@ use Cake\Validation\Validator;
* @method \CakeAddresses\Model\Entity\Address newEmptyEntity()
* @method \CakeAddresses\Model\Entity\Address newEntity()
* @method array<Address> newEntities(array $data, array $options = [])
* @method \CakeAddresses\Model\Entity\Address get()
* @method \CakeAddresses\Model\Entity\Address get(mixed $primaryKey, array|string $finder = 'all', \Psr\SimpleCache\CacheInterface|string|null $cache = null, \Closure|string|null $cacheKey = null, mixed ...$args)
* @method \CakeAddresses\Model\Entity\Address findOrCreate()
* @method \CakeAddresses\Model\Entity\Address patchEntity()
* @method \CakeAddresses\Model\Entity\Address patchEntity(Address $address, array $data, array $options = [])
* @method array<Address> patchEntities(iterable $entities, array $data, array $options = [])
* @method Address|false save(EntityInterface $entity, array $options = [])
* @method \CakeAddresses\Model\Entity\Address saveOrFail()