Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikola committed May 16, 2014
1 parent d369251 commit 9eaaeed
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Tests/DependencyInjection/ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,16 +167,16 @@ public function testFullConfiguration($config)

public function provideFullConfiguration()
{
$yaml = Yaml::parse(__DIR__.'/Fixtures/config/yml/full.yml');
$yaml = $yaml['doctrine_mongodb'];
$xml = XmlUtils::loadFile(__DIR__.'/Fixtures/config/xml/full.xml');
$xml = XmlUtils::convertDomElementToArray($xml->getElementsByTagName('config')->item(0));
return array(
array($yaml),
array($xml),
);
$yaml = Yaml::parse(__DIR__.'/Fixtures/config/yml/full.yml');
$yaml = $yaml['doctrine_mongodb'];

$xml = XmlUtils::loadFile(__DIR__.'/Fixtures/config/xml/full.xml');
$xml = XmlUtils::convertDomElementToArray($xml->getElementsByTagName('config')->item(0));

return array(
array($yaml),
array($xml),
);
}

/**
Expand Down

0 comments on commit 9eaaeed

Please sign in to comment.