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 + } + }