Migration::getConfig()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 2
crap 2
1
<?php namespace Arcanesoft\Tracker\Bases;
2
3
use Arcanedev\Support\Bases\Migration as BaseMigration;
4
5
/**
6
 * Class     Migration
7
 *
8
 * @package  Arcanesoft\Tracker\Bases
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
abstract class Migration extends BaseMigration
12
{
13
    /* -----------------------------------------------------------------
14
     |  Constructor
15
     | -----------------------------------------------------------------
16
     */
17
18
    /**
19
     * Migration constructor.
20
     */
21
    public function __construct()
22
    {
23
        $this->setConnection($this->getConfig('database.connection', null));
24
        $this->setPrefix($this->getConfig('database.prefix', 'tracker_'));
25
    }
26
27
    /* -----------------------------------------------------------------
28
     |  Other Methods
29
     | -----------------------------------------------------------------
30
     */
31
32
    /**
33
     * Get a value from config.
34
     *
35
     * @param  string      $key
36
     * @param  mixed|null  $default
37
     *
38
     * @return mixed
39
     */
40
    protected function getConfig($key, $default = null)
41
    {
42
        return config("arcanesoft.tracker.$key", $default);
43
    }
44
}
45