Zenc_EmailLogger_Model_Resource_Log::_construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
class Zenc_EmailLogger_Model_Resource_Log
4
    extends Mage_Core_Model_Resource_Db_Abstract
5
{
6
    /**
7
     * @var
8
     */
9
    protected $_serializableFields = array(
10
        'recipients' => array(array(), array()),
11
        'headers' => array(array(), array()),
12
    );
13
14
    protected function _construct()
15
    {
16
        $this->_init('zenc_emaillogger/log', 'mail_id');
17
    }
18
}
19