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

install_commentpost_table   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 41
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A up() 0 14 1
A down() 0 4 1
A seed() 0 2 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_commentpost_table.
8
 */
9
class install_commentpost_table extends Migration implements MigrationInterface
10
{
11
    /**
12
     * Execute actions when migration is up
13
     * @return void
14
     */
15
    public function up()
16
    {
17
        $this->getSchema()->create('comment_posts', function($table) {
18
            $table->increments('id');
19
            $table->string('pathway', 1024);
20
            $table->integer('user_id')->unsigned();
21
            $table->string('guest_name', 100);
22
            $table->text('message');
23
            $table->string('lang', 32)->default('en');
24
            $table->string('ip', 64)->default('127.0.0.1'); // ipv4 and ipv6 (32 chars + 7 digits is max)
25
            $table->boolean('moderate')->default(false);
26
            $table->timestamps();
27
        });
28
        parent::up();
29
    }
30
31
    /**
32
     * Seed created table via up() method with some data
33
     * @return void
34
     */
35
    public function seed()
36
    {
37
38
    }
39
40
    /**
41
     * Execute actions when migration is down
42
     * @return void
43
     */
44
    public function down()
45
    {
46
        $this->getSchema()->dropIfExists('comment_posts');
47
        parent::down();
48
    }
49
}