phpcs
Some checks failed
CI / testsuite (pgsql, 8.4, ) (push) Has been cancelled
CI / testsuite (pgsql, 8.2, ) (push) Has been cancelled
CI / testsuite (sqlite, 8.2, ) (push) Has been cancelled
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Has been cancelled
CI / testsuite (mysql, 8.2, ) (push) Has been cancelled
CI / testsuite (sqlite, 8.4, ) (push) Has been cancelled
CI / testsuite (mysql, 8.4, ) (push) Has been cancelled
CI / Coding Standard & Static Analysis (push) Successful in 3m16s
Some checks failed
CI / testsuite (pgsql, 8.4, ) (push) Has been cancelled
CI / testsuite (pgsql, 8.2, ) (push) Has been cancelled
CI / testsuite (sqlite, 8.2, ) (push) Has been cancelled
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Has been cancelled
CI / testsuite (mysql, 8.2, ) (push) Has been cancelled
CI / testsuite (sqlite, 8.4, ) (push) Has been cancelled
CI / testsuite (mysql, 8.4, ) (push) Has been cancelled
CI / Coding Standard & Static Analysis (push) Successful in 3m16s
This commit is contained in:
@@ -4,35 +4,31 @@ 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
|
||||
*
|
||||
* @property CitiesTable&BelongsTo $Cities
|
||||
* @property StatesTable&BelongsTo $States
|
||||
* @property CountriesTable&BelongsTo $Countries
|
||||
* @property CitiesTable&\Cake\ORM\Association\BelongsTo $Cities
|
||||
* @property StatesTable&\Cake\ORM\Association\BelongsTo $States
|
||||
* @property CountriesTable&\Cake\ORM\Association\BelongsTo $Countries
|
||||
*
|
||||
* @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(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(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 array<\CakeAddresses\Model\Entity\Address> newEntities(array $data, array $options = [])
|
||||
* @method \CakeAddresses\Model\Entity\Address|\Cake\Datasource\EntityInterface 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|\Cake\Datasource\EntityInterface findOrCreate()
|
||||
* @method \CakeAddresses\Model\Entity\Address patchEntity(\CakeAddresses\Model\Entity\Address|\Cake\Datasource\EntityInterface $address, array $data, array $options = [])
|
||||
* @method array<\CakeAddresses\Model\Entity\Address> patchEntities(iterable $entities, array $data, array $options = [])
|
||||
* @method \CakeAddresses\Model\Entity\Address|false save(\Cake\Datasource\EntityInterface $entity, array $options = [])
|
||||
* @method \CakeAddresses\Model\Entity\Address saveOrFail()
|
||||
* @method iterable<Address>|ResultSetInterface<Address>|false saveMany(iterable $entities, array $options = [])
|
||||
* @method iterable<Address>|ResultSetInterface<Address> saveManyOrFail(iterable $entities, array $options = [])
|
||||
* @method iterable<Address>|ResultSetInterface<Address>|false deleteMany(iterable $entities, array $options = [])
|
||||
* @method iterable<Address>|ResultSetInterface<Address> deleteManyOrFail(iterable $entities, array $options = [])
|
||||
* @method iterable<\CakeAddresses\Model\Entity\Address>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Address>|false saveMany(iterable $entities, array $options = [])
|
||||
* @method iterable<\CakeAddresses\Model\Entity\Address>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Address> saveManyOrFail(iterable $entities, array $options = [])
|
||||
* @method iterable<\CakeAddresses\Model\Entity\Address>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Address>|false deleteMany(iterable $entities, array $options = [])
|
||||
* @method iterable<\CakeAddresses\Model\Entity\Address>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Address> deleteManyOrFail(iterable $entities, array $options = [])
|
||||
*/
|
||||
class AddressesTable extends Table {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user