-
Notifications
You must be signed in to change notification settings - Fork 9
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 #15 from ycgambo/dev
Manager Improvements
- Loading branch information
Showing
8 changed files
with
187 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
/** | ||
* This file is part of shadowrocket. | ||
* | ||
* @file ConfigException.php | ||
* @author ycgambo | ||
* @update 5/15/18 8:25 AM | ||
* @copyright shadowrocket <https://github.com/ycgambo/shadowrocket> | ||
* @license MIT License <http://www.opensource.org/licenses/mit-license.html> | ||
*/ | ||
|
||
/** | ||
* Author: ycgambo | ||
* Date: 15/5/2018 | ||
* Time: 8:25 AM | ||
*/ | ||
|
||
namespace ShadowRocket\Exception; | ||
|
||
|
||
class ConfigException extends \UnexpectedValueException | ||
{ | ||
|
||
} |
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,20 @@ | ||
<?php | ||
/** | ||
* This file is part of shadowrocket. | ||
* | ||
* @file ManagerInterface.php | ||
* @author ycgambo | ||
* @update 5/2/18 9:32 AM | ||
* @copyright shadowrocket <https://github.com/ycgambo/shadowrocket> | ||
* @license MIT License <http://www.opensource.org/licenses/mit-license.html> | ||
*/ | ||
|
||
namespace ShadowRocket\Module\Base; | ||
|
||
interface ManagerInterface | ||
{ | ||
|
||
public function preBootCommands(); | ||
|
||
public function denyCommand($command, $full_command = ''); | ||
} |
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