phpcs phpcbf
This commit is contained in:
@@ -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,
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user