forked from BootstrapCMS/Sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProviderInterface.php
More file actions
59 lines (51 loc) · 1.26 KB
/
Copy pathProviderInterface.php
File metadata and controls
59 lines (51 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
namespace Cartalyst\Sentry\Groups;
/**
* Part of the Sentry package.
*
* NOTICE OF LICENSE
*
* Licensed under the 3-clause BSD License.
*
* This source file is subject to the 3-clause BSD License that is
* bundled with this package in the LICENSE file. It is also available at
* the following URL: http://www.opensource.org/licenses/BSD-3-Clause
*
* @package Sentry
* @version 3.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011 - 2013, Cartalyst LLC
* @link http://cartalyst.com
*/
interface ProviderInterface {
/**
* Find the group by ID.
*
* @param int $id
* @return \Cartalyst\Sentry\Groups\GroupInterface $group
* @throws \Cartalyst\Sentry\Groups\GroupNotFoundException
*/
public function findById($id);
/**
* Find the group by name.
*
* @param string $name
* @return \Cartalyst\Sentry\Groups\GroupInterface $group
* @throws \Cartalyst\Sentry\Groups\GroupNotFoundException
*/
public function findByName($name);
/**
* Returns all groups.
*
* @return array $groups
*/
public function findAll();
/**
* Creates a group.
*
* @param array $attributes
* @return \Cartalyst\Sentry\Groups\GroupInterface
*/
public function create(array $attributes);
}