Investform   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 50
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 4
Bugs 0 Features 0
Metric Value
wmc 1
c 4
b 0
f 0
lcom 0
cbo 1
dl 0
loc 50
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
/**
4
 * This file is part of the Investform module for webcms2.
5
 * Copyright (c) @see LICENSE
6
 */
7
8
namespace WebCMS\InvestformModule;
9
10
/**
11
 * Description of investform
12
 *
13
 * @author Tomas Voslar <[email protected]>
14
 */
15
class Investform extends \WebCMS\Module
16
{
17
	/**
18
	 * [$name description]
19
	 * @var string
20
	 */
21
    protected $name = 'Investform';
22
    
23
    /**
24
     * [$author description]
25
     * @var string
26
     */
27
    protected $author = 'Tomas Voslar';
28
    
29
    /**
30
     * [$presenters description]
31
     * @var array
32
     */
33
    protected $presenters = array(
34
		array(
35
		    'name' => 'Investform',
36
		    'frontend' => true,
37
		    'parameters' => true
38
		),
39
        array(
40
            'name' => 'Calculator',
41
            'frontend' => true,
42
            'parameters' => false
43
        ),
44
        array(
45
            'name' => 'Businessman',
46
            'frontend' => true,
47
            'parameters' => true
48
        ),
49
        array(
50
            'name' => 'Company',
51
            'frontend' => true,
52
            'parameters' => true
53
        ),
54
		array(
55
		    'name' => 'Settings',
56
		    'frontend' => false
57
		)
58
    );
59
60
    public function __construct() 
61
    {
62
	
63
    }
64
}
65