diff --git a/core/lib/Drupal/Core/Database/Driver/fake/FakeDatabaseSchema.php b/core/lib/Drupal/Core/Database/Driver/fake/FakeDatabaseSchema.php index 20e9da6..8d8ea09 100644 --- a/core/lib/Drupal/Core/Database/Driver/fake/FakeDatabaseSchema.php +++ b/core/lib/Drupal/Core/Database/Driver/fake/FakeDatabaseSchema.php @@ -234,15 +234,4 @@ public function uniqueIdentifier() { return $this->uniqueIdentifier; } - /** - * {@inheritdoc} - */ - public static function getInfo() { - return array( - 'name' => 'Fake database schema', - 'description' => 'Tests for fake database schema plugin.', - 'group' => 'Migrate', - ); - } - } diff --git a/core/lib/Drupal/Core/Database/Driver/fake/FakeSelect.php b/core/lib/Drupal/Core/Database/Driver/fake/FakeSelect.php index 629bf1a..9feb177 100644 --- a/core/lib/Drupal/Core/Database/Driver/fake/FakeSelect.php +++ b/core/lib/Drupal/Core/Database/Driver/fake/FakeSelect.php @@ -514,17 +514,6 @@ public function compiled() { /** * {@inheritdoc} */ - public static function getInfo() { - return array( - 'name' => 'Fake select test', - 'description' => 'Tests for fake select plugin.', - 'group' => 'Migrate', - ); - } - - /** - * {@inheritdoc} - */ public function fields($table_alias, array $fields = array()) { if (!$fields) { $table = $this->tables[$table_alias]['table']; diff --git a/core/lib/Drupal/Core/Database/Driver/fake/FakeStatement.php b/core/lib/Drupal/Core/Database/Driver/fake/FakeStatement.php index 4f00eeb..7aaf574 100644 --- a/core/lib/Drupal/Core/Database/Driver/fake/FakeStatement.php +++ b/core/lib/Drupal/Core/Database/Driver/fake/FakeStatement.php @@ -101,15 +101,4 @@ public function fetchObject() { return $return === FALSE ? FALSE : (object) $return; } - /** - * {@inheritdoc} - */ - public static function getInfo() { - return array( - 'name' => 'Fake statement test', - 'description' => 'Tests for fake statement plugin.', - 'group' => 'Migrate', - ); - } - }