public function TestSqlBase::__construct in Drupal 8
Same name in this branch
- 8 core/modules/migrate/tests/src/Unit/SqlBaseTest.php \Drupal\Tests\migrate\Unit\TestSqlBase::__construct()
- 8 core/modules/migrate/tests/src/Kernel/SqlBaseTest.php \Drupal\Tests\migrate\Kernel\TestSqlBase::__construct()
Same name and namespace in other branches
- 9 core/modules/migrate/tests/src/Kernel/SqlBaseTest.php \Drupal\Tests\migrate\Kernel\TestSqlBase::__construct()
Overrides the constructor so we can create one easily.
Parameters
array $configuration: The plugin instance configuration.
\Drupal\migrate\Plugin\MigrationInterface $migration: (optional) The migration being run.
Overrides SqlBase::__construct
File
- core/
modules/ migrate/ tests/ src/ Kernel/ SqlBaseTest.php, line 203 - Contains \Drupal\Tests\migrate\Kernel\SqlBaseTest.
Class
- TestSqlBase
- A dummy source to help with testing SqlBase.
Namespace
Drupal\Tests\migrate\KernelCode
public function __construct(array $configuration = [], MigrationInterface $migration = NULL) {
parent::__construct($configuration, 'sql_base', [], $migration, \Drupal::state());
}