Passed
Branch master (29943c)
by emilien
03:05
created
DependencyInjection/Configuration.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
                             ->end()
75 75
                         ->end()
76 76
                     ->end()
77
-                 ->end()
77
+                    ->end()
78 78
         ;
79 79
 
80 80
         return $treeBuilder;
Please login to merge, or discard this patch.
Tests/BaseTestCaseORM.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -103,16 +103,16 @@
 block discarded – undo
103 103
     {
104 104
         $driver = $this->getMockBuilder('Doctrine\DBAL\Driver')->getMock();
105 105
         $driver->expects($this->once())
106
-               ->method('getDatabasePlatform')
107
-               ->will($this->returnValue($this->getMockBuilder('Doctrine\DBAL\Platforms\MySqlPlatform')->getMock()))
106
+                ->method('getDatabasePlatform')
107
+                ->will($this->returnValue($this->getMockBuilder('Doctrine\DBAL\Platforms\MySqlPlatform')->getMock()))
108 108
         ;
109 109
         $conn = $this->getMockBuilder('Doctrine\DBAL\Connection')
110
-                     ->setConstructorArgs([], $driver)
111
-                     ->getMock()
110
+                        ->setConstructorArgs([], $driver)
111
+                        ->getMock()
112 112
         ;
113 113
         $conn->expects($this->once())
114
-             ->method('getEventManager')
115
-             ->will($this->returnValue($evm ?: $this->getEventManager()))
114
+                ->method('getEventManager')
115
+                ->will($this->returnValue($evm ?: $this->getEventManager()))
116 116
         ;
117 117
         $config = $this->getMockAnnotatedConfig();
118 118
         $this->em = EntityManager::create($conn, $config);
Please login to merge, or discard this patch.
Tests/ConfigurationTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $configuration = new Configuration();
58 58
 
59 59
         $node = $configuration->getConfigTreeBuilder()
60
-                              ->buildTree()
60
+                                ->buildTree()
61 61
         ;
62 62
         $normalizedConfig = $node->normalize($inputConfig);
63 63
         $finalizedConfig = $node->finalize($normalizedConfig);
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $configuration = new Configuration();
78 78
 
79 79
         $node = $configuration->getConfigTreeBuilder()
80
-                              ->buildTree()
80
+                                ->buildTree()
81 81
         ;
82 82
         $normalizedConfig = $node->normalize($inputConfig);
83 83
         $node->finalize($normalizedConfig);
Please login to merge, or discard this patch.