From b671688ade8e72df704d9e50125217b6422e45be Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sun, 4 Jan 2015 20:57:18 +0000 Subject: [PATCH] Fixed StyleCI --- ...6_AlterTableComponentsAddGroupIdColumn.php | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/app/database/migrations/2015_01_04_194246_AlterTableComponentsAddGroupIdColumn.php b/app/database/migrations/2015_01_04_194246_AlterTableComponentsAddGroupIdColumn.php index 2dabefa7..48a3645a 100644 --- a/app/database/migrations/2015_01_04_194246_AlterTableComponentsAddGroupIdColumn.php +++ b/app/database/migrations/2015_01_04_194246_AlterTableComponentsAddGroupIdColumn.php @@ -6,27 +6,27 @@ use Illuminate\Support\Facades\Schema; class AlterTableComponentsAddGroupIdColumn extends Migration { - /** - * Run the migrations. - * - * @return void - */ - public function up() - { - Schema::table('components', function(Blueprint $table) { - $table->integer('group_id')->nullable()->default(null)->after('order'); - }); - } + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::table('components', function (Blueprint $table) { + $table->integer('group_id')->nullable()->default(null)->after('order'); + }); + } - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('components', function(Blueprint $table) { - $table->dropColumn('group_id'); - }); - } + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('components', function (Blueprint $table) { + $table->dropColumn('group_id'); + }); + } }