From ad95a44e7d22969ce3b1d700a44fd8ce00a68c22 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Wed, 24 Feb 2016 23:22:52 +0900 Subject: [PATCH] Remove obsolete AbstractMigration class --- src/Database/AbstractMigration.php | 47 ------------------------------ 1 file changed, 47 deletions(-) delete mode 100644 src/Database/AbstractMigration.php diff --git a/src/Database/AbstractMigration.php b/src/Database/AbstractMigration.php deleted file mode 100644 index 867f7718d..000000000 --- a/src/Database/AbstractMigration.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Flarum\Database; - -use Flarum\Settings\SettingsRepositoryInterface; -use Illuminate\Database\Schema\Builder; - -abstract class AbstractMigration -{ - /** - * @var Builder - */ - protected $schema; - - /** - * @var SettingsRepositoryInterface - */ - protected $settings; - - /** - * @param Builder $schema - * @param SettingsRepositoryInterface $settings - */ - public function __construct(Builder $schema, SettingsRepositoryInterface $settings) - { - $this->schema = $schema; - $this->settings = $settings; - } - - /** - * Run the migrations. - */ - abstract public function up(); - - /** - * Reverse the migrations. - */ - abstract public function down(); -}