-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #545 from lonnieezell/models
Alternate Models
- Loading branch information
Showing
11 changed files
with
402 additions
and
296 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Myth\Auth\Entities; | ||
|
||
use CodeIgniter\Entity\Entity; | ||
|
||
/** | ||
* Group Entity | ||
* | ||
* As of version 1.2 this class is used by the new GroupModel | ||
* to allow using a strongly-typed return. Any logic in this | ||
* class should not be relied on within this library. | ||
* | ||
* @since 1.2.0 | ||
*/ | ||
class Group extends Entity | ||
{ | ||
} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Myth\Auth\Entities; | ||
|
||
use CodeIgniter\Entity\Entity; | ||
|
||
/** | ||
* Permission Entity | ||
* | ||
* As of version 1.2 this class is used by the new PermissionModel | ||
* to allow using a strongly-typed return. Any logic in this | ||
* class should not be relied on within this library. | ||
* | ||
* @since 1.2.0 | ||
*/ | ||
class Permission extends Entity | ||
{ | ||
} |
Oops, something went wrong.