Skip to content

Commit

Permalink
Move GroupInterface into this project
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidPatzke committed Jun 5, 2019
1 parent 21c3f5d commit ea3ca42
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Security/User/LDAPGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Mapbender\LDAPBundle\Security\User;

use FOM\UserBundle\Entity\MapbenderGroupInterface;
use Mapbender\LDAPBundle\Security\User\MapbenderGroupInterface;

class LDAPGroup implements MapbenderGroupInterface {

Expand Down
13 changes: 13 additions & 0 deletions Security/User/MapbenderGroupInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Mapbender\LDAPBundle\Security\User;


interface MapbenderGroupInterface {

public function setTitle($title);
public function getTitle();
public function getAsRole();


}

0 comments on commit ea3ca42

Please sign in to comment.