| @@ -7,10 +7,8 @@ | ||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | namespace SeQura\WC\Repositories\Migrations; |
| 10 | 10 | |
| 11 | -use SeQura\WC\Core\Extension\Infrastructure\Configuration\Configuration; | |
| 12 | - | |
| 13 | 11 | /** |
| 14 | 12 | * Database migration interface |
| 15 | 13 | */ |
| 16 | 14 | abstract class Migration { |
| @@ -22,22 +20,14 @@ | ||
| 22 | 20 | */ |
| 23 | 21 | protected $db; |
| 24 | 22 | |
| 25 | 23 | /** |
| 26 | - * Configuration service. | |
| 27 | - * | |
| 28 | - * @var Configuration | |
| 29 | - */ | |
| 30 | - protected $configuration; | |
| 31 | - | |
| 32 | - /** | |
| 33 | 24 | * Constructor |
| 34 | 25 | * |
| 35 | 26 | * @param \wpdb $wpdb Database instance. |
| 36 | 27 | */ |
| 37 | - public function __construct( \wpdb $wpdb, Configuration $configuration ) { | |
| 38 | - $this->db = $wpdb; | |
| 39 | - $this->configuration = $configuration; | |
| 28 | + public function __construct( \wpdb $wpdb ) { | |
| 29 | + $this->db = $wpdb; | |
| 40 | 30 | } |
| 41 | 31 | |
| 42 | 32 | /** |
| 43 | 33 | * Get the plugin version when the changes were made. |