Issues (39)

src/Templates/bcont.php (1 issue)

Labels
Severity
1
<?php namespace {namespace}
0 ignored issues
show
A parse error occurred: Syntax error, unexpected '}', expecting '{' on line 1 at column 26
Loading history...
2
3
{basespace}
4
5
/**
6
 * Short description of this class usages
7
 *
8
 * @class {name}
9
 * @generated_by CI-Recharge
10
 * @package {package}
11
 * @extend {base}
12
 * @created_at {created_at}
13
 */
14
15
class {name} extends {parent}
16
{
17
    /**
18
     * {name} constructor
19
     */
20
    public function __construct()
21
    {
22
23
    }
24
25
    public function index()
26
    {
27
        echo 'Hello World!';
28
    }
29
}
30