Completed
Push — master ( a077d5...2115d0 )
by Laurent
08:15 queued 04:23
created
src/AppBundle/Tests/Controller/DefaultControllerTest.php 2 patches
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,8 @@  discard block
 block discarded – undo
9 9
     /**
10 10
      * @return PHPUnit_Extensions_Database_DB_IDatabaseConnection
11 11
      */
12
-    public function getConnection() {
12
+    public function getConnection()
13
+    {
13 14
         $pdo = new \PDO("DB_DNS", "DB_USER", "DB_PASSWD", "DB_DBNAME");
14 15
     }
15 16
     /**
@@ -93,7 +94,8 @@  discard block
 block discarded – undo
93 94
         );
94 95
     }
95 96
 
96
-    public function testIndex() {
97
+    public function testIndex()
98
+    {
97 99
         $client = self::createClient(
98 100
             array(),
99 101
             array(
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
         $client = self::createClient(
11 11
             array(),
12 12
             array(
13
-               'HTTP_HOST' => 'symfony2.local',
13
+                'HTTP_HOST' => 'symfony2.local',
14 14
             )
15 15
         );
16 16
 
Please login to merge, or discard this patch.
src/AppBundle/Tests/Controller/InventoryControllerTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,8 @@
 block discarded – undo
69 69
         );
70 70
     }
71 71
 
72
-    public function testIndex() {
72
+    public function testIndex()
73
+    {
73 74
         $client = static::createClient();
74 75
 
75 76
         $crawler = $client->request('GET', '/');
Please login to merge, or discard this patch.