phpcs phpcbf

This commit is contained in:
2026-01-23 18:36:15 -08:00
parent c249151eb4
commit ae5fa27b7d
42 changed files with 82022 additions and 82113 deletions

View File

@@ -20,9 +20,9 @@ use Cake\ORM\Entity;
* @property \CakeAddresses\Model\Entity\Region $region
* @property \CakeAddresses\Model\Entity\Country[] $countries
*/
class Subregion extends Entity
{
/**
class Subregion extends Entity {
/**
* Fields that can be mass assigned using newEntity() or patchEntity().
*
* Note that when '*' is set to true, this allows all unspecified fields to
@@ -31,15 +31,16 @@ class Subregion extends Entity
*
* @var array<string, bool>
*/
protected array $_accessible = [
'name' => true,
'translations' => true,
'region_id' => true,
'created_at' => true,
'updated_at' => true,
'flag' => true,
'wikiDataId' => true,
'region' => true,
'countries' => true,
];
protected array $_accessible = [
'name' => true,
'translations' => true,
'region_id' => true,
'created_at' => true,
'updated_at' => true,
'flag' => true,
'wikiDataId' => true,
'region' => true,
'countries' => true,
];
}