Completed
Push — master ( 1a0f41...f29c22 )
by Laurent
03:40
created
src/AppBundle/Controller/AbstractController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
  */
15 15
 namespace AppBundle\Controller;
16 16
 
17
-use Symfony\Bundle\FrameworkBundle\Controller\Controller;
18 17
 use Doctrine\ORM\QueryBuilder;
18
+use Symfony\Bundle\FrameworkBundle\Controller\Controller;
19 19
 
20 20
 /**
21 21
  * Abstract controller
Please login to merge, or discard this patch.
src/AppBundle/Controller/DefaultController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
  */
15 15
 namespace AppBundle\Controller;
16 16
 
17
-use Symfony\Bundle\FrameworkBundle\Controller\Controller;
18
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
19 17
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
18
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
20 19
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
20
+use Symfony\Bundle\FrameworkBundle\Controller\Controller;
21 21
 use Symfony\Component\HttpFoundation\Response;
22 22
 
23 23
 /**
Please login to merge, or discard this patch.
src/AppBundle/Controller/UserController.php 1 patch
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,17 +14,17 @@
 block discarded – undo
14 14
  */
15 15
 namespace AppBundle\Controller;
16 16
 
17
-use Symfony\Component\HttpFoundation\Request;
18 17
 use AppBundle\Controller\AbstractController;
18
+use AppBundle\Entity\User;
19
+use AppBundle\Form\Type\UserFilterType;
20
+use AppBundle\Form\Type\UserType;
21
+use Doctrine\ORM\QueryBuilder;
19 22
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
20 23
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
21
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
22 24
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
23
-use AppBundle\Entity\User;
24
-use AppBundle\Form\Type\UserType;
25
-use AppBundle\Form\Type\UserFilterType;
25
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
26 26
 use Symfony\Component\Form\FormInterface;
27
-use Doctrine\ORM\QueryBuilder;
27
+use Symfony\Component\HttpFoundation\Request;
28 28
 
29 29
 /**
30 30
  * User controller.
Please login to merge, or discard this patch.
src/AppBundle/Entity/User.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
  */
15 15
 namespace AppBundle\Entity;
16 16
  
17
-use FOS\UserBundle\Model\User as BaseUser;
18
-use Doctrine\ORM\Mapping as ORM;
19 17
 use Doctrine\Common\Collections\ArrayCollection;
18
+use Doctrine\ORM\Mapping as ORM;
19
+use FOS\UserBundle\Model\User as BaseUser;
20 20
 use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
21 21
  
22 22
 /**
Please login to merge, or discard this patch.
src/AppBundle/Tests/Form/Type/GroupTypeTest.php 1 patch
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:16.
7 7
  */
