Password   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 13
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A _construct() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * File:Password.php
6
 *
7
 * @author Maciej Sławik <[email protected]>
8
 * @copyright Copyright (C) 2018 Lizard Media (http://lizardmedia.pl)
9
 */
10
11
namespace LizardMedia\PasswordMigrator\Model\ResourceModel;
12
13
use Magento\Framework\Model\ResourceModel\Db\AbstractDb;
14
15
class Password extends AbstractDb
16
{
17
    const TABLE_NAME = 'lm_password_migrator';
18
    const PRIMARY_KEY = 'id';
19
20
    /**
21
     * @return void
22
     */
23
    protected function _construct()
24
    {
25
        $this->_init(self::TABLE_NAME, self::PRIMARY_KEY);
26
    }
27
}
28