PluginProbe
seQura / 4.1.0
seQura v4.1.0
4.3.4 4.3.3 4.3.2 4.3.1 trunk 2.0.0 2.0.10 2.0.11 2.0.12 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 3.0.0 3.0.2 3.0.5 3.0.6 3.0.7 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 4.0.0 All 30 releases
← All changes | src/Repositories/Migrations/class-migration.php +2 -12 3.1.14.1.0 View file →
@@ -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.