CreateFinderFilesTypesTables   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A up() 0 4 1
A down() 0 4 1
1
<?php
2
use Illuminate\Database\Schema\Blueprint;
3
use Illuminate\Database\Migrations\Migration;
4
5
class CreateFinderFilesTypesTables extends Migration
6
{
7
8
    /**
9
     * Run the migrations.
10
     *
11
     * @return void
12
     */
13
    public function up()
14
    {
15
        
16
    }
17
18
    /**
19
     * Reverse the migrations.
20
     *
21
     * @return void
22
     */
23
    public function down()
24
    {
25
        
26
    }
27
28
}
29