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