-
-
Notifications
You must be signed in to change notification settings - Fork 485
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address deprecations from various bundles
- Loading branch information
Showing
5 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,12 @@ | |
|
||
use FOS\UserBundle\Model\GroupInterface; | ||
use FOS\UserBundle\Model\GroupManagerInterface as BaseInterface; | ||
use Sonata\CoreBundle\Model\PageableManagerInterface; | ||
use Sonata\DatagridBundle\Pager\PageableInterface; | ||
|
||
/** | ||
* @author Hugo Briand <[email protected]> | ||
*/ | ||
interface GroupManagerInterface extends BaseInterface, PageableManagerInterface | ||
interface GroupManagerInterface extends BaseInterface, PageableInterface | ||
{ | ||
/** | ||
* Alias for the repository method. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,12 +14,12 @@ | |
namespace Sonata\UserBundle\Model; | ||
|
||
use FOS\UserBundle\Model\UserManagerInterface as BaseInterface; | ||
use Sonata\CoreBundle\Model\PageableManagerInterface; | ||
use Sonata\DatagridBundle\Pager\PageableInterface; | ||
|
||
/** | ||
* @author Hugo Briand <[email protected]> | ||
*/ | ||
interface UserManagerInterface extends BaseInterface, PageableManagerInterface | ||
interface UserManagerInterface extends BaseInterface, PageableInterface | ||
{ | ||
/** | ||
* Alias for the repository method. | ||
|