for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddDeletedAtToVersions extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::table('versions', function (Blueprint $table) {
$table->softDeletes();
});
}
* Reverse the migrations.
public function down()
$table
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
//
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.