Skip to content

Commit

Permalink
Fix styling issues in "migration.php"
Browse files Browse the repository at this point in the history
  • Loading branch information
rougin committed Oct 19, 2024
1 parent c8846f6 commit 12b0d46
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,15 @@ public function saveLatest($version)
*/
protected function startMigration()
{
$this->setConfig('migration_enabled', 'true');
$this->setConfig('migration_enabled', 'TRUE');
}

/**
* @return void
*/
protected function stopMigration()
{
$this->setConfig('migration_enabled', 'false');
$this->setConfig('migration_enabled', 'FALSE');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixture/Ciacme/config/migration.bak
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defined('BASEPATH') or exit('No direct script access allowed');
| and disable it back when you're done.
|
*/
$config['migration_enabled'] = true;
$config['migration_enabled'] = false;

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixture/Ciacme/config/migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
| and disable it back when you're done.
|
*/
$config['migration_enabled'] = FALSE;
$config['migration_enabled'] = false;

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 12b0d46

Please sign in to comment.