vendor/doctrine-migrations/tests/Doctrine/DBAL/Migrations/Tests/Configuration/XmlConfigurationTest.php
equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 namespace Doctrine\DBAL\Migrations\Tests\Configuration; |
|
4 |
|
5 use Doctrine\DBAL\Migrations\Configuration\XmlConfiguration; |
|
6 |
|
7 class XmlConfigurationTest extends AbstractConfigurationTest |
|
8 { |
|
9 public function loadConfiguration() |
|
10 { |
|
11 $config = new XmlConfiguration($this->getSqliteConnection()); |
|
12 $config->load(__DIR__ . "/_files/config.xml"); |
|
13 |
|
14 return $config; |
|
15 } |
|
16 } |