GeocodedPlace
extends Entity
in package
GeocodedPlace Entity
Table of Contents
Properties
- $id : int
- $latitude : string
- $longitude : string
- $modified : DateTime|null
- $name : string
- $type : string|null
- $_accessible : array<string, bool>
- Fields that can be mass assigned using newEntity() or patchEntity().
Properties
$id
public
int
$id
$latitude
public
string
$latitude
$longitude
public
string
$longitude
$modified
public
DateTime|null
$modified
$name
public
string
$name
$type
public
string|null
$type
$_accessible
Fields that can be mass assigned using newEntity() or patchEntity().
protected
array<string, bool>
$_accessible
= ['name' => true, 'latitude' => true, 'longitude' => true, 'type' => true, 'modified' => true]
Note that when '' is set to true, this allows all unspecified fields to be mass assigned. For security purposes, it is advised to set '' to false (or remove it), and explicitly make individual fields accessible as needed.