| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 13 | 
| Code Lines | 10 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 8 | public function up()  | 
            ||
| 9 | 	{ | 
            ||
| 10 | 		Schema::create('pbj_customer_retribusies', function(Blueprint $table) { | 
            ||
| 11 | 			$table->increments('id'); | 
            ||
| 12 | 			$table->string('uuid', 191)->unique(); | 
            ||
| 13 | $table->timestamps();  | 
            ||
| 14 | $table->softDeletes();  | 
            ||
| 15 | 			$table->integer('customers_id')->unsigned()->nullable(); | 
            ||
| 16 | 			$table->integer('daftar_retribusi_id')->unsigned()->nullable()->index(); | 
            ||
| 17 | 			$table->integer('user_id')->unsigned()->nullable()->index(); | 
            ||
| 18 | 			$table->integer('user_update')->unsigned()->nullable()->index(); | 
            ||
| 19 | });  | 
            ||
| 20 | }  | 
            ||
| 21 | |||
| 26 | }  | 
            
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.