Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
AppModel
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3/**
4 * Application model for CakePHP.
5 *
6 * This file is application-wide model file. You can put all
7 * application-wide model-related methods here.
8 *
9 * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
10 * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
11 *
12 * Licensed under The MIT License
13 * For full copyright and license information, please see the LICENSE.txt
14 * Redistributions of files must retain the above copyright notice.
15 *
16 * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
17 * @link https://cakephp.org CakePHP(tm) Project
18 * @package app.Model
19 * @since CakePHP(tm) v 0.2.9
20 * @license https://opensource.org/licenses/mit-license.php MIT License
21 */
22
23/**
24 * Application model for Cake.
25 *
26 * Add your application-wide methods in the class below, your models
27 * will inherit them.
28 */
29class AppModel extends Model
30{
31    /**
32     * Behaviors to attach to all models
33     *
34     * @var array
35     */
36    public $actsAs = [
37        'EmptyInteger',
38    ];
39
40    public $recursive = -1;
41
42}