GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 26-26 lines in 2 locations

database/migrations/2017_07_23_122659_add_disable_status_column_to_users_table.php 1 location

@@ 7-32 (lines=26) @@
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Support\Facades\Schema;
6
7
class AddDisableStatusColumnToUsersTable extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     *
12
     * @return void
13
     */
14
    public function up()
15
    {
16
        Schema::table('users', function (Blueprint $table) {
17
            $table->boolean('disable_status')->default(false);
18
        });
19
    }
20
21
    /**
22
     * Reverse the migrations.
23
     *
24
     * @return void
25
     */
26
    public function down()
27
    {
28
        Schema::table('users', function (Blueprint $table) {
29
            $table->dropColumn('disable_status');
30
        });
31
    }
32
}
33

database/migrations/2017_07_23_125755_add_use_datepicker_column_to_users_table.php 1 location

@@ 7-32 (lines=26) @@
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Support\Facades\Schema;
6
7
class AddUseDatepickerColumnToUsersTable extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     *
12
     * @return void
13
     */
14
    public function up()
15
    {
16
        Schema::table('users', function (Blueprint $table) {
17
            $table->boolean('use_datepicker')->default(false);
18
        });
19
    }
20
21
    /**
22
     * Reverse the migrations.
23
     *
24
     * @return void
25
     */
26
    public function down()
27
    {
28
        Schema::table('users', function (Blueprint $table) {
29
            $table->dropColumn('use_datepicker');
30
        });
31
    }
32
}
33