| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 15 | public function up()  | 
            ||
| 16 |     { | 
            ||
| 17 |         $this->getSchema()->create('messages', function($table) { | 
            ||
| 18 |             $table->bigIncrements('id'); | 
            ||
| 19 |             $table->integer('target_id')->unsigned(); | 
            ||
| 20 |             $table->integer('sender_id')->unsigned(); | 
            ||
| 21 |             $table->text('message'); | 
            ||
| 22 |             $table->boolean('readed')->default(false); | 
            ||
| 23 | $table->timestamps();  | 
            ||
| 24 | });  | 
            ||
| 25 | parent::up();  | 
            ||
| 26 | }  | 
            ||
| 46 | }  | 
            
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.