diff options
Diffstat (limited to 'main/app/system/Bakery/Migration.php')
-rw-r--r-- | main/app/system/Bakery/Migration.php | 13 |
1 files changed, 8 insertions, 5 deletions
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() { + } } |