Passed
Push — master ( a29a7e...12a432 )
by Mihail
08:06
created

install_system_table   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 37
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 37
loc 37
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 2

3 Methods

Rating   Name   Duplication   Size   Complexity  
A seed() 0 2 1
A down() 0 4 1
A up() 0 10 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_system_table.
8
 */
9
class install_system_table extends Migration implements MigrationInterface
10
{
11
    /**
12
     * Execute actions when migration is up
13
     * @return void
14
     */
15
    public function up()
16
    {
17
18
        $this->getSchema()->create('systems', function($table) {
19
            $table->increments('id');
20
            $table->string('var', 1024);
21
            $table->text('data');
22
            $table->timestamps();
23
        });
24
        parent::up();
25
    }
26
27
    /**
28
     * Seed created table via up() method with some data
29
     * @return void
30
     */
31
    public function seed()
32
    {
33
34
    }
35
36
    /**
37
     * Execute actions when migration is down
38
     * @return void
39
     */
40
    public function down()
41
    {
42
        $this->getSchema()->dropIfExists('systems');
43
        parent::down();
44
    }
45
}