8
-class GroupTypeTest extends \PHPUnit_Framework_TestCase {
8
+class GroupTypeTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var GroupType
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new GroupType;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Form\Type\GroupType::buildForm
33 36
      * @todo   Implement testBuildForm().
34 37
      */
35
-    public function testBuildForm() {
38
+    public function testBuildForm()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Form\Type\GroupType::configureOptions
44 48
      * @todo   Implement testConfigureOptions().
45 49
      */
46
-    public function testConfigureOptions() {
50
+    public function testConfigureOptions()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
@@ -54,7 +59,8 @@  discard block
 block discarded – undo
54 59
      * @covers AppBundle\Form\Type\GroupType::getName
55 60
      * @todo   Implement testGetName().
56 61
      */
57
-    public function testGetName() {
62
+    public function testGetName()
63
+    {
58 64
         // Remove the following lines when you implement this test.
59 65
         $this->markTestIncomplete(
60 66
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Form/Type/UserFilterTypeTest.php 1 patch
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:16.
7 7
  */
8
-class UserFilterTypeTest extends \PHPUnit_Framework_TestCase {
8
+class UserFilterTypeTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var UserFilterType
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new UserFilterType;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Form\Type\UserFilterType::buildForm
33 36
      * @todo   Implement testBuildForm().
34 37
      */
35
-    public function testBuildForm() {
38
+    public function testBuildForm()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Form\Type\UserFilterType::configureOptions
44 48
      * @todo   Implement testConfigureOptions().
45 49
      */
46
-    public function testConfigureOptions() {
50
+    public function testConfigureOptions()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
@@ -54,7 +59,8 @@  discard block
 block discarded – undo
54 59
      * @covers AppBundle\Form\Type\UserFilterType::getName
55 60
      * @todo   Implement testGetName().
56 61
      */
57
-    public function testGetName() {
62
+    public function testGetName()
63
+    {
58 64
         // Remove the following lines when you implement this test.
59 65
         $this->markTestIncomplete(
60 66
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Form/Type/UserTypeTest.php 1 patch
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:15.
7 7
  */
8
-class UserTypeTest extends \PHPUnit_Framework_TestCase {
8
+class UserTypeTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var UserType
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new UserType;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Form\Type\UserType::buildForm
33 36
      * @todo   Implement testBuildForm().
34 37
      */
35
-    public function testBuildForm() {
38
+    public function testBuildForm()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Form\Type\UserType::configureOptions
44 48
      * @todo   Implement testConfigureOptions().
45 49
      */
46
-    public function testConfigureOptions() {
50
+    public function testConfigureOptions()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
@@ -54,7 +59,8 @@  discard block
 block discarded – undo
54 59
      * @covers AppBundle\Form\Type\UserType::getName
55 60
      * @todo   Implement testGetName().
56 61
      */
57
-    public function testGetName() {
62
+    public function testGetName()
63
+    {
58 64
         // Remove the following lines when you implement this test.
59 65
         $this->markTestIncomplete(
60 66
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/ContactTest.php 1 patch
Braces   +44 added lines, -22 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:39.
7 7
  */
8
-class ContactTest extends \PHPUnit_Framework_TestCase {
8
+class ContactTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var Contact
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new Contact;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Entity\Contact::setAddress
33 36
      * @todo   Implement testSetAddress().
34 37
      */
35
-    public function testSetAddress() {
38
+    public function testSetAddress()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Entity\Contact::getAddress
44 48
      * @todo   Implement testGetAddress().
45 49
      */
46
-    public function testGetAddress() {
50
+    public function testGetAddress()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
@@ -54,7 +59,8 @@  discard block
 block discarded – undo
54 59
      * @covers AppBundle\Entity\Contact::setZipcode
55 60
      * @todo   Implement testSetZipcode().
56 61
      */
57
-    public function testSetZipcode() {
62
+    public function testSetZipcode()
63
+    {
58 64
         // Remove the following lines when you implement this test.
59 65
         $this->markTestIncomplete(
60 66
             'This test has not been implemented yet.'
@@ -65,7 +71,8 @@  discard block
 block discarded – undo
65 71
      * @covers AppBundle\Entity\Contact::getZipcode
66 72
      * @todo   Implement testGetZipcode().
67 73
      */
68
-    public function testGetZipcode() {
74
+    public function testGetZipcode()
75
+    {
69 76
         // Remove the following lines when you implement this test.
70 77
         $this->markTestIncomplete(
71 78
             'This test has not been implemented yet.'
@@ -76,7 +83,8 @@  discard block
 block discarded – undo
76 83
      * @covers AppBundle\Entity\Contact::setTown
77 84
      * @todo   Implement testSetTown().
78 85
      */
79
-    public function testSetTown() {
86
+    public function testSetTown()
87
+    {
80 88
         // Remove the following lines when you implement this test.
81 89
         $this->markTestIncomplete(
82 90
             'This test has not been implemented yet.'
@@ -87,7 +95,8 @@  discard block
 block discarded – undo
87 95
      * @covers AppBundle\Entity\Contact::getTown
88 96
      * @todo   Implement testGetTown().
89 97
      */
90
-    public function testGetTown() {
98
+    public function testGetTown()
99
+    {
91 100
         // Remove the following lines when you implement this test.
92 101
         $this->markTestIncomplete(
93 102
             'This test has not been implemented yet.'
@@ -98,7 +107,8 @@  discard block
 block discarded – undo
98 107
      * @covers AppBundle\Entity\Contact::setPhone
99 108
      * @todo   Implement testSetPhone().
100 109
      */
101
-    public function testSetPhone() {
110
+    public function testSetPhone()
111
+    {
102 112
         // Remove the following lines when you implement this test.
103 113
         $this->markTestIncomplete(
104 114
             'This test has not been implemented yet.'
@@ -109,7 +119,8 @@  discard block
 block discarded – undo
109 119
      * @covers AppBundle\Entity\Contact::getPhone
110 120
      * @todo   Implement testGetPhone().
111 121
      */
112
-    public function testGetPhone() {
122
+    public function testGetPhone()
123
+    {
113 124
         // Remove the following lines when you implement this test.
114 125
         $this->markTestIncomplete(
115 126
             'This test has not been implemented yet.'
@@ -120,7 +131,8 @@  discard block
 block discarded – undo
120 131
      * @covers AppBundle\Entity\Contact::setFax
121 132
      * @todo   Implement testSetFax().
122 133
      */
123
-    public function testSetFax() {
134
+    public function testSetFax()
135
+    {
124 136
         // Remove the following lines when you implement this test.
125 137
         $this->markTestIncomplete(
126 138
             'This test has not been implemented yet.'
@@ -131,7 +143,8 @@  discard block
 block discarded – undo
131 143
      * @covers AppBundle\Entity\Contact::getFax
132 144
      * @todo   Implement testGetFax().
133 145
      */
134
-    public function testGetFax() {
146
+    public function testGetFax()
147
+    {
135 148
         // Remove the following lines when you implement this test.
136 149
         $this->markTestIncomplete(
137 150
             'This test has not been implemented yet.'
@@ -142,7 +155,8 @@  discard block
 block discarded – undo
142 155
      * @covers AppBundle\Entity\Contact::setMail
143 156
      * @todo   Implement testSetMail().
144 157
      */
145
-    public function testSetMail() {
158
+    public function testSetMail()
159
+    {
146 160
         // Remove the following lines when you implement this test.
147 161
         $this->markTestIncomplete(
148 162
             'This test has not been implemented yet.'
@@ -153,7 +167,8 @@  discard block
 block discarded – undo
153 167
      * @covers AppBundle\Entity\Contact::getMail
154 168
      * @todo   Implement testGetMail().
155 169
      */
156
-    public function testGetMail() {
170
+    public function testGetMail()
171
+    {
157 172
         // Remove the following lines when you implement this test.
158 173
         $this->markTestIncomplete(
159 174
             'This test has not been implemented yet.'
@@ -164,7 +179,8 @@  discard block
 block discarded – undo
164 179
      * @covers AppBundle\Entity\Contact::setContact
165 180
      * @todo   Implement testSetContact().
166 181
      */
167
-    public function testSetContact() {
182
+    public function testSetContact()
183
+    {
168 184
         // Remove the following lines when you implement this test.
169 185
         $this->markTestIncomplete(
170 186
             'This test has not been implemented yet.'
@@ -175,7 +191,8 @@  discard block
 block discarded – undo
175 191
      * @covers AppBundle\Entity\Contact::getContact
176 192
      * @todo   Implement testGetContact().
177 193
      */
178
-    public function testGetContact() {
194
+    public function testGetContact()
195
+    {
179 196
         // Remove the following lines when you implement this test.
180 197
         $this->markTestIncomplete(
181 198
             'This test has not been implemented yet.'
@@ -186,7 +203,8 @@  discard block
 block discarded – undo
186 203
      * @covers AppBundle\Entity\Contact::setGsm
187 204
      * @todo   Implement testSetGsm().
188 205
      */
189
-    public function testSetGsm() {
206
+    public function testSetGsm()
207
+    {
190 208
         // Remove the following lines when you implement this test.
191 209
         $this->markTestIncomplete(
192 210
             'This test has not been implemented yet.'
@@ -197,7 +215,8 @@  discard block
 block discarded – undo
197 215
      * @covers AppBundle\Entity\Contact::getGsm
198 216
      * @todo   Implement testGetGsm().
199 217
      */
200
-    public function testGetGsm() {
218
+    public function testGetGsm()
219
+    {
201 220
         // Remove the following lines when you implement this test.
202 221
         $this->markTestIncomplete(
203 222
             'This test has not been implemented yet.'
@@ -208,7 +227,8 @@  discard block
 block discarded – undo
208 227
      * @covers AppBundle\Entity\Contact::getId
209 228
      * @todo   Implement testGetId().
210 229
      */
211
-    public function testGetId() {
230
+    public function testGetId()
231
+    {
212 232
         // Remove the following lines when you implement this test.
213 233
         $this->markTestIncomplete(
214 234
             'This test has not been implemented yet.'
@@ -219,7 +239,8 @@  discard block
 block discarded – undo
219 239
      * @covers AppBundle\Entity\Contact::setName
220 240
      * @todo   Implement testSetName().
221 241
      */
222
-    public function testSetName() {
242
+    public function testSetName()
243
+    {
223 244
         // Remove the following lines when you implement this test.
224 245
         $this->markTestIncomplete(
225 246
             'This test has not been implemented yet.'
@@ -230,7 +251,8 @@  discard block
 block discarded – undo
230 251
      * @covers AppBundle\Entity\Contact::getName
231 252
      * @todo   Implement testGetName().
232 253
      */
233
-    public function testGetName() {
254
+    public function testGetName()
255
+    {
234 256
         // Remove the following lines when you implement this test.
235 257
         $this->markTestIncomplete(
236 258
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/SupplierRepositoryTest.php 1 patch
Braces   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:30.
7 7
  */
8
-class SupplierRepositoryTest extends \PHPUnit_Framework_TestCase {
8
+class SupplierRepositoryTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var SupplierRepository
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new SupplierRepository;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Entity\SupplierRepository::getSuppliers
33 36
      * @todo   Implement testGetSuppliers().
34 37
      */
35
-    public function testGetSuppliers() {
38
+    public function testGetSuppliers()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Entity\SupplierRepository::getSupplierForReassign
44 48
      * @todo   Implement testGetSupplierForReassign().
45 49
      */
46
-    public function testGetSupplierForReassign() {
50
+    public function testGetSupplierForReassign()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.