AppHelper
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
c 0
b 0
f 0
wmc 0
1
<?php
2
3
/**
4
 * Application level View Helper.
5
 *
6
 * This file is application-wide helper file. You can put all
7
 * application-wide helper-related methods here.
8
 *
9
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
10
 * Copyright (c) Cake Software Foundation, Inc. (http://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. (http://cakefoundation.org)
17
 * @license   https://opensource.org/licenses/mit-license.php MIT License
18
 *
19
 * @see      http://cakephp.org CakePHP(tm) Project
20
 * @since     CakePHP(tm) v 0.2.9
21
 */
22
23
namespace App\View\Helper;
24
25
use Cake\View\Helper;
26
27
/**
28
 * Application helper.
29
 *
30
 * Add your application-wide methods in the class below, your helpers
31
 * will inherit them.
32
 */
33
class AppHelper extends Helper
34
{
35
}
36