From ca91fc063a45fd8fa5fc64c332b565bf30a08754 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Tue, 12 Jul 2016 20:59:20 -0500 Subject: [PATCH] WIP: Implementation of a removeSettingCurrent() method for the down() calls in migrations --- app/Migrations/AbstractMigrationChamilo.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/Migrations/AbstractMigrationChamilo.php b/app/Migrations/AbstractMigrationChamilo.php index 9c13a28162..15edfa07ec 100644 --- a/app/Migrations/AbstractMigrationChamilo.php +++ b/app/Migrations/AbstractMigrationChamilo.php @@ -135,4 +135,14 @@ abstract class AbstractMigrationChamilo extends AbstractMigration } return false; } + /** + * Remove a setting completely + * @param string $variable The setting variable name + * @return void + */ + public function removeSettingCurrent($variable) + { + //to be implemented + } + }