Skip to content

Commit

Permalink
Fix styling issues in Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
rougin committed Oct 19, 2024
1 parent e528930 commit c8846f6
Showing 1 changed file with 2 additions and 2 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

0 comments on commit c8846f6

Please sign in to comment.