| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 18 | 
| Code Lines | 15 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 9 | public function up() | ||
| 10 | 	{ | ||
| 11 | 		Schema::create('tarifs', function(Blueprint $table) { | ||
| 12 | 			$table->increments('id'); | ||
| 13 | 			$table->uuid('uuid', 191)->unique(); | ||
| 14 |             $table->string('uraian', 191)->unique(); | ||
| 15 |             $table->boolean('tarif')->default(0); | ||
| 16 | 			$table->double('jasa_pelayanan'); | ||
| 17 | 			$table->double('jasa_sarana'); | ||
| 18 | 			$table->string('satuan', 191)->index(); | ||
| 19 | 			$table->integer('master_tarif_id')->unsigned()->nullable()->index(); | ||
| 20 | 			$table->integer('user_id')->unsigned()->index(); | ||
| 21 |             $table->integer('user_update')->unsigned()->index(); | ||
| 22 | NestedSet::columns($table); | ||
| 23 | $table->timestamps(); | ||
| 24 | $table->softDeletes(); | ||
| 25 | }); | ||
| 26 | } | ||
| 27 | |||
| 33 | 
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.