Mygento_Payture_Block_Form::_construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
/**
4
 *
5
 *
6
 * @category Mygento
7
 * @package Mygento_Payture
8
 * @copyright Copyright © 2015 NKS LLC. (http://www.mygento.ru)
9
 */
10
class Mygento_Payture_Block_Form extends Mage_Payment_Block_Form
11
{
12
13
    protected function _construct()
14
    {
15
        parent::_construct();
16
        $this->setTemplate('mygento/payture/form.phtml');
17
    }
18
}
19