BasePresenter   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A startup() 0 4 1
A beforeRender() 0 4 1
A actionDefault() 0 3 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 AdminModule\InvestformModule;
9
10
/**
11
 * Description of
12
 *
13
 * @author Tomas Voslar <[email protected]>
14
 */
15
class BasePresenter extends \AdminModule\BasePresenter
16
{	
17
    protected function startup()
18
    {
19
	   parent::startup();
20
    }
21
22
    protected function beforeRender()
23
    {
24
	   parent::beforeRender();
25
    }
26
	
27
    public function actionDefault($idPage)
0 ignored issues
show
Unused Code introduced by
The parameter $idPage is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
28
    {
29
    }
30
}