| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 16 | public function up()  | 
            ||
| 17 |     { | 
            ||
| 18 |         Schema::create('studies', function (Blueprint $table) { | 
            ||
| 19 |             $table->increments('id'); | 
            ||
| 20 |             $table->string('name'); | 
            ||
| 21 |             $table->integer('law_id')->unsigned(); | 
            ||
| 22 |             $table->string('state')->nullable(); | 
            ||
| 23 |             $table->integer('replaces_study_id')->unsigned()->nullable(); | 
            ||
| 24 | $table->timestamps();  | 
            ||
| 25 | });  | 
            ||
| 26 | }  | 
            ||
| 27 | /**  | 
            ||
| 37 | 
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.