1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\basics;
-
-
-
- abstract class Logic
- {
-
-
- protected static $error;
-
-
-
- public static function getError()
- {
- return self::$error;
- }
-
-
- protected static $errCode = 0;
- public static function getErrCode()
- {
- return self::$errCode;
- }
- }
|