diff --git a/Controller.php b/Controller.php index 447ee64..a62f1e8 100644 --- a/Controller.php +++ b/Controller.php @@ -41,7 +41,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_PATH = __DIR__; + /* public */ const MODULE_PATH = __DIR__; /** * Module version. @@ -49,7 +49,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_VERSION = '1.0.0'; + /* public */ const MODULE_VERSION = '1.0.0'; /** * Module name. @@ -57,7 +57,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_NAME = 'Support'; + /* public */ const MODULE_NAME = 'Support'; /** * Providing. diff --git a/Models/SupportStatus.php b/Models/SupportStatus.php index a3fff1c..b738fc0 100644 --- a/Models/SupportStatus.php +++ b/Models/SupportStatus.php @@ -30,17 +30,17 @@ use phpOMS\Datatypes\Enum; */ abstract class SupportStatus extends Enum { - const OPEN = 0; + /* public */ const OPEN = 0; - const REVIEW = 1; + /* public */ const REVIEW = 1; - const LIVE = 2; + /* public */ const LIVE = 2; - const HOLD = 3; + /* public */ const HOLD = 3; - const UNSOLVABLE = 4; + /* public */ const UNSOLVABLE = 4; - const SOLVED = 5; + /* public */ const SOLVED = 5; - const CLOSED = 6; + /* public */ const CLOSED = 6; }