From b66a61addb6c8e66cb26fcf74b532d68891267e4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 23 May 2018 22:23:28 +0200 Subject: Refactored code, many fixes and improvements in chat backend+frontend --- main/app/system/Bakery/Migration.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'main/app/system/Bakery/Migration.php') diff --git a/main/app/system/Bakery/Migration.php b/main/app/system/Bakery/Migration.php index e6c6ae0..7c4ef62 100644 --- a/main/app/system/Bakery/Migration.php +++ b/main/app/system/Bakery/Migration.php @@ -5,6 +5,7 @@ * @link https://github.com/userfrosting/UserFrosting * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License) */ + namespace UserFrosting\System\Bakery; use Illuminate\Database\Schema\Builder; @@ -41,8 +42,7 @@ abstract class Migration * @param Illuminate\Database\Schema\Builder $schema * @return void */ - public function __construct(Builder $schema, SymfonyStyle $io) - { + public function __construct(Builder $schema, SymfonyStyle $io) { $this->schema = $schema; $this->io = $io; } @@ -50,15 +50,18 @@ abstract class Migration /** * Method to apply changes to the database */ - public function up() {} + public function up() { + } /** * Method to revert changes applied by the `up` method */ - public function down() {} + public function down() { + } /** * Method to seed new information to the database */ - public function seed() {} + public function seed() { + } } -- cgit v1.2.3