| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 14 | public function up()  | 
            ||
| 15 |     { | 
            ||
| 16 |         Schema::create('oauth_access_token_providers', function (Blueprint $table) { | 
            ||
| 17 |             $table->string('oauth_access_token_id', 100)->primary(); | 
            ||
| 18 |             $table->string('provider'); | 
            ||
| 19 | $table->timestamps();  | 
            ||
| 20 |             $table->foreign('oauth_access_token_id') | 
            ||
| 21 |                 ->references('id') | 
            ||
| 22 |                 ->on('oauth_access_tokens') | 
            ||
| 23 |                 ->onDelete('cascade'); | 
            ||
| 24 | });  | 
            ||
| 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.