You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initialize Roadrunner and files using built-in commands in the library
29
29
@@ -91,7 +91,7 @@ Codeigniter4 does not implement the complete [HTTP message interface](https://ww
91
91
92
92
Base on the reasons above, You should use `$this->request`, provided by Codeigniter4, or the global function `/Config/Services::('request')` to fetch the correct request object; Use `$this->response` or `/Config/Services::('response')` to fetch the correct response object.
93
93
94
-
Please be noticed, while constructing response for the users during developing, you should prevent using PHP built-in methods to conduct `header` or `set-cookies` settings. Using the `setHeader()` and `setCookie()`, provided by the [Codeigniter4 Response Object](https://codeigniter.tw/user_guide/outgoing/response.html), to conduct setting.
94
+
Please be noticed, while constructing response for the users during developing, you should prevent using PHP built-in methods to conduct `header` or `set-cookies` settings. Using the `setHeader()` and `setCookie()`, provided by the [Codeigniter4 Response Object](https://codeigniter.com/user_guide/outgoing/response.html), to conduct setting.
95
95
96
96
### Use return to stop controller logic
97
97
@@ -127,7 +127,7 @@ class Home extends BaseController
127
127
128
128
### Use the built-in Session library
129
129
130
-
We only focus on supporting the Codeigniter4 built-in [Session library](https://codeigniter.tw/user_guide/libraries/sessions.html), and do not guarantee if using `session_start()` and `$_SEEEION` can work as normal. So, you should avoid using the PHP built-in Session method, change to the Codeigniter4 framework built-in library.
130
+
We only focus on supporting the Codeigniter4 built-in [Session library](https://codeigniter.com/user_guide/libraries/sessions.html), and do not guarantee if using `session_start()` and `$_SEEEION` can work as normal. So, you should avoid using the PHP built-in Session method, change to the Codeigniter4 framework built-in library.
131
131
132
132
### Developing and debugging in a environment with only one Worker
0 commit comments