generated from fintechbd/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
role permission team user profile crud api added
- Loading branch information
1 parent
8980492
commit 6ad12fc
Showing
70 changed files
with
5,952 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace Fintech\Auth\Exceptions; | ||
|
||
/** | ||
* Class PermissionRepositoryException | ||
* @package Fintech\Auth\Exceptions | ||
*/ | ||
class PermissionRepositoryException extends \Exception | ||
{ | ||
public function __construct($message = '', $code = 0, \Throwable $previous = null) | ||
{ | ||
parent::__construct($message, $code, $previous); | ||
} | ||
} |
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,15 @@ | ||
<?php | ||
|
||
namespace Fintech\Auth\Exceptions; | ||
|
||
/** | ||
* Class RoleRepositoryException | ||
* @package Fintech\Auth\Exceptions | ||
*/ | ||
class RoleRepositoryException extends \Exception | ||
{ | ||
public function __construct($message = '', $code = 0, \Throwable $previous = null) | ||
{ | ||
parent::__construct($message, $code, $previous); | ||
} | ||
} |
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,15 @@ | ||
<?php | ||
|
||
namespace Fintech\Auth\Exceptions; | ||
|
||
/** | ||
* Class TeamRepositoryException | ||
* @package Fintech\Auth\Exceptions | ||
*/ | ||
class TeamRepositoryException extends \Exception | ||
{ | ||
public function __construct($message = '', $code = 0, \Throwable $previous = null) | ||
{ | ||
parent::__construct($message, $code, $previous); | ||
} | ||
} |
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,15 @@ | ||
<?php | ||
|
||
namespace Fintech\Auth\Exceptions; | ||
|
||
/** | ||
* Class UserProfileRepositoryException | ||
* @package Fintech\Auth\Exceptions | ||
*/ | ||
class UserProfileRepositoryException extends \Exception | ||
{ | ||
public function __construct($message = '', $code = 0, \Throwable $previous = null) | ||
{ | ||
parent::__construct($message, $code, $previous); | ||
} | ||
} |
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,15 @@ | ||
<?php | ||
|
||
namespace Fintech\Auth\Exceptions; | ||
|
||
/** | ||
* Class UserRepositoryException | ||
* @package Fintech\Auth\Exceptions | ||
*/ | ||
class UserRepositoryException extends \Exception | ||
{ | ||
public function __construct($message = '', $code = 0, \Throwable $previous = null) | ||
{ | ||
parent::__construct($message, $code, $previous); | ||
} | ||
} |
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
Oops, something went wrong.