Nwidart\Modules\tests\Commands\MigrationCommandTest::expectedCreateMigrationContent PHP Method

expectedCreateMigrationContent() private method

    private function expectedCreateMigrationContent()
    {
        return <<<TEXT
<?php

use Illuminate\\Support\\Facades\\Schema;
use Illuminate\\Database\\Schema\\Blueprint;
use Illuminate\\Database\\Migrations\\Migration;

class CreatePostsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('posts', function (Blueprint \$table) {
            \$table->increments('id');

            \$table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('posts');
    }
}

TEXT;
    }