Code Duplication    Length = 13-13 lines in 2 locations

src/migrations/2017_12_13_150000_fix_query_arguments.php 2 locations

@@ 19-31 (lines=13) @@
16
     *
17
     * @return void
18
     */
19
    public function migrateUp()
20
    {
21
        try {
22
            $this->builder->table(
23
                $this->table,
24
                function ($table) {
25
                    $table->string('value')->nullable()->change();
26
                }
27
            );
28
        } catch (\Exception $e) {
29
            dd($e->getMessage());
30
        }
31
    }
32
33
    /**
34
     * Reverse the migrations.
@@ 38-50 (lines=13) @@
35
     *
36
     * @return void
37
     */
38
    public function migrateDown()
39
    {
40
        try {
41
            $this->builder->table(
42
                $this->table,
43
                function ($table) {
44
                    $table->string('value')->change();
45
                }
46
            );
47
        } catch (\Exception $e) {
48
            dd($e->getMessage());
49
        }
50
    }
51
}
52