File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 33namespace Neuron \Mvc \Requests ;
44
55use Neuron \Core \Exceptions \Validation ;
6+ use Neuron \Data \Filter \Cookie ;
67use Neuron \Data \Filter \Get ;
78use Neuron \Data \Filter \Post ;
89use Neuron \Data \Filter \Server ;
@@ -24,6 +25,7 @@ class Request
2425 private array $ _routeParameters = [];
2526 private array $ _errors = [];
2627 private DefaultIpResolver $ _ipResolver ;
28+ private Cookie $ _cookie ;
2729 private Get $ _get ;
2830 private Post $ _post ;
2931 private Server $ _server ;
@@ -35,6 +37,7 @@ class Request
3537 public function __construct ()
3638 {
3739 $ this ->_ipResolver = new DefaultIpResolver ();
40+ $ this ->_cookie = new Cookie ();
3841 $ this ->_get = new Get ();
3942 $ this ->_post = new Post ();
4043 $ this ->_server = new Server ();
Original file line number Diff line number Diff line change 11## 0.9.2
2+ * Added cookie method to the request object.
23
34## 0.9.1 2025-11-14
45* Refactoring and test cleanup.
1011* Dispatched controller methods now always receive request objects, even if empty.
1112
1213## 0.8.13 2025-11-13
13- * Added get/post/server filter wrappers to controller base.
14+ * Added get/post/server filter wrappers to the controller base.
1415
1516## 0.8.12 2025-11-12
1617* Added ViewDataProvider for global view data injection
You can’t perform that action at this time.
0 commit comments