Failed Conditions
Pull Request — master (#123)
by Zac
17:58
created
src/Overwatch/TestBundle/Entity/TestGroup.php 1 patch
Braces   +15 added lines, -5 removed lines patch added patch discarded remove patch
@@ -232,9 +232,19 @@
 block discarded – undo
232 232
     /**
233 233
      * FOSUserBundle needs groups to have roles. We don't.
234 234
      */
235
-    public function getRoles() { return []; }
236
-    public function setRoles(array $roles) { return $this; }
237
-    public function addRole($role) { return $this; }
238
-    public function removeRole($role) { return $this; }
239
-    public function hasRole($role) { return false; }
235
+    public function getRoles()
236
+    {
237
+return []; }
238
+    public function setRoles(array $roles)
239
+    {
240
+return $this; }
241
+    public function addRole($role)
242
+    {
243
+return $this; }
244
+    public function removeRole($role)
245
+    {
246
+return $this; }
247
+    public function hasRole($role)
248
+    {
249
+return false; }
240 250
 }
Please login to merge, or discard this patch.