File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,10 @@ public function isDebugModeByCookie(): ?bool
75
75
/**
76
76
* Detect debug state by ENV parameter
77
77
* ENV value vs. returned value:
78
- * - 0: false (force to turn-off debug mode)
79
- * - 1: true (force to turn-on debug mode)
80
- * - undefined or any other value: null
78
+ * - `0`: `false` (force to turn-off debug mode)
79
+ * - `1`: `true` (force to turn-on debug mode)
80
+ * - `undefined` or any other value: `null`
81
+ *
81
82
* @return bool|null
82
83
*/
83
84
public function isDebugModeByEnv (): ?bool
@@ -93,8 +94,9 @@ public function isDebugModeByEnv(): ?bool
93
94
/**
94
95
* Detect debug state by locahost IP
95
96
* Returned value:
96
- * - is localhost: true (force to turn-on debug mode)
97
- * - otherwise: null
97
+ * - is localhost: `true` (force to turn-on debug mode)
98
+ * - otherwise: `null`
99
+ *
98
100
* @return bool|null
99
101
*/
100
102
public function isDebugModeByIp (): ?bool
You can’t perform that action at this time.
0 commit comments