Skip to content

Commit

Permalink
Merge pull request #125 from leroy-merlin-br/migration-stub-return-types
Browse files Browse the repository at this point in the history
Add return types to migration stub
  • Loading branch information
carusogabriel committed Oct 31, 2018
2 parents 9129d0d + 836fc5c commit 9b29304
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Migrations/stubs/blank.stub
Expand Up @@ -7,15 +7,15 @@ class DummyClass extends Migration
/**
* Run the migrations.
*/
public function up()
public function up(): void
{
//
}

/**
* Reverse the migrations.
*/
public function down()
public function down(): void
{
//
}
Expand Down

0 comments on commit 9b29304

Please sign in to comment.