adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / zippy_maps / src / Model / Entity / Location.php
1 <?php
2 namespace App\Model\Entity;
3
4 use Cake\ORM\Entity;
5
6 /**
7  * Location Entity
8  *
9  * @property int $id
10  * @property string $name
11  * @property string $location
12  * @property float $lat
13  * @property float $lng
14  * @property \Cake\I18n\Time $created
15  * @property \Cake\I18n\Time $modified
16  */
17 class Location extends Entity
18 {
19
20     /**
21      * Fields that can be mass assigned using newEntity() or patchEntity().
22      *
23      * Note that when '*' is set to true, this allows all unspecified fields to
24      * be mass assigned. For security purposes, it is advised to set '*' to false
25      * (or remove it), and explicitly make individual fields accessible as needed.
26      *
27      * @var array
28      */
29     protected $_accessible = [
30         '*' => true,
31         'id' => false
32     ];
33 }